﻿/* ========= CSS VARIABLES ========= */
:root {
    --bg: #f8f5f0;
    --bg2: #ffffff;
    --text: #1a1208;
    --text2: #5c5040;
    --red: #e05555;
    --green: #4caf50;
    --accent: #8b1a1a;
    --accent2: #8b1a1a;
    --gold: #b13333;
    --border: #e8ddd0;
    --card: #ffffff;
    --sidebar: #faf7f3;
    --shadow: rgba(0,0,0,0.08);
    --shadow2: rgba(0,0,0,0.15);
    --header: rgba(248,245,240,0.95);
    --ticker: #1a1208;
    --ticker-text: #f8f5f0;
    --stat-bg: #1a1208;
    --stat-text: #f8f5f0;
    --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

[data-theme="dark"] {
    --bg: #0e0c09;
    --bg2: #181410;
    --text: #f0e8d8;
    --text2: #f0e8d8;
    --accent: #8b1a1a; /*d4a855*/
    --accent2: #e05555;
    --gold: #b13333;
    --border: #2a2318;
    --card: #1c1810;
    --sidebar: #141209;
    --shadow: rgba(0,0,0,0.4);
    --shadow2: rgba(0,0,0,0.6);
    --header: rgba(14,12,9,0.97);
    --ticker: #f9f4f4;
    --ticker-text: #0e0c09;
    --stat-bg: #f9f4f4;
    --stat-text: #0e0c09;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    transition: background var(--transition), color var(--transition);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
}

.carousel-indicators [data-bs-target] {
    background-color: #b13333;
}

.successmsg {
    color: var(--green);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(34, 197, 94, 0.2)
}

.errormsg {
    color: var(--red);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem;
    background: rgba(224,85,85,0.1);
    border-radius: 8px;
    border: 1px solid rgba(224,85,85,0.2)
}

/* ======= LOADER ======= */
#loader {
    position: fixed;
    inset: 0;
    background: #0e0c09;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s;
}

    #loader.hidden {
        opacity: 0;
        visibility: hidden;
    }

.loader-inner {
    text-align: center;
}

.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #8b1a1a;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: #2a2318;
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
}

    .loader-bar span {
        display: block;
        height: 100%;
        width: 0%;
        background: linear-gradient(90deg, #e05555, #8b1a1a);
        animation: loadBar 2s ease forwards;
    }

@keyframes loadBar {
    to {
        width: 100%;
    }
}

@keyframes pulse {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: 0.5
    }
}

/* ======= BACK TO TOP ======= */
#backToTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--shadow2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 999;
    font-size: 1rem;
}

    #backToTop.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    #backToTop:hover {
        background: var(--accent2);
        transform: translateY(-3px);
    }

/* ======= HEADER ======= */
.site-header {
    position: sticky;
    top: 0;
    background: var(--header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 200;
    transition: background var(--transition);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2.5rem;
    gap: 1rem;
}

.header-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.logo-icon {
    color: var(--accent);
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

    .header-socials a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1.5px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        transition: all 0.25s;
        color: var(--text2);
    }

        .header-socials a:hover {
            background: var(--accent);
            color: white;
            border-color: var(--accent);
            transform: translateY(-2px);
        }

.divider {
    width: 1px;
    height: 24px;
    background: var(--border);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* THEME TOGGLE */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.toggle-track {
    display: flex;
    align-items: center;
    width: 60px;
    height: 30px;
    border-radius: 15px;
    background: var(--border);
    padding: 3px;
    position: relative;
    transition: background 0.3s;
}

.toggle-thumb {
    position: absolute;
    left: 3px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    transition: transform 0.3s;
    z-index: 1;
}

[data-theme="dark"] .toggle-thumb {
    transform: translateX(30px);
}

.sun-icon, .moon-icon {
    font-size: 0.75rem;
    z-index: 0;
}

.sun-icon {
    margin-left: auto;
    margin-right: 6px;
    color: #f59e0b;
}

.moon-icon {
    margin-left: 6px;
    color: #6366f1;
}

.action-btn {
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.25s;
}

    .action-btn:hover {
        background: var(--accent);
        color: white;
        border-color: var(--accent);
    }

.badge-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent2);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.main-nav {
    border-top: 1px solid var(--border);
    padding: 0 2.5rem;
    justify-items: center;
}

    .main-nav ul {
        display: flex;
        gap: 0;
        align-items: center;
        margin-bottom: 0;
    }

        .main-nav ul li a {
            display: block;
            padding: 0.75rem 1.2rem;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--text2);
            position: relative;
            transition: color 0.25s;
        }

            .main-nav ul li a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 1.2rem;
                right: 1.2rem;
                height: 2px;
                background: var(--accent);
                transform: scaleX(0);
                transition: transform 0.25s;
            }

            .main-nav ul li a:hover {
                color: var(--accent);
            }

                .main-nav ul li a:hover::after {
                    transform: scaleX(1);
                }

