/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-white: #ffffff;
    --primary-black: #000000;
    --primary-beige: #f5f5f0;
    --primary-pink: #f8f4f0;
    --accent-red: #d4af37;
    --accent-green: #8b9a46;
    --accent-brown: #8b4513;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --text-muted: #999999;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--primary-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-white);
    border-bottom: 1px solid #f0f0f0;
    z-index: 1000;
    transition: var(--transition-medium);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.nav-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.nav-left ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-left a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.nav-left a:hover {
    color: var(--accent-red);
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.logo:hover {
    color: var(--accent-red);
}

.nav-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--spacing-md);
}

.nav-icon {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: var(--spacing-xs);
    transition: var(--transition-fast);
    position: relative;
}

.nav-icon:hover {
    color: var(--accent-red);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--accent-red);
    color: var(--primary-white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-semibold);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.hero-slide.active {
    opacity: 1;
}

.hero-image,
.hero-video {
    width: 100%;
    height: 100%;
}

.hero-image img,
.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--primary-white);
    z-index: 2;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    letter-spacing: 1px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    line-height: 1.8;
}

.cta-btn {
    background-color: var(--primary-white);
    color: var(--text-dark);
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-medium);
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background-color: var(--accent-red);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-indicators {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-xs);
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-fast);
}

.indicator.active {
    background-color: var(--primary-white);
}

/* Category Section */
.category-section {
    padding: var(--spacing-sm) 0;
    width: 100%;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    width: 100%;
    margin: 0;
}

.category-card {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-medium);
    border-radius: 0;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    width: 100%;
    height: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    bottom: var(--spacing-md);
    left: var(--spacing-md);
    color: var(--primary-white);
    z-index: 2;
}

.category-overlay h3 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Featured Products */
.featured-products {
    padding: var(--spacing-xxl) 0;
    background-color: var(--primary-beige);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xl);
    letter-spacing: 1px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.product-card {
    background-color: var(--primary-white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-medium);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: var(--spacing-lg);
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
}

.price {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.new-price {
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    font-size: 1.2rem;
}

/* Collection Banner */
.collection-banner {
    background-color: var(--primary-white);
    padding: var(--spacing-xl) 0;
    text-align: center;
    width: 100%;
}

.collection-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

.collection-video {
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.collection-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.collection-content h2 {
    font-size: 1.8rem;
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.collection-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    text-align: center;
}

/* Collection Gallery */
.collection-gallery {
    padding: var(--spacing-xxl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-medium);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Newsletter */
.newsletter {
    background-color: var(--primary-pink);
    padding: var(--spacing-xxl) 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 1px;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: var(--spacing-md);
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
}

.newsletter-form input:focus {
    border-color: var(--accent-red);
}

.newsletter-form button {
    background-color: var(--accent-red);
    color: var(--primary-white);
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-form button:hover {
    background-color: var(--accent-brown);
}

/* Page Content Styles */
.page-header {
    padding: var(--spacing-lg) 0;
    background: var(--primary-beige);
    margin-top: 80px;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--accent-red);
}

.breadcrumb span {
    margin: 0 var(--spacing-xs);
}

.page-content {
    padding: var(--spacing-xl) 0;
    min-height: 50vh;
}

.content-page {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-page h2 {
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.content-page h3 {
    font-size: 1.4rem;
    font-weight: var(--font-weight-semibold);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.content-page p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

.content-page ul,
.content-page ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.content-page li {
    margin-bottom: var(--spacing-xs);
    color: var(--text-light);
}

.content-loading,
.content-error,
.content-default {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--text-light);
}

.content-error {
    color: var(--accent-red);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--primary-white);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--primary-white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--spacing-lg);
    border-top: 1px solid #444;
}

.logo-monogram {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    color: var(--primary-white);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: var(--primary-white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    border-bottom: 1px solid #f0f0f0;
}

.cart-header h3 {
    font-size: 1.3rem;
    font-weight: var(--font-weight-semibold);
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-light);
}

.cart-items {
    flex: 1;
    padding: var(--spacing-lg);
    overflow-y: auto;
}

.cart-footer {
    padding: var(--spacing-lg);
    border-top: 1px solid #f0f0f0;
}

.cart-total {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.checkout-btn {
    width: 100%;
    background-color: var(--accent-red);
    color: var(--primary-white);
    border: none;
    padding: var(--spacing-md);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-btn:hover {
    background-color: var(--accent-brown);
}

/* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.product-modal.open {
    display: flex;
}

.modal-content {
    background-color: var(--primary-white);
    max-width: 800px;
    width: 90%;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    z-index: 1;
}

.modal-product {
    padding: var(--spacing-xl);
}

/* Responsive Design */
/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: var(--spacing-xs);
    transition: var(--transition-fast);
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    color: var(--accent-red);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--primary-white);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-content {
    left: 0;
}

.mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: var(--spacing-md);
    transition: var(--transition-fast);
}

.mobile-menu-close:hover {
    color: var(--accent-red);
}

.mobile-nav {
    list-style: none;
    padding: var(--spacing-md);
    flex: 1;
}

.mobile-nav li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md);
    text-decoration: none;
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--accent-red);
    background-color: #f8f8f8;
}

