/* Global Styles */
:root {
    --primary-color: #ff6b98;
    --secondary-color: #ffb6c1;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --danger-color: #dc3545;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --white: #fff;
    --black: #000;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: var(--dark-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.btn:hover {
    background: #ff4785;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--dark-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--box-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
}

.logo span {
    color: var(--primary-color);
}

.navbar ul {
    display: flex;
}

.navbar ul li {
    margin-left: 30px;
}

.navbar ul li a {
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.navbar ul li a:hover {
    color: var(--primary-color);
}

.icons {
    display: flex;
    align-items: center;
}

.icons > div {
    margin-left: 20px;
    cursor: pointer;
    font-size: 1.2rem;
    position: relative;
}

.search-box {
    display: flex;
    align-items: center;
}

.search-box input {
    padding: 8px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    outline: none;
    width: 200px;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--primary-color);
}

.search-box button {
    background: transparent;
    border: none;
    margin-left: 10px;
    color: var(--dark-color);
    font-size: 1rem;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: var(--white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('2b6ad067c1d0276fca5c27bc13ece835.webp') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 60px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Products Section */
.featured-products {
    padding: 80px 0;
}

.product-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    margin: 0 10px;
    background: transparent;
    border: 1px solid var(--gray);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-img {
    height: 250px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-content {
    padding: 20px;
}

.product-category {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.old-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--gray);
    margin-left: 10px;
}

.product-rating {
    color: var(--warning-color);
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    justify-content: space-between;
}

.add-to-cart {
    flex: 1;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart:hover {
    background: #ff4785;
}

.wishlist {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.wishlist:hover {
    background: var(--primary-color);
    color: var(--white);
}

.load-more {
    text-align: center;
    margin-top: 40px;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.blog-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-block;
    transition: var(--transition);
}

.read-more:hover {
    color: #ff4785;
}

/* Newsletter */
.newsletter {
    padding: 60px 0;
    background: linear-gradient(rgba(255, 107, 152, 0.9), rgba(255, 107, 152, 0.9)), url('https://via.placeholder.com/1920x500') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

#newsletter-email {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

#newsletter-form .btn {
    border-radius: 0 5px 5px 0;
    padding: 15px 30px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-col p {
    margin-bottom: 20px;
    color: var(--light-gray);
}

.social-icons {
    display: flex;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background: var(--white);
    margin: 50px auto;
    max-width: 900px;
    border-radius: 10px;
    position: relative;
    animation: modalopen 0.5s;
}

@keyframes modalopen {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--dark-color);
}

.modal-body {
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
}

.modal-product-img {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.modal-product-img img {
    width: 100%;
    border-radius: 10px;
}

.modal-product-details {
    flex: 1;
    min-width: 300px;
}

.modal-product-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.modal-product-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.modal-product-rating {
    color: var(--warning-color);
    margin-bottom: 20px;
}

.modal-product-description {
    margin-bottom: 20px;
    color: var(--gray);
}

.modal-product-category {
    margin-bottom: 20px;
}

.modal-product-category span {
    background: var(--light-gray);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.modal-product-actions {
    display: flex;
    margin-top: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background: var(--light-gray);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.quantity-input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--light-gray);
    margin: 0 5px;
}

.modal-add-to-cart {
    flex: 1;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.modal-add-to-cart:hover {
    background: #ff4785;
}

.modal-product-reviews {
    width: 100%;
    margin-top: 40px;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-form {
    margin-top: 30px;
}

.review-form h4 {
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    height: 100px;
}

.review-submit {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.review-submit:hover {
    background: #ff4785;
}

.review-item {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.review-author {
    font-weight: 600;
}

.review-date {
    color: var(--gray);
    font-size: 0.9rem;
}

.review-rating {
    color: var(--warning-color);
    margin-bottom: 10px;
}

.review-actions {
    margin-top: 10px;
}

.review-actions button {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 0.9rem;
    margin-right: 10px;
    transition: var(--transition);
}

.review-actions button:hover {
    color: var(--primary-color);
}

.affiliate-section {
    margin-top: 30px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 5px;
}

.affiliate-section h4 {
    margin-bottom: 15px;
}

.affiliate-link {
    display: flex;
    margin-bottom: 15px;
}

.affiliate-link input {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: 5px 0 0 5px;
    font-family: inherit;
}

.copy-affiliate {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.copy-affiliate:hover {
    background: #ff4785;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: var(--white);
    box-shadow: var(--box-shadow);
    z-index: 2000;
    transition: var(--transition);
    overflow-y: auto;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--light-gray);
}

.close-cart {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
}

.close-cart:hover {
    color: var(--dark-color);
}

.cart-items {
    padding: 20px;
}

.cart-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.cart-item-img {
    width: 80px;
    height: 80px;
    margin-right: 15px;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 1rem;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
}

.cart-item-quantity button {
    width: 25px;
    height: 25px;
    background: var(--light-gray);
    border: none;
    cursor: pointer;
}

.cart-item-quantity input {
    width: 40px;
    height: 25px;
    text-align: center;
    border: 1px solid var(--light-gray);
    margin: 0 5px;
}

.remove-item {
    color: var(--danger-color);
    cursor: pointer;
    font-size: 1.2rem;
    margin-left: 15px;
    transition: var(--transition);
}

.remove-item:hover {
    transform: scale(1.2);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--light-gray);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}
/* Responsive Styles */
@media (max-width: 950px) {
    .header .container {
        display: flex;
        flex-wrap: wrap;
        padding: 10px 15px;
    }

    .logo {
        order: 1;
        flex: 1;
    }

    .icons {
        order: 2;
        display: flex;
        margin-left: auto;
    }

    .menu-toggle {
        display: flex;
        order: 3;
        margin-left: 15px;
        font-size: 1.5rem;
        align-items: center;
    }

    .navbar {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 60px);
        background: var(--white);
        box-shadow: var(--box-shadow);
        transition: var(--transition);
        padding: 20px;
        z-index: 999;
    }

    .navbar.active {
        left: 0;
    }

    .navbar ul {
        flex-direction: column;
    }

    .navbar ul li {
        margin: 15px 0;
        padding: 10px 0;
        border-bottom: 1px solid var(--light-gray);
    }

    .navbar ul li a {
        display: block;
        padding: 5px 0;
    }

    .search-box {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 10px 15px;
        background: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .search-box.active {
        display: flex;
    }

    .search-box input {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
        padding: 20px;
    }

    .modal-product-img {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 80vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .product-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        white-space: nowrap;
    }

    .filter-btn {
        margin: 0 5px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    #newsletter-form {
        flex-direction: column;
    }

    #newsletter-email {
        border-radius: 5px;
        margin-bottom: 10px;
    }

    #newsletter-form .btn {
        border-radius: 5px;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* (Previous styles from earlier implementation remain the same) */

/* Add these new styles for the additional features */

/* Theme Toggle */
.theme-toggle {
    cursor: pointer;
    font-size: 1.2rem;
    margin-right: 15px;
}

/* User Dropdown */
.user-dropdown {
    position: absolute;
    top: 70px;
    right: 20px;
    background: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: 5px;
    padding: 15px;
    width: 200px;
    z-index: 1000;
    display: none;
}

.user-dropdown a {
    display: block;
    padding: 8px 0;
    color: var(--dark-color);
    transition: var(--transition);
}

.user-dropdown a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Auth Modals */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
}

.auth-content {
    background: var(--white);
    margin: 100px auto;
    max-width: 400px;
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.close-auth {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('1b17d52ec027c5a8f2ba6066ba343901.webp') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.our-story {
    padding: 80px 0;
}

.our-story .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-content {
    flex: 1;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.our-mission {
    padding: 80px 0;
    background: var(--light-gray);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mission-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-social {
    margin-top: 20px;
}

.team-social a {
    color: var(--dark-color);
    margin: 0 10px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.team-social a:hover {
    color: var(--primary-color);
}

.about-cta {
    padding: 60px 0;
    background: linear-gradient(rgba(255, 107, 152, 0.9), rgba(255, 107, 152, 0.9)), url('https://via.placeholder.com/1920x500') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* Reviews Page Styles */
.reviews-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('f1d5b646087c036ed9186d460949ab05.webp') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.reviews-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.reviews-filter {
    padding: 30px 0;
    background: var(--light-gray);
}

.filter-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.filter-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
}

.reviews-grid-section {
    padding: 60px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    align-items: center;
}

.review-product {
    font-weight: 600;
    color: var(--primary-color);
}

.review-author {
    font-weight: 600;
}

.review-date {
    color: var(--gray);
    font-size: 0.9rem;
}

.review-rating {
    color: var(--warning-color);
    margin-bottom: 10px;
}

.review-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.review-actions {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.review-actions button {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.review-actions button:hover {
    color: var(--primary-color);
}

.star-rating {
    font-size: 1.5rem;
    color: var(--warning-color);
    cursor: pointer;
}

.star-rating i {
    margin-right: 5px;
}

.write-review-section {
    padding: 60px 0;
    background: var(--light-gray);
}

/* Profile Page Styles */
.profile-hero {
    padding: 60px 0;
    margin-top: 80px;
}

.profile-header {
    display: flex;
    gap: 40px;
    align-items: center;
}

.profile-avatar {
    text-align: center;
}

.profile-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 5px solid var(--primary-color);
}

.change-avatar-btn {
    background: var(--light-gray);
    color: var(--dark-color);
}

.profile-info h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.profile-info p {
    margin-bottom: 5px;
    color: var(--gray);
}

.profile-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.profile-stats .stat {
    text-align: center;
}

.profile-stats .stat span:first-child {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.profile-nav {
    background: var(--white);
    box-shadow: var(--box-shadow);
}

.profile-nav ul {
    display: flex;
    gap: 30px;
}

.profile-nav li {
    padding: 20px 0;
    cursor: pointer;
    position: relative;
}

.profile-nav li.active {
    color: var(--primary-color);
}

.profile-nav li.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
}

.profile-content {
    padding: 60px 0;
}

.profile-tab {
    display: none;
}

.profile-tab.active {
    display: block;
}

.user-reviews {
    margin-top: 30px;
}

.user-review {
    background: var(--white);
    padding: 20px;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
}

.affiliate-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: var(--white);
    padding: 20px;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.stat-card h3 {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.affiliate-links table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.affiliate-links th, 
.affiliate-links td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.affiliate-links th {
    background: var(--light-gray);
    font-weight: 600;
}

.copy-link-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}

.danger-zone {
    margin-top: 60px;
    padding: 30px;
    border: 1px solid var(--danger-color);
    border-radius: 5px;
}

.danger-zone h3 {
    color: var(--danger-color);
    margin-bottom: 20px;
}

.btn-danger {
    background: var(--danger-color);
}

.btn-danger:hover {
    background: #c82333;
}

.btn-secondary {
    background: var(--gray);
}

.btn-secondary:hover {
    background: #5a6268;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
}

.small-modal {
    max-width: 500px;
}

/* Dark Theme */


/* Responsive Styles */
@media (max-width: 992px) {
    .our-story .container {
        flex-direction: column;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-nav ul {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }
    
    .affiliate-links {
        overflow-x: auto;
    }
}
/* Add this to your CSS */
/* Dark Theme Styles */
.dark-theme {
    --primary-color: #ff6b98;
    --secondary-color: #ffb6c1;
    --dark-color: #f8f9fa;
    --light-color: #121212;
    --white: #1e1e1e;
    --black: #f8f9fa;
    --gray: #a0a0a0;
    --light-gray: #2d2d2d;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --card-bg: #2d2d2d;
    --border-color: #444;
}

.dark-theme body {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.dark-theme .header,
.dark-theme .product-card,
.dark-theme .blog-card,
.dark-theme .modal-content,
.dark-theme .cart-sidebar,
.dark-theme .auth-content,
.dark-theme .review-card,
.dark-theme .mission-card,
.dark-theme .team-card {
    background-color: var(--card-bg);
    color: var(--dark-color);
}

.dark-theme .navbar ul li a,
.dark-theme .footer-col p,
.dark-theme .modal-product-description,
.dark-theme .review-date {
    color: var(--gray);
}

.dark-theme .search-box input,
.dark-theme .quantity-input,
.dark-theme .form-group input,
.dark-theme .form-group textarea,
.dark-theme .form-group select,
.dark-theme .affiliate-link input {
    background-color: var(--light-color);
    color: var(--dark-color);
    border-color: var(--border-color);
}

.dark-theme .footer {
    background-color: var(--light-color);
}

.dark-theme .footer h3,
.dark-theme .footer a {
    color: var(--dark-color);
}