/* ======= HERO ======= */
.hero-section {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 5, 0.6);
    backdrop-filter: blur(3px);
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.hero-content {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: heroFadeIn 1.2s ease 2.5s both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-sub {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
}

    .hero-title em {
        color: var(--gold);
        font-style: italic;
    }

.hero-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    max-width: 420px;
    line-height: 1.6;
}

.hero-search {
    display: flex;
    width: 60%;
    min-width: 280px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

    .hero-search input {
        flex: 1;
        border: none;
        background: transparent;
        padding: 0.7rem 1.5rem;
        color: white;
        font-size: 0.9rem;
        outline: none;
    }

        .hero-search input::placeholder {
            color: rgba(255,255,255,0.6);
        }

    .hero-search button {
        padding: 0.7rem 1.4rem;
        background: var(--accent);
        border: none;
        color: white;
        cursor: pointer;
        font-size: 0.9rem;
        transition: background 0.25s;
    }

        .hero-search button:hover {
            background: var(--gold);
        }

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 2rem;
    background: var(--accent);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    margin-top: 0.25rem;
}

    .hero-btn:hover {
        background: var(--gold);
        color: #1a1208;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(212,175,106,0.4);
    }

/* ======= TICKER ======= */
.ticker-wrap {
    background: var(--ticker);
    color: var(--ticker-text);
    padding: 0.6rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker {
    display: inline-flex;
    gap: 4rem;
    animation: ticker 30s linear infinite;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ======= STATS ======= */
.stats-section {
    display: flex;
    background: var(--stat-bg);
    color: var(--stat-text);
    padding: 2.5rem;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
    transition: background var(--transition), color var(--transition);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
}

.stat-plus {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.stat-item p {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-top: 0.25rem;
}

/* ======= SHOP LAYOUT ======= */
.shop-layout {
    display: flex;
    min-height: 100vh;
}

/* SIDEBAR */
.sidebar {
    width: 20%;
    min-width: 200px;
    background: var(--sidebar);
    border-right: 1px solid var(--border);
    position: sticky;
    top: 105px;
    height: calc(100vh - 105px);
    overflow-y: auto;
    transition: background var(--transition);
}

.sidebar-inner {
    padding: 2rem 1.5rem;
}

.sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-size: 0.88rem;
    color: var(--text2);
    transition: all 0.25s;
    gap: 0.5rem;
}

    .cat-link i {
        width: 18px;
        text-align: center;
        color: var(--accent);
    }

    .cat-link .cat-count {
        background: var(--border);
        color: var(--text2);
        font-size: 0.72rem;
        padding: 2px 7px;
        border-radius: 20px;
    }

    .cat-link:hover, .cat-link.active {
        background: var(--accent);
        color: white;
    }

        .cat-link:hover .cat-count, .cat-link.active .cat-count {
            background: rgba(255,255,255,0.25);
            color: white;
        }

        .cat-link:hover i, .cat-link.active i {
            color: white;
        }

.sidebar-filter {
    margin-top: 1.75rem;
}

    .sidebar-filter h4 {
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text2);
        margin-bottom: 0.75rem;
    }

.price-display {
    font-size: 0.85rem;
    color: var(--text2);
    margin-top: 0.4rem;
}

.form-range::-webkit-slider-thumb {
    background: var(--accent);
}

.form-select {
    background: var(--card);
    color: var(--text);
    border-color: var(--border);
    font-size: 0.85rem;
}

.sidebar-promo {
    margin-top: 2rem;
    background: linear-gradient(135deg, var(--accent2), #6b0f0f);
    color: white;
    padding: 1.25rem;
    border-radius: 14px;
    text-align: center;
}

.promo-badge {
    display: inline-block;
    background: white;
    color: var(--accent2);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.sidebar-promo p {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.promo-link {
    color: #d7a78d;
    font-size: 0.8rem;
    font-weight: 600;
}

/* PRODUCT AREA */
.product-area {
    width: 80%;
    padding: 2rem;
}

.product-area-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
}

.result-count {
    font-size: 0.85rem;
    color: var(--text2);
}

/* SKELETON */
.skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.skeleton-card {
    height: 340px;
    border-radius: 16px;
    background: linear-gradient(90deg, var(--border) 25%, var(--bg) 50%, var(--border) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    from {
        background-position: 200% 0
    }

    to {
        background-position: -200% 0
    }
}

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px var(--shadow2);
    }

.product-img-wrap {
    position: relative;
    overflow: hidden;
    height: 350px;
}

    .product-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

.product-card:hover .product-img-wrap img {
    transform: scale(1.08);
}

.badge-sale {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent2);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.badge-new {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #2d6a2d;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-actions .btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
}

    .product-actions .btn:hover {
        background: var(--accent);
        color: white;
    }

    .product-actions button.wishlisted {
        background: var(--accent2);
        color: white;
    }

.product-info {
    padding: 1rem 1.25rem;
}

.product-cat {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-price-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.product-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
}

.product-old-price {
    font-size: 0.85rem;
    color: var(--text2);
    text-decoration: line-through;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.6rem;
    background: var(--text);
    color: var(--bg);
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: all 0.25s;
}

    .add-to-cart-btn:hover {
        background: var(--accent);
        color: white;
        transform: translateY(-1px);
    }

/* PAGINATION */
.pagination-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--card);
    color: var(--text);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .page-btn:hover, .page-btn.active {
        background: var(--accent);
        color: white;
        border-color: var(--accent);
    }

/* ======= ABOUT ======= */
.about-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 6rem 5%;
    background: var(--bg2);
    transition: background var(--transition);
}

.about-image {
    flex: 1;
    position: relative;
    min-width: 280px;
}

    .about-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 20px 60px var(--shadow2);
    }