.mobile-nav-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.mobile-nav li.active .mobile-nav-link i {
    transform: rotate(90deg);
}

.mobile-submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f8f8f8;
}

.mobile-nav li.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu li {
    border-bottom: 1px solid #e0e0e0;
}

.mobile-submenu a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-sm) var(--spacing-xl);
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.mobile-submenu a:hover {
    color: var(--accent-red);
    background-color: #f0f0f0;
}

.mobile-menu-footer {
    border-top: 1px solid #f0f0f0;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.mobile-nav-icon {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: none;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: var(--text-dark);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: left;
}

.mobile-nav-icon:hover {
    background-color: #f8f8f8;
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.mobile-nav-icon .cart-count {
    position: static;
    margin-left: auto;
    background-color: var(--accent-red);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav {
        padding: var(--spacing-sm);
        position: relative;
    }
    
    .nav-left ul {
        display: none;
    }
    
    .nav-left {
        flex: 0;
    }
    
    .nav-center {
        flex: 1;
        text-align: center;
    }
    
    .nav-right {
        flex: 0;
        gap: var(--spacing-xs);
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .mobile-menu-overlay {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .category-card {
        width: 100%;
        height: 600px;
    }
    
    .category-overlay h3 {
        font-size: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-md);
    }
    
    .product-image {
        height: 350px;
    }
    
    .collection-content h2 {
        font-size: 2.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-xs);
    }
    
    .hero {
        height: 50vh;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .collection-video {
        height: 40vh;
    }
}

/* Dropdown Menu Styles */
.main-nav li {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-white);
    width: 800px;
    height: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-5px);
    transition: all 0.2s ease;
    z-index: 1000;
    padding: 0;
    margin-top: 0;
    display: flex;
    overflow: hidden;
}

.main-nav li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-image {
    width: 320px;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1594633312681-425c7b97ccd1?w=320&h=400&fit=crop&crop=center');
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.dropdown-content {
    flex: 1;
    padding: 40px 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
    height: 100%;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dropdown-column h3 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: none;
    padding-bottom: 0;
    flex-shrink: 0;
    line-height: 1.2;
}

.dropdown-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.dropdown-column li {
    margin-bottom: 12px;
    flex-shrink: 0;
}

.dropdown-column a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
    display: block;
    padding: 0;
    line-height: 1.3;
    white-space: nowrap;
    font-weight: 400;
}

.dropdown-column a.active {
    color: #000;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.dropdown-column a:hover {
    color: #000;
    padding-left: 0;
}

.dropdown-column a.active:hover {
    padding-left: 15px;
}

.dropdown-arrow {
    margin-left: 4px;
    font-size: 0.8rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
}

