body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background-color: #68767f;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
}

.logo img {
    width: 150px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.mobile-nav {
    display: none;
}

.product-hero {
    display: flex;
    justify-content: space-around;

    padding: 2em;
    background-color: #fff;
}

.product-hero .product-image {
    width: 500px;
}

.description {
    max-width: 600px;
}

.description h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.rating {
    display: flex;
    align-items: center;
    margin-bottom: 0.5em;
}

.rating-value {
    margin-right: 0.3em;
}

.stars i {
    color: #FFD700;
    margin-right: 0.1em;
    font-size: 0.8em;
}

.review-link {
    margin-left: 0.3em;
    font-size: 0.8em;
}

.stars i {
    color: #FFD700;
    margin-right: 0.2em;
}

.review-link {
    margin-left: 0.5em;
    color: #007BFF;
    text-decoration: none;
}

.review-link:hover {
    text-decoration: underline;
}

.description p {
    font-size: 1.2em;
    margin-bottom: 1em;
}

.price {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 1em;
}

.original-price {
    text-decoration: line-through;
    color: #777;
    margin-right: 10px;
}

.discounted-price {
    color: #d9534f;
}

.offer {
    color: #d9534f;
    font-weight: bold;
    font-size: 10px;
    animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    font-size: 1em;
    margin-bottom: 0.5em;
}

.product-features li i {
    color: #000;
    margin-right: 0.5em;
    font-size: 1.2em;
}
    .order-now-btn {
        background-color: #007bff;
        border: none;
        color: white;
        padding: 12px 20px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        margin: 4px 2px;
        cursor: pointer;
        border-radius: 5px;
        transition: background-color 0.3s;
    }

    .order-now-btn:hover {
        background-color: #0056b3;
    }


.benefit {
    padding: 2em;
    background-color: #fff;
    margin: 1em 0;
 
}
.reviews {
    padding: 2em;
    background-color: #fff;
    margin: 1em 0;
}

.ratings {
    padding: 5px 0;
    font-size: 13px;
    color: #fdcc0d;
}

.review-images {
    margin-top: 10px;
    border-radius: 10px;
}

.reviews-item {
    margin-top: 15px;
    border-top: 1px solid #d8d8d8;
    padding-top: 15px;
}

.review-submission {
    padding: 2em;
    background-color: #fff;
    margin: 2em 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.review-submission h3 {
    margin-top: 0;
}

.review-submission form {
    display: flex;
    flex-direction: column;
}

.review-submission label {
    margin-bottom: 0.5em;
    font-weight: bold;
}

.review-submission input[type="text"],
.review-submission textarea {
    padding: 0.5em;
    margin-bottom: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
}

.star-rating {
    display: flex;
    margin-bottom: 1em;
}

.star-rating i {
    font-size: 1.5em;
    color: #ddd;
    cursor: pointer;
}

.star-rating i.selected,
.star-rating i:hover,
.star-rating i:hover ~ i {
    color: #FFD700;
}

.review-submission button {
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    color: #fff;
    background-color: #000;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.review-submission button:hover {
    background-color: #d9534f;
}

footer {
    text-align: center;
    padding: 1em;
    background-color: #000;
    color: #fff;
}

/* Responsive styles */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    .description h1{
        font-size: 20px;
    }
    .mobile-nav {
        display: block;
    }

    #side-menu {
        height: 100%;
        width: 0;
        position: fixed;
        top: 0;
        left: 0;
        background-color: #111;
        overflow-x: hidden;
        transition: 0.5s;
        z-index: 9999;
        padding-top: 60px;
    }

    #side-menu a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        border-bottom: 1px solid #d4d4d4;
        font-size: 18px;
        color: #fff;
        display: block;
        transition: 0.3s;
    }

    #side-menu .close-btn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
         border-bottom: 0px !important;
    }

    .product-hero {
        flex-direction: column;
        text-align: left;
        padding: 10px !important;
    
    }

    .product-hero .product-image {
        width: 100%;
        max-width: 100%;
    }

    .description {
        max-width: 100%;
        padding: 0px;
    }
    .product-image{
        width: 100%;
    }
}
.stylediv{
    margin: 10px;

}
