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

:root {
    /* Blue/White theme */
    --primary: #2563eb;        /* Blue 600 */
    --primary-dark: #1d4ed8;   /* Blue 700 */
    --secondary: #60a5fa;      /* Blue 400 */

    --dark: #0b1220;           /* Deep navy */
    --light: #ffffff;          /* Pure white */
    --gray: #64748b;           /* Slate gray */

    /* Accent/semantic colors that fit the theme */
    --success: #16a34a;       /* Green for success */
    --warning: #f59e0b;       /* Amber */
    --danger: #ef4444;        /* Red */
    --info: #0ea5e9;          /* Sky */
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

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

.header {
    background: var(--dark);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Move main nav to the right within the header */
.header .container .nav {
    margin-left: auto;
}


.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary);
}

.cart-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.cart-count {
    font-size: 0.9rem;
    font-weight: bold;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: white;
    transition: 0.3s;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}

.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: white;
    text-align: center;
    padding: 6rem 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.products {
    padding: 4rem 0;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-image {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-image::before {
    content: '';
    position: absolute;
    inset: 10%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
}

.product-info .price {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.add-to-cart {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart:hover {
    background: var(--primary-dark);
}

.about, .contact {
    padding: 4rem 0;
    background: white;
}

.about h2, .contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray);
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input, .contact-form textarea {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

.cart-modal {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    transition: right 0.3s;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

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

.cart-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.cart-item-info h4 {
    margin-bottom: 0.25rem;
}

.cart-item-info span {
    color: var(--gray);
}

.remove-item {
    background: #ef4444;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: bold;
    padding: 1rem 0;
    border-top: 2px solid var(--dark);
}

.close-cart {
    background: var(--gray);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 1rem;
}

.loading-spinner {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.loading-spinner.active {
    display: flex;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--light);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Accessibility focus styles */
.btn:focus-visible,
.nav-link:focus-visible,
.add-to-cart:focus-visible,
.cart-icon:focus-visible,
.hamburger:focus-visible,
.remove-item:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

/* ========== HERO (WELCOME PICTURE) ========== */
.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 3rem;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.35;
    z-index: 0;
}

.hero::before {
    left: -220px;
    top: -260px;
    background: radial-gradient(circle at center, #10b981 0%, rgba(16,185,129,0) 65%);
}

.hero::after {
    right: -240px;
    bottom: -300px;
    background: radial-gradient(circle at center, #f59e0b 0%, rgba(245,158,11,0) 60%);
}

.hero-copy,
.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-copy h1 {
    font-size: clamp(2.1rem, 3.2vw, 3.25rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-copy p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 1.75rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

/* Ensure hero buttons remain centered in the responsive layout */
.hero-copy {
    text-align: left;
}

@media (max-width: 900px) {
    .hero-copy {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }
}


.btn-ghost {
    background: rgba(170, 149, 29, 0.932);
    /* default for hero (dark background) */
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-ghost:hover {
    border-color: rgba(245, 158, 11, 0.9);
    background: rgba(0, 0, 0, 0.15);
}

/* About teaser uses a light background; override btn-ghost styling so it is always visible */
.about-teaser .btn-ghost {
    color: var(--dark);
    border-color: rgba(16, 185, 129, 0.35);
}

.about-teaser .btn-ghost:hover {
    color: var(--dark);
    border-color: rgba(245, 158, 11, 0.95);
    background: rgba(16, 185, 129, 0.08);
}


.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(8px);
}

.hero-trust-item i {
    color: #fbbf24;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.hero-visual-frame {
    width: min(520px, 100%);
    aspect-ratio: 5 / 3;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    overflow: hidden;
    transform: translateY(8px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.hero-visual-frame.loaded {
    transform: translateY(0);
    opacity: 1;
}

.hero-visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-visual-badge {
    width: fit-content;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.96);
    font-weight: 700;
    letter-spacing: 0.2px;
    backdrop-filter: blur(10px);
    animation: heroFloat 3.8s ease-in-out infinite;
}

.hero-visual-badge i {
    color: #10b981;
    margin-right: 0.4rem;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.75rem;
    }

    .hero-visual {
        align-items: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual-badge {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4.5rem 0;
    }

    .hero-inner {
        gap: 1.25rem;
    }

    .hero-copy p {
        font-size: 1.05rem;
    }

    .hero-visual-frame {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 3rem;
        padding-top: 5rem;
        transition: left 0.3s;
        z-index: 100;
    }

    .nav.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }
    
    .cart-modal {
        width: 100%;
        right: -100%;
    }
}

/* ========== HEADER SUBTITLE ========== */
.header-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-top: 0.25rem;
    margin-left: 1rem;
}

/* ========== ABOUT SECTION (Enhanced) ========== */
.about-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.about-header h2 {
    font-size: clamp(1.75rem, 2.2vw, 2.25rem);
    color: var(--dark);
    text-align: center;
}

.about-subtitle {
    color: var(--gray);
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.05rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.about-card {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.about-card i {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.about-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.about-card p {
    color: var(--gray);
    font-size: 0.98rem;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-header h2 {
        font-size: 1.75rem;
    }

    .about-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
}

/* ========== ABOUT TEASER (INDEX) ========== */
.about-teaser {
    background: linear-gradient(135deg, rgba(16,185,129,0.10) 0%, rgba(245,158,11,0.08) 100%);
    border-top: 1px solid rgba(16,185,129,0.12);
    border-bottom: 1px solid rgba(16,185,129,0.12);
}

.about-hero-teaser {
    padding: 3.25rem 0 1.5rem;
}

.about-hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.about-hero-teaser .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(16,185,129,0.10);
    border: 1px solid rgba(16,185,129,0.18);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.about-teaser-grid {
    margin-top: 1.25rem;
}

.about-teaser-strip {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.strip-item {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark);
    box-shadow: 0 10px 35px rgba(0,0,0,0.04);
    font-weight: 600;
}

.strip-item i {
    color: var(--primary);
}

.about-disclaimer {
    margin-top: 1rem;
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .about-teaser-strip {
        grid-template-columns: 1fr;
    }
}


/* ========== PROMOTIONAL BANNER ========== */
.promo-banner {

    background: linear-gradient(135deg, var(--secondary) 0%, #f97316 100%);
    color: white;
    padding: 0.75rem 0;
    text-align: center;
    position: relative;
}

.promo-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.promo-banner strong {
    font-weight: 600;
}

.promo-code {
    background: var(--dark);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    font-weight: bold;
}

.promo-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.promo-close:hover {
    opacity: 1;
}

/* ========== SEARCH AND FILTER BAR ========== */
.search-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.search-box {
    flex: 1;
    min-width: 200px;
    display: flex;
    gap: 0.5rem;
}

.search-box input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.search-box input:focus {
    border-color: var(--primary);
    outline: none;
}

.search-box button {
    padding: 0.75rem 1rem;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.search-box button:hover {
    background: var(--primary-dark);
}

.filter-group {
    display: flex;
    gap: 0.5rem;
}

.filter-group select {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    background: white;
}

.filter-group select:focus {
    border-color: var(--primary);
    outline: none;
}

/* ========== PRODUCT CARD ENHANCEMENTS ========== */
.product-card {
    position: relative;
}

.sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 1;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 36px;
    height: 36px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, background 0.3s;
    z-index: 1;
}

.wishlist-btn:hover {
    transform: scale(1.1);
}

.wishlist-btn.active {
    background: #ef4444;
    color: white;
}

.wishlist-btn i {
    font-size: 1rem;
}

/* ========== CART QUANTITY CONTROLS ========== */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.cart-item-info h4 {
    margin-bottom: 0.25rem;
}

.cart-item-info span {
    color: var(--gray);
}

.cart-item-price {
    font-weight: bold;
    color: var(--primary);
    margin-top: 0.25rem;
}

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

.quantity-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
}

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

.quantity-display {
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

/* ========== WISHLIST MODAL ========== */
.wishlist-modal {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    transition: left 0.3s;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.wishlist-modal.active {
    left: 0;
}

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

.wishlist-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.wishlist-items {
    flex: 1;
    overflow-y: auto;
}

.wishlist-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.wishlist-item-info h4 {
    margin-bottom: 0.25rem;
}

.wishlist-item-info span {
    color: var(--gray);
    font-size: 0.9rem;
}

.remove-wishlist {
    background: #ef4444;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}

.close-wishlist {
    background: var(--gray);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 1rem;
}

.wishlist-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.15rem 0.4rem;
    border-radius: 50px;
    min-width: 18px;
    text-align: center;
}

/* ========== DARK MODE TOGGLE ========== */
.dark-mode-toggle {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.dark-mode-toggle:hover {
    transform: scale(1.1);
}

.dark-mode-toggle .fa-sun {
    display: none;
}

body.dark-mode {
    --dark: #f8fafc;
    --light: #0f172a;
    --gray: #94a3b8;
    background: #0f172a;
    color: #e2e8f0;
}

body.dark-mode .header {
    background: #0b0f1a;
}

body.dark-mode .hero {
    background: linear-gradient(135deg, #0b0f1a 0%, #1e293b 100%);
}

body.dark-mode .about, 
body.dark-mode .contact {
    background: #0b0f1a;
}

body.dark-mode .products {
    background: #0f172a;
}

body.dark-mode .product-card {
    background: #1e293b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.dark-mode .product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

body.dark-mode .product-info h3,
body.dark-mode .cart-item-info h4 {
    color: #f1f5f9;
}

body.dark-mode .product-info p,
body.dark-mode .cart-item-info span {
    color: #94a3b8;
}

body.dark-mode .search-filter-bar {
    background: #1e293b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

body.dark-mode .search-box input,
body.dark-mode .filter-group select {
    background: #334155;
    border-color: #475569;
    color: #e2e8f0;
}

body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea {
    background: #1e293b;
    border-color: #334155;
    color: #e2e8f0;
}

body.dark-mode .footer {
    background: #0b0f1a;
}

body.dark-mode .newsletter {
    background: linear-gradient(135deg, #0b0f1a 0%, #1e293b 100%);
}

body.dark-mode .newsletter h2 {
    color: #f1f5f9;
}

body.dark-mode .newsletter-form input {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: white;
}

body.dark-mode .newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.12);
}

body.dark-mode .newsletter-note {
    color: #64748b;
}

body.dark-mode .testimonials {
    background: #0b0f1a;
}

body.dark-mode .testimonials h2 {
    color: #f1f5f9;
}

body.dark-mode .testimonial-card {
    background: #1e293b;
}

body.dark-mode .testimonial-card p {
    color: #cbd5e1;
}

body.dark-mode .testimonial-author strong {
    color: #f1f5f9;
}

body.dark-mode .faq {
    background: #0f172a;
}

body.dark-mode .faq h2 {
    color: #f1f5f9;
}

body.dark-mode .faq-item {
    background: #1e293b;
}

body.dark-mode .faq-question {
    color: #f1f5f9;
}

body.dark-mode .faq-answer p {
    color: #94a3b8;
}

body.dark-mode .empty-wishlist {
    color: #64748b;
}

body.dark-mode .trust-badges {
    background: #0b0f1a;
    border-color: #1e293b;
}

body.dark-mode .trust-badge-text strong {
    color: #f1f5f9;
}

body.dark-mode .cart-modal,
body.dark-mode .wishlist-modal {
    background: #1e293b;
}

body.dark-mode .cart-items,
body.dark-mode .wishlist-items {
    background: #1e293b;
}

body.dark-mode .cart-item,
body.dark-mode .wishlist-item {
    border-color: #334155;
}

body.dark-mode .quick-view-content {
    background: #1e293b;
}

body.dark-mode .quick-view-close {
    color: #94a3b8;
}

body.dark-mode .quick-view-image {
    background: #0f172a;
}

body.dark-mode .quick-view-details h3 {
    color: #f1f5f9;
}

body.dark-mode .quick-view-details .description {
    color: #94a3b8;
}

body.dark-mode .promo-banner {
    background: linear-gradient(135deg, #b45309 0%, #c2410c 100%);
}

body.dark-mode .promo-close {
    color: #e2e8f0;
}

body.dark-mode .promo-close:hover {
    color: white;
}

body.dark-mode .cookie-banner {
    background: #0b0f1a;
    border-top: 1px solid #1e293b;
}

body.dark-mode .btn-decline {
    border-color: #475569;
    color: #94a3b8;
}

body.dark-mode .btn-decline:hover {
    border-color: #64748b;
    color: #e2e8f0;
}

body.dark-mode .cookie-content p {
    color: #94a3b8;
}

/* Recently Viewed Dark Mode */
body.dark-mode .recently-viewed {
    background: #0f172a;
}

body.dark-mode .recently-viewed h2 {
    color: #f1f5f9;
}

body.dark-mode .recently-item {
    background: #1e293b;
}

body.dark-mode .recently-item h4 {
    color: #f1f5f9;
}

/* Trust Badges Dark Mode */
body.dark-mode .trust-badge-text strong {
    color: #f1f5f9;
}

body.dark-mode .trust-badge-text span {
    color: #64748b;
}

/* Stock Status Dark Mode */
body.dark-mode .stock-status.in-stock {
    color: #22c55e;
}

body.dark-mode .stock-status.low-stock {
    color: #f59e0b;
}

body.dark-mode .stock-status.out-of-stock {
    color: #ef4444;
}

/* Stock dot indicator */
.stock-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.stock-status.in-stock .stock-dot {
    background: var(--success);
    box-shadow: 0 0 6px var(--success);
}

.stock-status.low-stock .stock-dot {
    background: var(--secondary);
    box-shadow: 0 0 6px var(--secondary);
}

.stock-status.out-of-stock .stock-dot {
    background: #ef4444;
    box-shadow: 0 0 6px #ef4444;
}

/* ========== VIEW DETAILS BUTTON ========== */
.product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.view-details {
    flex: 1;
    padding: 0.75rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.view-details:hover {
    background: var(--primary);
    color: white;
}

.view-details i {
    font-size: 0.85rem;
}

/* ========== PRODUCT DETAILS MODAL ========== */
.product-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    overflow-y: auto;
}

.product-details-modal.active {
    display: flex;
}

.details-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.details-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1.2rem;
    transition: all 0.3s;
    z-index: 1;
}

.details-close:hover {
    background: #ef4444;
    color: white;
}

.details-image {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    min-height: 250px;
}

.details-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.details-info {
    padding: 2rem;
}

.details-category {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.details-info h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.details-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
}

.details-price .original-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 1rem;
    margin-right: 0.5rem;
}

.details-description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.details-specs {
    margin-bottom: 1.25rem;
}

.details-specs h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.details-specs h4 i {
    color: var(--primary);
}

.details-specs ul {
    list-style: none;
}

.details-specs li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
}

.details-specs li:last-child {
    border-bottom: none;
}

.details-specs strong {
    color: #1e293b;
    margin-right: 0.5rem;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    padding: 0.25rem 0;
}

.features-list i {
    color: var(--primary);
    font-size: 0.75rem
}

.ingredients {
    background: #f8fafc;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

.details-warnings {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.details-warnings h4 {
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.details-warnings h4 i {
    color: #dc2626;
}

.details-warnings p {
    color: #991b1b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.details-actions {
    display: flex;
    gap: 1rem;
}

.details-add-cart {
    flex: 1;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.details-add-cart:hover {
    background: var(--primary-dark);
}

/* Product Details Modal Dark Mode */
body.dark-mode .product-details-modal.active {
    background: rgba(0, 0, 0, 0.8);
}

body.dark-mode .details-modal-content {
    background: #1e293b;
}

body.dark-mode .details-close {
    background: #334155;
    color: #94a3b8;
}

body.dark-mode .details-close:hover {
    background: #ef4444;
    color: white;
}

body.dark-mode .details-image {
    background: linear-gradient(135deg, #064e3b, #065f46);
}

body.dark-mode .details-category {
    background: rgba(16, 185, 129, 0.25);
    color: #34d399;
}

body.dark-mode .details-info h2 {
    color: #f1f5f9;
}

body.dark-mode .details-description {
    color: #94a3b8;
    border-bottom-color: #334155;
}

body.dark-mode .details-specs h4 {
    color: #f1f5f9;
}

body.dark-mode .details-specs li {
    border-bottom-color: #334155;
    color: #cbd5e1;
}

body.dark-mode .details-specs strong {
    color: #f1f5f9;
}

body.dark-mode .ingredients {
    background: #0f172a;
    color: #94a3b8;
}

body.dark-mode .details-warnings {
    background: #450a0a;
    border-color: #7f1d1d;
}

body.dark-mode .details-warnings h4 {
    color: #fca5a5;
}

body.dark-mode .details-warnings p {
    color: #fecaca;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 4rem 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.testimonial-stars {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--dark);
}

.testimonial-author span {
    color: var(--primary);
    font-size: 0.9rem;
}

/* ========== FAQ ACCORDION ========== */
.faq {
    padding: 4rem 0;
    background: var(--light);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ========== NEWSLETTER ========== */
.newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    color: white;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter p {
    color: #94a3b8;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    max-width: 550px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    min-width: 220px;
    padding: 0.9rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    border-color: var(--primary);
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.newsletter-form .btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.newsletter-form .btn:active {
    transform: translateY(0);
}

.newsletter-note {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 1.25rem;
}

/* Newsletter Success Message */
.newsletter-success {
    display: none;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem auto;
    max-width: 500px;
}

.newsletter-success.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.newsletter-success i {
    color: var(--primary);
    margin-right: 0.5rem;
}

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

/* ========== TRUST BADGES ========== */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    background: var(--light);
    border-bottom: 1px solid #e2e8f0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray);
}

.trust-badge i {
    font-size: 1.75rem;
    color: var(--primary);
}

.trust-badge-text strong {
    display: block;
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.trust-badge-text span {
    font-size: 0.8rem;
}

/* ========== RECENTLY VIEWED SECTION ========== */
.recently-viewed {
    padding: 4rem 0;
    background: white;
}

.recently-viewed h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.recently-viewed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.recently-item {
    background: var(--light);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.recently-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.recently-item-image {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.recently-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    color: var(--dark);
}

.recently-item .price {
    color: var(--primary);
    font-weight: bold;
}

/* ========== STOCK STATUS INDICATOR ========== */
.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.stock-status.in-stock {
    color: var(--success);
}

.stock-status.low-stock {
    color: var(--secondary);
}

.stock-status.out-of-stock {
    color: #ef4444;
}

.stock-status i {
    font-size: 0.6rem;
}

.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

/* ========== PRODUCT QUICK VIEW ========== */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.quick-view-content {
    background: white;
    border-radius: 16px;
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    position: relative;
}

.quick-view-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.3s;
    z-index: 10;
}

.quick-view-close:hover {
    color: var(--dark);
}

.quick-view-image {
    font-size: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 12px;
    min-height: 250px;
}

.quick-view-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.quick-view-details .price {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 1rem;
}

.quick-view-details .description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ========== SOCIAL MEDIA LINKS ========== */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.25rem;
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* ========== COUNTDOWN TIMER BANNER ========== */
.countdown-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #0ea5e9 100%);

    color: white;
    padding: 1rem 0;
    text-align: center;
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.countdown-label {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.countdown-label i {
    color: #fbbf24;
    animation: pulse-fire 1s infinite;
}

@keyframes pulse-fire {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.countdown-timer {
    display: flex;
    gap: 0.75rem;
}

.countdown-unit {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    min-width: 60px;
}

.countdown-value {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.countdown-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.countdown-code {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px dashed rgba(255, 255, 255, 0.5);
}

.countdown-code strong {
    color: #fbbf24;
    font-family: monospace;
    font-size: 1.1rem;
}

/* ========== FLOATING CART & WISHLIST BUTTONS ========== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
    z-index: 998;
}

.floating-cart-btn,
.floating-wishlist-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-cart-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.floating-wishlist-btn {
    background: white;
    color: #ef4444;
    border: 2px solid #ef4444;
}

.floating-cart-btn:hover,
.floating-wishlist-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.floating-cart-btn .cart-count,
.floating-wishlist-btn .wishlist-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--secondary);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    min-width: 22px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.floating-wishlist-btn .wishlist-count {
    background: #ef4444;
}

/* ========== FLOATING WHATSAPP BUTTON ========== */
.floating-whatsapp-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    background: #20bd5a;
}

/* Hide original header buttons when floating buttons are active */
.header-actions .cart-icon,
.header-actions .wishlist-toggle {
    display: none;
}

/* Mobile adjustments for floating buttons */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        left: 20px;
    }

    .floating-cart-btn,
    .floating-wishlist-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}

/* Dark mode styles for floating buttons */
body.dark-mode .floating-wishlist-btn {
    background: #1e293b;
    border-color: #ef4444;
    color: #ef4444;
}

/* ========== ADDITIONAL STYLES ========== */
.original-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.btn-add-to-cart {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 0.5rem;
    transition: background 0.3s;
}

.btn-add-to-cart:hover {
    background: var(--primary-dark);
}

.empty-wishlist {
    text-align: center;
    color: var(--gray);
    padding: 2rem;
}

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

.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: white;
    text-align: center;
    padding: 6rem 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero .btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.about, .contact {
    padding: 4rem 0;
    background: white;
}

.about h2, .contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray);
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input, .contact-form textarea {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .cart-modal {
        width: 100%;
        right: -100%;
    }
}

/* ========== SCROLL ANIMATIONS ========== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* Product cards animation */
.product-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

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

/* Staggered animation for grid items */
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.15s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.25s; }
.product-card:nth-child(5) { animation-delay: 0.3s; }
.product-card:nth-child(6) { animation-delay: 0.35s; }

/* Micro-interaction: Button press effect */
.btn, .add-to-cart, .floating-cart-btn, .floating-wishlist-btn {
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.btn:active, .add-to-cart:active, .floating-cart-btn:active, .floating-wishlist-btn:active {
    transform: scale(0.95);
}

/* Heart pulse on wishlist add */
.wishlist-btn.just-clicked {
    animation: heartPulse 0.4s ease;
}

@keyframes heartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Toast notification slide in */
.toast-notification {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 2001;
    transition: transform 0.3s ease;
    opacity: 0;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ========== POLICY SECTIONS ========== */
.policy-section {
    padding: 4rem 0;
    background: var(--light);
}

.policy-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--dark);
}

.policy-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-updated {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
}

body.dark-mode .policy-section {
    background: #0f172a;
}

body.dark-mode .policy-section h2,
body.dark-mode .policy-section h3 {
    color: #f1f5f9;
}

body.dark-mode .policy-content p {
    color: #94a3b8;
}

/* ========== ORDER TRACKING ========== */
.order-tracking {
    padding: 4rem 0;
    background: var(--light);
}

.order-tracking h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.tracking-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 2rem;
}

.tracking-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tracking-form input {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
}

.tracking-form input:focus {
    border-color: var(--primary);
    outline: none;
}

.tracking-result {
    display: none;
    max-width: 600px;
    margin: 0 auto;
}

.tracking-result.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.tracking-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 2rem 0;
}

.tracking-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background: #e2e8f0;
    z-index: 0;
}

.tracking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.tracking-step .step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.tracking-step.completed .step-icon {
    background: var(--primary);
    color: white;
}

.tracking-step.active .step-icon {
    background: var(--secondary);
    color: white;
    animation: pulse 1s infinite;
}

.tracking-step .step-info {
    text-align: center;
}

.tracking-step .step-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.tracking-step .step-info p {
    font-size: 0.75rem;
    color: var(--gray);
}

.tracking-info {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tracking-info p {
    margin: 0.5rem 0;
    color: var(--gray);
}

.help-text {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--gray);
}

.help-text a {
    color: var(--primary);
}

body.dark-mode .order-tracking {
    background: #0f172a;
}

body.dark-mode .tracking-form input {
    background: #1e293b;
    border-color: #334155;
    color: #e2e8f0;
}

body.dark-mode .tracking-result,
body.dark-mode .tracking-info {
    background: #1e293b;
}

body.dark-mode .tracking-info p {
    color: #94a3b8;
}