.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-content {
    flex: 1.2;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding: 0.3rem 0.9rem;
    border: 1px solid var(--accent);
    border-radius: 20px;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

    .about-content h2 em {
        color: var(--accent);
        font-style: italic;
    }

.about-content p {
    font-size: 0.95rem;
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

    .about-highlights div {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.85rem;
        font-weight: 500;
    }

    .about-highlights i {
        color: var(--accent);
        font-size: 1rem;
    }

.about-btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: var(--accent);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

    .about-btn:hover {
        background: var(--text);
        color: var(--bg);
        transform: translateY(-2px);
    }

/* ======= REVIEWS ======= */
.reviews-section {
    padding: 6rem 5%;
    background: var(--bg);
    transition: background var(--transition);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.6rem, 3vw, 2.4rem);
        font-weight: 800;
        margin-top: 0.5rem;
    }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px var(--shadow2);
    }

    .review-card.featured {
        background: linear-gradient(135deg, var(--accent), #a0722a);
        color: white;
        border-color: transparent;
    }

.review-stars {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.review-card.featured .review-stars {
    color: #ffe89a;
}

.review-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .reviewer img {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        object-fit: cover;
    }

    .reviewer strong {
        display: block;
        font-size: 0.9rem;
    }

    .reviewer small {
        color: var(--text2);
        font-size: 0.8rem;
    }

.review-card.featured .reviewer small {
    color: rgba(255,255,255,0.7);
}

/* ======= INSTAGRAM ======= */
.insta-section {
    padding: 4rem 5%;
    background: var(--bg2);
    transition: background var(--transition);
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    margin-top: 2rem;
}

.insta-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

    .insta-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s;
    }

    .insta-item:hover img {
        transform: scale(1.1);
    }

.insta-hover {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: white;
    font-size: 1.8rem;
}

.insta-item:hover .insta-hover {
    opacity: 1;
}

/* ======= NEWSLETTER ======= */
.newsletter-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #1a1208 0%, #2d1f0e 100%);
    text-align: center;
    color: white;
}

.newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
}

.newsletter-section .section-tag {
    color: var(--gold);
    border-color: var(--gold);
}

.newsletter-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    margin: 0.5rem 0 0.75rem;
}

