* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 50%, #2D2D2D 100%);
    overflow-x: hidden;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
}

.theme-toggle:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #D4AF37, #FFD700, #F4E199);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    animation: shimmer 3s ease-in-out infinite;
    letter-spacing: -0.02em;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    }

    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #E5E5E5;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: -0.01em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: #FFD700;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: #FFD700;
}

.nav-links a.active::after {
    width: 100%;
}

.cart-icon {
    position: relative;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #0F0F0F;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.cart-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 20px;
    text-align: center;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 50%, #2D2D2D 100%);
}

.hero-content {
    z-index: 2;
    color: #E5E5E5;
    max-width: 600px;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #FFFFFF, #E5E5E5, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    letter-spacing: -0.03em;
    line-height: 1.3;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.7;
    color: #CCCCCC;
}

.cta-button {
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #0F0F0F;
    border: none;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: bounceIn 1s ease-out 0.5s both;
    letter-spacing: -0.01em;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Floating particles */
.particle {
    position: absolute;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Products Section */
.products {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: #E5E5E5;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.5);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 2rem;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #E5E5E5;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.product-description {
    color: #CCCCCC;
    margin-bottom: 1.75rem;
    line-height: 1.6;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.add-to-cart {
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #0F0F0F;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.95rem;
    width: 100%;
    letter-spacing: -0.01em;
}

.add-to-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Features Section */
.features {
    background: rgba(26, 26, 26, 0.5);
    padding: 4rem 5%;
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 2.5rem;
    background: rgba(26, 26, 26, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(26, 26, 26, 0.9);
    border-color: rgba(212, 175, 55, 0.4);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #E5E5E5;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.feature-description {
    color: #CCCCCC;
    line-height: 1.6;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

/* Footer */
.footer {
    background: #0F0F0F;
    color: #E5E5E5;
    padding: 2rem 10% 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom {
    text-align: center;
    color: #CCCCCC;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #000000;
    width: 49px;
    height: 49px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.7rem;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}


/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 50%, #2D2D2D 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 2s ease-in-out 1s forwards;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(212, 175, 55, 0.3);
    border-top: 5px solid #D4AF37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Collections Hero Section */
.collections-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 50%, #2D2D2D 100%);
    margin-top: 80px;
}

.collections-hero-content {
    z-index: 2;
    color: #E5E5E5;
    max-width: 800px;
    animation: slideUp 1s ease-out;
}

.collections-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #FFFFFF, #E5E5E5, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    letter-spacing: -0.03em;
    line-height: 1.3;
}

.collections-hero p {
    font-size: 1.2rem;
    opacity: 0.85;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.7;
    color: #CCCCCC;
}

/* Filter Section */
.filter-section {
    padding: 3rem 5%;
    background: rgba(26, 26, 26, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.filter-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #E5E5E5;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(26, 26, 26, 0.8);
    color: #E5E5E5;
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #0F0F0F;
    border-color: #D4AF37;
    font-weight: 600;
}

/* All Products Section */
.all-products {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.products-container {
    width: 100%;
}

/* Product Grid Updates */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Product Card Animation States */
.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 2rem;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #E5E5E5;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.product-description {
    color: #CCCCCC;
    margin-bottom: 1.75rem;
    line-height: 1.6;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.product-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.add-to-cart {
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #0F0F0F;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.95rem;
    flex: 1;
    letter-spacing: -0.01em;
}

.add-to-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.add-to-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
}

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

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #e5e5e5;
    font-weight: 600;
}

.close-cart {
    background: none;
    border: none;
    color: #E5E5E5;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: #D4AF37;
}

.cart-items {
    padding: 1rem 2rem;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    color: #E5E5E5;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.cart-item-price {
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: rgba(212, 175, 55, 0.2);
}

.quantity-display {
    color: #d4af37;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.remove-item {
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: #ff6666;
}

.cart-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: rgba(15, 15, 15, 0.98);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.cart-total-label {
    color: #E5E5E5;
}

.cart-total-amount {
    color: #D4AF37;
}

.checkout-btn {
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #0F0F0F;
    border: none;
    padding: 15px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.checkout-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.empty-cart {
    text-align: center;
    padding: 3rem 2rem;
    color: #CCCCCC;
}

.empty-cart-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

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

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

.empty-cart-subtext {
    font-size: 0.9rem;
    opacity: 0.7;
}

.about {
    position: absolute;
    top: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 50%, #2D2D2D 100%);
}

/* Accordion Section */
.accordion {
    width: 70rem;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(31, 30, 24, 0.8);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid rgba(244, 208, 63, 0.2);
    backdrop-filter: blur(10px);
}

.accordion-item {
    border-bottom: 1px solid rgba(244, 208, 63, 0.1);
    transition: background 0.3s ease;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-item:hover {
    background: rgba(244, 208, 63, 0.05);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 500;
    color: #f4d03f;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}

.accordion-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(244, 208, 63, 0.1), rgba(244, 208, 63, 0.05));
    z-index: 1;
    transition: width 0.3s ease;
}

.accordion-header:hover::before {
    width: 100%;
}

.accordion-header span {
    position: relative;
    z-index: 2;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: #f4d03f;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.accordion-header.active::after {
    transform: rotate(45deg);
}

.accordion-header:hover {
    color: #e6c236;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    background: rgba(0, 0, 0, 0.2);
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.accordion-content.active {
    max-height: 500px;
    padding: 1.5rem 2rem;
    opacity: 1;
    transform: translateY(0);
}

.accordion-content p,
.accordion-content li {
    color: #b8b8b8;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.accordion-content ul {
    list-style: none;
    padding-left: 0;
}

.accordion-content li {
    position: relative;
    padding-left: 1.5rem;
}

.accordion-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f4d03f;
    font-weight: bold;
}

.accordion-content a {
    color: #f4d03f;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.accordion-content a:hover {
    color: #e6c236;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .collections-hero {
        height: 50vh;
        margin-top: 70px;
    }

    .collections-hero h1 {
        font-size: 2.5rem;
    }

    .collections-hero p {
        font-size: 1rem;
    }

    .filter-section {
        padding: 2rem 5%;
    }

    .filter-container h3 {
        font-size: 1.5rem;
    }

    .filter-buttons {
        gap: 0.75rem;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .all-products {
        padding: 3rem 5%;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .accordion {
        width: 24rem;
    }

    .accordion-header {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
    }

    .accordion-content.active {
        padding: 1.2rem 1.5rem;
        max-height: 516px;
    }

    .accordion-content p,
    .accordion-content li {
        font-size: 0.95rem;
    }
}

/* Light Theme Styles */
body.light-theme {
    background: linear-gradient(135deg, #F8F6F0 0%, #FFFFFF 50%, #F5F2EA 100%);
}

body.light-theme .header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

body.light-theme .logo {
    background: linear-gradient(45deg, #8B4513, #A0522D, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-theme .nav-links a {
    color: #2C2C2C;
}

body.light-theme .nav-links a:hover {
    color: #8B4513;
}

body.light-theme .theme-toggle {
    background: rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.3);
    color: #8B4513;
}

body.light-theme .theme-toggle:hover {
    background: rgba(139, 69, 19, 0.2);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

body.light-theme .cart-icon {
    background: linear-gradient(45deg, #8B4513, #A0522D);
    color: #FFFFFF;
}

body.light-theme .cart-icon:hover {
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

body.light-theme .hero {
    background: linear-gradient(135deg, #F8F6F0 0%, #FFFFFF 50%, #F5F2EA 100%);
}

body.light-theme .hero-content {
    color: #2C2C2C;
}

body.light-theme .hero h1 {
    background: linear-gradient(45deg, #2C2C2C, #5D4E37, #8B4513);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(139, 69, 19, 0.3);
}

body.light-theme .hero p {
    color: #5D4E37;
}

body.light-theme .cta-button {
    background: linear-gradient(45deg, #8B4513, #A0522D);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

body.light-theme .cta-button:hover {
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.5);
}

body.light-theme .particle {
    background: rgba(150, 100, 65, 0.2);
}

body.light-theme .section-title {
    color: #2C2C2C;
    text-shadow: 0 0 20px rgba(139, 69, 19, 0.3);
}

body.light-theme .product-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(139, 69, 19, 0.2);
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.1);
}

body.light-theme .product-card:hover {
    border-color: rgba(139, 69, 19, 0.4);
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.15);
}

body.light-theme .product-title {
    color: #2C2C2C;
}

body.light-theme .product-price {
    color: #8B4513;
}

body.light-theme .product-description {
    color: #5D4E37;
}

body.light-theme .add-to-cart {
    background: linear-gradient(45deg, #8B4513, #A0522D);
    color: #FFFFFF;
}

body.light-theme .add-to-cart:hover {
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.4);
}

body.light-theme .features {
    background: rgba(245, 242, 234, 0.7);
    border-top: 1px solid rgba(139, 69, 19, 0.2);
    border-bottom: 1px solid rgba(139, 69, 19, 0.2);
}

body.light-theme .feature-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(139, 69, 19, 0.2);
}

body.light-theme .feature-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(139, 69, 19, 0.4);
}

body.light-theme .feature-title {
    color: #2C2C2C;
}

body.light-theme .feature-description {
    color: #5D4E37;
}

body.light-theme .footer {
    background: #F8F6F0;
    color: #2C2C2C;
    border-top: 1px solid rgba(139, 69, 19, 0.2);
}

body.light-theme .footer-bottom {
    color: #5D4E37;
}

body.light-theme .social-links a {
    background: linear-gradient(45deg, #8B4513, #A0522D);
    color: #ffffff;
}

body.light-theme .social-links a:hover {
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

body.light-theme .loading {
    background: linear-gradient(135deg, #F8F6F0 0%, #FFFFFF 50%, #F5F2EA 100%);
}

body.light-theme .loader {
    border: 5px solid rgba(139, 69, 19, 0.3);
    border-top: 5px solid #8B4513;
}

/* Light Theme Styles for Collections */
body.light-theme .collections-hero {
    background: linear-gradient(135deg, #F8F6F0 0%, #FFFFFF 50%, #F5F2EA 100%);
}

body.light-theme .collections-hero-content {
    color: #2C2C2C;
}

body.light-theme .collections-hero h1 {
    background: linear-gradient(45deg, #2C2C2C, #5D4E37, #8B4513);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(139, 69, 19, 0.3);
}

body.light-theme .collections-hero p {
    color: #5D4E37;
}

body.light-theme .filter-section {
    background: rgba(245, 242, 234, 0.5);
    border-bottom: 1px solid rgba(139, 69, 19, 0.2);
}

body.light-theme .filter-container h3 {
    color: #2C2C2C;
}

body.light-theme .filter-btn {
    background: rgba(255, 255, 255, 0.8);
    color: #2C2C2C;
    border: 2px solid rgba(139, 69, 19, 0.3);
}

body.light-theme .filter-btn:hover {
    background: rgba(139, 69, 19, 0.1);
    border-color: rgba(139, 69, 19, 0.6);
}

body.light-theme .filter-btn.active {
    background: linear-gradient(45deg, #8B4513, #A0522D);
    color: #FFFFFF;
    border-color: #8B4513;
}

body.light-theme .cart-sidebar {
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid rgba(139, 69, 19, 0.2);
}

body.light-theme .cart-title {
    color: #442f2f;
}

body.light-theme .cart-header {
    border-bottom: 1px solid rgba(139, 69, 19, 0.2);
}

body.light-theme .cart-header h3 {
    color: #2C2C2C;
}

body.light-theme .close-cart {
    color: #2C2C2C;
}

body.light-theme .close-cart:hover {
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
}

body.light-theme .cart-item {
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

body.light-theme .cart-item-image {
    border: 1px solid rgba(139, 69, 19, 0.2);
}

body.light-theme .cart-item-title {
    color: #2C2C2C;
}

body.light-theme .cart-item-price {
    color: #8B4513;
}

body.light-theme .quantity-btn {
    background: rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.3);
    color: #8B4513;
}

body.light-theme .quantity-btn:hover {
    background: rgba(139, 69, 19, 0.2);
    border-color: rgba(139, 69, 19, 0.5);
}

body.light-theme .quantity-number {
    color: #2C2C2C;
}

body.light-theme .quantity-display {
    color: #8B4513;
}

body.light-theme .cart-footer {
    border-top: 1px solid rgba(139, 69, 19, 0.2);
    background: rgba(255, 255, 255, 0.9);
}

body.light-theme .cart-total {
    color: #2C2C2C;
}

body.light-theme .cart-total span {
    color: #8B4513;
}

body.light-theme .checkout-btn {
    background: linear-gradient(45deg, #8B4513, #A0522D);
    color: #FFFFFF;
}

body.light-theme .checkout-btn:hover {
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

body.light-theme .checkout-btn:disabled {
    background: rgba(139, 69, 19, 0.3);
}

body.light-theme .empty-cart {
    color: #5D4E37;
}

body.light-theme .accordion {
    background: rgba(245, 242, 234, 0.8);
    border: 1px solid rgba(139, 69, 19, 0.2);
}

body.light-theme .accordion-header {
    color: #8B4513;
}

body.light-theme .accordion-header:hover {
    color: #A0522D;
}

body.light-theme .accordion-content {
    background: rgba(255, 255, 255, 0.6);
}

body.light-theme .accordion-content p,
body.light-theme .accordion-content li {
    color: #5D4E37;
}