.main-nav li:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mobile Dropdown */
@media (max-width: 1024px) {
    .dropdown {
        width: 600px;
        height: 350px;
    }
    
    .dropdown-image {
        width: 250px;
        height: 350px;
    }
    
    .dropdown-content {
        padding: 30px 20px;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .collection-content h2 {
        font-size: 1.5rem;
    }
    
    .collection-content p {
        font-size: 0.9rem;
        max-width: 100%;
        padding: 0;
    }
    
    .collection-banner {
        padding: var(--spacing-md) 0;
    }
    
    .collection-video {
        height: 50vh;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        padding: 0;
        margin: 0;
        width: 100%;
        height: auto;
        flex-direction: column;
    }
    
    .dropdown-image {
        display: none;
    }
    
    .dropdown-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
        height: auto;
    }
    
    .dropdown-column {
        height: auto;
    }
    
    .dropdown-column h3 {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .dropdown-column a {
        font-size: 13px;
    }
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-content {
    background-color: var(--primary-white);
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.search-modal.active .search-modal-content {
    transform: translateY(0);
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--primary-beige);
}

.search-header h3 {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
}

.close-search {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-search:hover {
    color: var(--text-dark);
}

.search-input-container {
    display: flex;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--primary-beige);
}

.search-input-container input {
    flex: 1;
    padding: var(--spacing-md);
    border: 1px solid var(--primary-beige);
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
}

.search-input-container input:focus {
    border-color: var(--accent-red);
}

.search-submit {
    background-color: var(--accent-red);
    color: var(--primary-white);
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 6px;
    margin-left: var(--spacing-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-submit:hover {
    background-color: var(--accent-brown);
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
    padding: var(--spacing-lg);
}

.search-placeholder {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--text-light);
}

.search-placeholder i {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.no-results {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--text-light);
}

.no-results i {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: var(--spacing-md);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-bottom: var(--spacing-sm);
}

.search-result-item:hover {
    background-color: var(--primary-beige);
}

.result-image {
    width: 60px;
    height: 60px;
    margin-right: var(--spacing-md);
    border-radius: 6px;
    overflow: hidden;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-details h4 {
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
    margin-bottom: 4px;
}

.result-category {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.result-price {
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    color: var(--accent-red);
}

/* Auth Messages */
.auth-message {
    padding: var(--spacing-md);
    border-radius: 6px;
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-medium);
}

.auth-message.error {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.auth-message.success {
    background-color: #efe;
    color: #363;
    border: 1px solid #cfc;
}

/* Cart Messages */
.cart-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 6px;
    font-weight: var(--font-weight-medium);
    z-index: 1500;
    animation: slideIn 0.3s ease;
}

.cart-message.error {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.cart-message.success {
    background-color: #efe;
    color: #363;
    border: 1px solid #cfc;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Cart Sidebar Updates */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background-color: var(--primary-white);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.cart-sidebar.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--primary-beige);
}

.cart-header h3 {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-cart:hover {
    color: var(--text-dark);
}

.cart-items {
    flex: 1;
    padding: var(--spacing-lg);
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--text-light);
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.continue-shopping {
    display: inline-block;
    background-color: var(--accent-red);
    color: var(--primary-white);
    text-decoration: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 6px;
    margin-top: var(--spacing-md);
    transition: var(--transition-fast);
}

.continue-shopping:hover {
    background-color: var(--accent-brown);
}

.cart-item {
    display: flex;
    align-items: center;
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--primary-beige);
    margin-bottom: var(--spacing-md);
}

.item-image {
    width: 60px;
    height: 60px;
    margin-right: var(--spacing-md);
    border-radius: 6px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
    margin-bottom: 4px;
}

.item-price {
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    color: var(--accent-red);
    margin-bottom: var(--spacing-sm);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.quantity-btn {
    background-color: var(--primary-beige);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background-color: var(--accent-red);
    color: var(--primary-white);
}

.quantity {
    font-weight: var(--font-weight-medium);
    min-width: 20px;
    text-align: center;
}

.remove-item {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: var(--spacing-sm);
    transition: var(--transition-fast);
}

.remove-item:hover {
    color: var(--accent-red);
}

.cart-footer {
    padding: var(--spacing-lg);
    border-top: 1px solid var(--primary-beige);
}

.cart-total {
    text-align: center;
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.checkout-btn {
    width: 100%;
    background-color: var(--accent-red);
    color: var(--primary-white);
    border: none;
    padding: var(--spacing-md);
    border-radius: 6px;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: var(--transition-fast);
}

.checkout-btn:hover {
    background-color: var(--accent-brown);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .search-modal-content {
        width: 95%;
        margin: 0 var(--spacing-md);
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-message {
        right: var(--spacing-md);
        left: var(--spacing-md);
    }
}

/* Address Selection Modal */
.address-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: #fff;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #000;
}

.modal-body {
    padding: 20px;
}

.address-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.2s ease;
}

.address-option:hover {
    border-color: #000;
    background-color: #f8f9fa;
}

.address-info h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.address-info p {
    margin: 4px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.select-address-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.select-address-btn:hover {
    background-color: #333;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.modal-actions .btn-secondary {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-actions .btn-secondary:hover {
    background-color: #f8f9fa;
    border-color: #999;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 10px;
    }
    
    .modal-content {
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 15px;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .address-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .select-address-btn {
        width: 100%;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-actions .btn-secondary {
        width: 100%;
    }
}

/* Live Support Button */
.live-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.support-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #000;
    color: #fff;
    padding: 12px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.support-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    border-radius: 25px;
    transform: translate(-50%, -50%);
    animation: pulse-circle 2s infinite;
    z-index: -1;
}

.support-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.support-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

.support-text {
    white-space: nowrap;
}

@keyframes pulse-circle {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

/* Complete The Look Section */
.complete-look-section {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.complete-look-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dee2e6;
}

.complete-look-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.product-count {
    font-size: 14px;
    color: #666;
    background-color: #e9ecef;
    padding: 4px 8px;
    border-radius: 12px;
}

.complete-look-header i {
    color: #666;
    font-size: 14px;
}

.complete-look-products {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.complete-look-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.complete-look-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.complete-look-image {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.complete-look-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.complete-look-info {
    flex: 1;
}

.complete-look-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.complete-look-price {
    font-size: 16px;
    font-weight: 700;
    color: #e74c3c;
}

.complete-look-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.complete-look-add-btn {
    flex: 1;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.complete-look-add-btn:hover {
    background-color: #333;
    transform: translateY(-1px);
}

/* Responsive Complete Look */
@media (max-width: 768px) {
    .complete-look-products {
        flex-direction: column;
        gap: 10px;
    }
    
    .complete-look-item {
        padding: 10px;
    }
    
    .complete-look-image {
        width: 50px;
        height: 50px;
    }
    
    .complete-look-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .complete-look-add-btn {
        width: 100%;
    }
}

/* Products Slider */
.related-products {
    margin: 60px 0;
    padding: 0;
}

.products-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.products-slider {
    width: 100%;
    overflow: hidden;
}

.products-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.products-track .product-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 250px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.products-track .product-card:hover {
    transform: translateY(-5px);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 18px;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Responsive Slider */
@media (max-width: 1200px) {
    .products-track .product-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .products-track .product-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 200px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .products-track .product-card {
        flex: 0 0 calc(100% - 0px);
        min-width: 180px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
}

/* Product Tabs */
.product-tabs {
    margin: 60px 0;
    padding: 0;
}

.tab-navigation {
    display: flex;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 30px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: #333;
}

.tab-btn.active {
    color: #d4af37;
    border-bottom-color: #d4af37;
    font-weight: 600;
}

.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
    padding: 20px 0;
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-panel h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.tab-panel h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.tab-panel p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.tab-panel ul {
    list-style: none;
    padding: 0;
}

.tab-panel li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.tab-panel li:last-child {
    border-bottom: none;
}

/* Customer Reviews Section - Full Width */
.customer-reviews-section {
    margin: 60px 0;
    padding: 50px 0;
    background-color: #fafbfc;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.customer-reviews-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.customer-reviews-section .reviews-container {
    display: flex;
    gap: 40px;
    margin-top: 0;
}

.customer-reviews-section .reviews-summary {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.customer-reviews-section .rating-overview {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.customer-reviews-section .rating-overview h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.customer-reviews-section .average-rating {
    font-size: 48px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 5px;
}

.customer-reviews-section .average-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.customer-reviews-section .stars {
    color: #d4af37;
    font-size: 20px;
    margin-bottom: 10px;
}

.customer-reviews-section .rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.customer-reviews-section .rating-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.customer-reviews-section .rating-label {
    width: 20px;
    text-align: center;
    font-weight: 600;
    color: #333;
}

.customer-reviews-section .rating-bar i {
    color: #d4af37;
    font-size: 12px;
}

.customer-reviews-section .progress-bar {
    flex: 1;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.customer-reviews-section .progress-fill {
    height: 100%;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.customer-reviews-section .rating-count {
    width: 30px;
    text-align: right;
    font-weight: 600;
    color: #333;
}

.customer-reviews-section .rate-product-btn {
    background-color: #d4af37;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.customer-reviews-section .rate-product-btn:hover {
    background-color: #b8941f;
    transform: translateY(-1px);
}

.customer-reviews-section .reviews-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.customer-reviews-section .review-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.customer-reviews-section .review-item:last-child {
    border-bottom: none;
}

.customer-reviews-section .reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #666;
    font-size: 14px;
    flex-shrink: 0;
}

.customer-reviews-section .review-content {
    flex: 1;
}

.customer-reviews-section .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.customer-reviews-section .reviewer-info strong {
    color: #333;
    font-weight: 600;
    margin-right: 10px;
}

.customer-reviews-section .reviewer-info .stars {
    color: #d4af37;
    font-size: 14px;
    margin-top: 2px;
}

.customer-reviews-section .review-date {
    color: #666;
    font-size: 12px;
}

.customer-reviews-section .review-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

/* Responsive Customer Reviews */
@media (max-width: 768px) {
    .customer-reviews-section .reviews-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .customer-reviews-section .reviews-summary {
        flex: none;
    }
    
    .customer-reviews-section .rating-overview {
        padding: 15px;
    }
    
    .customer-reviews-section .average-rating {
        font-size: 36px;
    }
    
    .customer-reviews-section .review-item {
        padding: 15px 0;
    }
    
    .customer-reviews-section .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* Product Details Tab - Minimalist Design */
.product-details-content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #000;
    line-height: 1.6;
}

.detail-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.detail-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.detail-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.detail-header i {
    color: #666;
    font-size: 14px;
}

.detail-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0 0 15px 0;
}

.detail-info {
    margin-left: 0;
}

.detail-info p {
    font-size: 14px;
    color: #000;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.detail-info p:last-child {
    margin-bottom: 0;
}

.detail-info strong {
    font-weight: 600;
    color: #000;
}

.size-table {
    margin-top: 20px;
}

.size-table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e9ecef;
    background-color: #fff;
}

.size-table th,
.size-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
}

.size-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #000;
    border-bottom: 2px solid #e9ecef;
}

.size-table td {
    color: #000;
}

.size-table tr:last-child td {
    border-bottom: none;
}

.size-table tr:hover {
    background-color: #f8f9fa;
}

/* Responsive Product Details */
@media (max-width: 768px) {
    .detail-section {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .detail-header h3 {
        font-size: 16px;
    }
    
    .detail-section h4 {
        font-size: 15px;
    }
    
    .detail-info p {
        font-size: 13px;
    }
    
    .size-table th,
    .size-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Shipping Tab */
.shipping-info,
.return-info {
    margin-bottom: 30px;
}

.shipping-info ul,
.return-info ul {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

/* Responsive Tabs */
@media (max-width: 768px) {
    .tab-navigation {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 12px 15px;
        font-size: 14px;
        flex: 1;
        text-align: center;
    }
    
    .reviews-summary {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .average-rating {
        font-size: 36px;
    }
}

/* Product Card Overlay - Removed since we don't use add-to-cart buttons on main page */