.newsletter-section p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

    .newsletter-form input {
        flex: 1;
        border: none;
        background: transparent;
        padding: 0.8rem 1.5rem;
        color: white;
        font-size: 0.9rem;
        outline: none;
    }

        .newsletter-form input::placeholder {
            color: rgba(255,255,255,0.5);
        }

    .newsletter-form button {
        padding: 0.8rem 1.8rem;
        background: var(--accent);
        border: none;
        color: white;
        font-weight: 600;
        cursor: pointer;
        font-size: 0.88rem;
        transition: background 0.25s;
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

        .newsletter-form button:hover {
            background: var(--gold);
        }

.newsletter-success {
    margin-top: 1rem;
    color: var(--gold);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ======= PARTNERS ======= */
.partners-section {
    padding: 4rem 5%;
    background: var(--bg);
    transition: background var(--transition);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.partner-item {
    padding: 1.25rem 2.5rem;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    background: var(--card);
    transition: all 0.3s;
    filter: grayscale(1);
    opacity: 0.6;
}

    .partner-item:hover {
        filter: grayscale(0);
        opacity: 1;
        transform: scale(1.05);
        border-color: var(--accent);
    }

    .partner-item span {
        font-family: 'Playfair Display', serif;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.15em;
        color: var(--text);
    }

/* ======= FOOTER ======= */
.site-footer {
    background: #0e0c09;
    color: rgba(255,255,255,0.8);
    padding: 4rem 5% 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

    .footer-socials a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        color: rgba(255,255,255,0.6);
        transition: all 0.25s;
    }

        .footer-socials a:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
        }

.footer-menu h5 {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: white;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.footer-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-menu a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.25s;
}

    .footer-menu a:hover {
        color: var(--gold);
    }

.footer-contact h5 {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: white;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.footer-contact p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.footer-map {
    margin-top: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

    .footer-bottom p {
        font-size: 0.82rem;
        color: rgba(255,255,255,0.4);
    }

.payment-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.8rem;
    color: rgba(255,255,255,0.4);
}

/* ======= OFFCANVAS / CART ======= */
.offcanvas {
    background: var(--bg2);
    color: var(--text);
    max-width: 380px;
}

.offcanvas-header {
    border-bottom: 1px solid var(--border);
}

.offcanvas-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.empty-state {
    text-align: center;
    color: var(--text2);
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

    .empty-state i {
        font-size: 2.5rem;
        opacity: 0.3;
    }

.cart-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

    .cart-item img {
        width: 70px;
        height: 70px;
        border-radius: 10px;
        object-fit: cover;
    }

.cart-item-info {
    flex: 1;
}

    .cart-item-info h6 {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
    }

.cart-item-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
}

.remove-item {
    background: none;
    border: none;
    color: var(--text2);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0;
}

    .remove-item:hover {
        color: var(--accent2);
    }

.cart-footer {
    position: sticky;
    bottom: 0;
    background: var(--bg2);
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.cart-total {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

    .cart-total strong {
        color: var(--accent);
        font-size: 1.2rem;
    }

.checkout-btn {
    width: 100%;
    padding: 0.8rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.25s;
}

    .checkout-btn:hover {
        background: var(--text);
    }

/* ======= QUICK VIEW ======= */
.quick-view-content {
    background: var(--bg2);
    color: var(--text);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.quick-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

.quick-view-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.quick-img {
    height: 400px;
    overflow: hidden;
}

    .quick-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.quick-details {
    padding: 2.5rem;
}

    .quick-details h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .quick-details .price {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--accent);
        margin-bottom: 1rem;
    }

    .quick-details p {
        font-size: 0.9rem;
        color: var(--text2);
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

.size-select {
    margin-bottom: 1.25rem;
}

    .size-select label {
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        display: block;
        margin-bottom: 0.5rem;
    }

.size-btns {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.size-btn {
    padding: 0.4rem 0.8rem;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    background: var(--card);
    color: var(--text);
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}

    .size-btn.selected, .size-btn:hover {
        background: var(--accent);
        color: white;
        border-color: var(--accent);
    }

.quick-add-btn {
    width: 100%;
    padding: 0.9rem;
    background: var(--text);
    color: var(--bg);
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
}

    .quick-add-btn:hover {
        background: var(--accent);
        color: white;
    }

/* ======= TOAST ======= */
.toast {
    background: var(--card);
    color: var(--text);
    border: 1px solid var(--border);
}

.toast-body {
    font-weight: 500;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1100px) {
    .main-nav {
        padding: 0 0.5rem;
    }

        .main-nav ul li a {
            padding: 0.75rem 0.5rem;
        }

    .sidebar {
        width: 25%;
    }

    .product-area {
        width: 75%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .main-nav {
        padding: 0 0.5rem;
    }

        .main-nav ul li a {
            padding: 0.75rem 0.5rem;
        }

    .shop-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        position: relative;
        height: auto;
        top: 0;
    }

    .product-area {
        width: 100%;
    }

    .about-section {
        flex-direction: column;
        padding: 4rem 5%;
    }

    .quick-view-body {
        grid-template-columns: 1fr;
    }

    .quick-img {
        height: 220px;
    }

    .header-socials {
        display: none;
    }

    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .main-nav {
        padding: 0 0.5rem;
    }

        .main-nav ul li a {
            padding: 0.75rem 0.5rem;
        }

    .header-top {
        padding: 0.75rem 1rem;
    }

    .hero-search {
        width: 90%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-section {
        flex-direction: column;
        text-align: center;
    }
}
