/* ============================================================
   HOME PAGE – THE FRAGRANCE BAR STOREFRONT
   Extracted from Views/Home/Index.cshtml inline styles
   ============================================================ */

:root {
    --gold: #C9A84C;
    --gold-light: #E2C97E;
    --gold-pale: #F5EDD6;
    --dark: #1C1C1E;
    --dark2: #2C2C2E;
    --mid: #6C6C70;
    --light: #F8F5F0;
    --white: #FFFFFF;
    --accent: #C9A84C;
    --red: #E53E3E;
    --success: #38A169;
    --border: rgba(201,168,76,0.2);
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans',sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

/* ─── ANNOUNCEMENT BAR ─── */
.announce-bar {
    background: var(--dark);
    color: var(--gold-light);
    text-align: center;
    padding: 10px;
    font-size: 13px;
    letter-spacing: 0.05em;
}

    .announce-bar span {
        color: var(--white);
    }

/* ─── HEADER ─── */
header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 72px;
}

.logo img {
    height: 52px;
    object-fit: contain;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

    nav a {
        font-size: 14px;
        font-weight: 500;
        color: var(--dark);
        text-decoration: none;
        letter-spacing: 0.02em;
        position: relative;
        padding-bottom: 4px;
        transition: color 0.3s;
    }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--gold);
            transition: width 0.3s;
        }

        nav a:hover {
            color: var(--gold);
        }

            nav a:hover::after {
                width: 100%;
            }

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

.btn-icon {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--dark);
    position: relative;
    transition: color 0.3s;
    padding: 6px;
}

    .btn-icon:hover {
        color: var(--gold);
    }

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 10px 22px;
    font-family: 'DM Sans',sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-primary:hover {
        background: var(--gold);
    }

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    font-family: 'DM Sans',sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

    .btn-gold:hover {
        background: var(--dark);
    }

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--dark);
    padding: 10px 22px;
    font-family: 'DM Sans',sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-outline:hover {
        background: var(--dark);
        color: var(--white);
    }

/* ─── HERO ─── */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
    overflow: hidden;
}

.hero-left {
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
    position: relative;
    overflow: hidden;
}

    .hero-left::before {
        content: '';
        position: absolute;
        top: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 70%);
        pointer-events: none;
    }

.hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .hero-eyebrow::before {
        content: '';
        width: 32px;
        height: 1px;
        background: var(--gold);
    }

.hero h1 {
    font-family: 'Playfair Display',serif;
    font-size: clamp(2.8rem,5vw,4.5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

    .hero h1 em {
        color: var(--gold);
        font-style: italic;
    }

.hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 2.5rem;
    font-family: 'Cormorant',serif;
    font-style: italic;
    font-size: 18px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-num {
    font-family: 'Playfair Display',serif;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 600;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

    .hero-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 8s ease;
    }

    .hero-right:hover img {
        transform: scale(1.04);
    }

.hero-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
}

.hero-badge-icon {
    font-size: 1.8rem;
}

.hero-badge-text {
    font-size: 12px;
    color: var(--mid);
}

    .hero-badge-text strong {
        display: block;
        font-size: 14px;
        color: var(--dark);
    }

/* ─── CATEGORIES ─── */
.section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-family: 'Playfair Display',serif;
    font-size: clamp(1.8rem,3.5vw,2.8rem);
    color: var(--dark);
    line-height: 1.2;
}

    .section-title em {
        color: var(--gold);
        font-style: italic;
    }

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.5rem;
}

.cat-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
    background: var(--dark2);
    transition: transform 0.4s ease;
}

    .cat-card:hover {
        transform: translateY(-6px);
    }

    .cat-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
        opacity: 0.85;
    }

    .cat-card:hover img {
        transform: scale(1.06);
        opacity: 1;
    }

.cat-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,28,30,0.85) 0%, transparent 60%);
}

.cat-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.cat-card-name {
    font-family: 'Playfair Display',serif;
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cat-card-count {
    font-size: 12px;
    color: var(--gold-light);
    letter-spacing: 0.1em;
}

.cat-card-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s;
}

.cat-card:hover .cat-card-arrow {
    opacity: 1;
    border-color: var(--gold);
    background: var(--gold);
}

/* ─── PRODUCTS ─── */
.products-section {
    background: var(--light);
    padding: 5rem 0;
}

.products-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.filter-bar {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    align-items: center;
}

.filter-btn {
    padding: 8px 20px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-family: 'DM Sans',sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    color: var(--mid);
}

    .filter-btn.active, .filter-btn:hover {
        border-color: var(--gold);
        background: var(--gold);
        color: var(--white);
    }

.filter-right {
    margin-left: auto;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.sort-select {
    padding: 8px 14px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-family: 'DM Sans',sans-serif;
    font-size: 13px;
    cursor: pointer;
    color: var(--dark);
    outline: none;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.5rem;
}

.product-card {
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid transparent;
}

    .product-card:hover {
        box-shadow: var(--shadow-lg);
        border-color: var(--border);
        transform: translateY(-4px);
    }

.product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--light);
}

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

.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
}

.product-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
}

.badge-new {
    background: var(--dark);
    color: var(--white);
}

.badge-sale {
    background: var(--red);
    color: var(--white);
}

.badge-hot {
    background: var(--gold);
    color: var(--white);
}

.product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-card:hover .product-actions {
    transform: translateY(0);
}

.product-actions button {
    flex: 1;
    padding: 11px 0;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans',sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-add-cart {
    background: var(--dark);
    color: var(--white);
}

    .btn-add-cart:hover {
        background: var(--gold);
    }

.btn-wishlist {
    background: var(--white);
    color: var(--dark);
    border-left: 1px solid var(--border) !important;
    flex: 0 0 44px;
    font-size: 16px;
}

.product-info {
    padding: 1rem 1.25rem 1.25rem;
}

.product-brand {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.product-name {
    font-family: 'Playfair Display',serif;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-meta {
    font-size: 12px;
    color: var(--mid);
    margin-bottom: 0.75rem;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-price {
    font-family: 'Playfair Display',serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
}

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

.product-stars {
    font-size: 12px;
    color: var(--gold);
    margin-left: auto;
}

/* ─── SHOP PHOTOS ─── */
.shop-strip {
    background: var(--dark);
    padding: 4rem 0;
    overflow: hidden;
}

.shop-strip-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.shop-photos-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.shop-photo {
    overflow: hidden;
    position: relative;
}

    .shop-photo.tall {
        grid-row: span 2;
    }

    .shop-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .shop-photo:hover img {
        transform: scale(1.04);
    }

/* ─── FEATURES STRIP ─── */
.features-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem;
    text-align: center;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
}

.feature-icon {
    font-size: 2rem;
}

.feature-title {
    font-weight: 600;
    font-size: 14px;
}

.feature-desc {
    font-size: 12px;
    color: var(--mid);
    line-height: 1.5;
}

/* ─── CART DRAWER ─── */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

    .cart-overlay.open {
        opacity: 1;
        pointer-events: all;
    }

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 100vw;
    background: var(--white);
    z-index: 501;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
    display: flex;
    flex-direction: column;
}

    .cart-drawer.open {
        transform: translateX(0);
    }

.cart-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-title {
    font-family: 'Playfair Display',serif;
    font-size: 1.3rem;
}

.cart-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--mid);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 2rem;
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--mid);
}

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

.cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    background: var(--light);
}

.cart-item-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.cart-item-meta {
    font-size: 12px;
    color: var(--mid);
}

.cart-item-price {
    font-family: 'Playfair Display',serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: 0.5rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.qty-btn {
    background: var(--light);
    border: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-val {
    font-size: 13px;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--mid);
    cursor: pointer;
    font-size: 16px;
    align-self: start;
    padding: 4px;
    transition: color 0.2s;
}

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

.cart-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cart-subtotal-label {
    font-size: 14px;
    color: var(--mid);
}

.cart-subtotal-amount {
    font-family: 'Playfair Display',serif;
    font-size: 1.4rem;
    font-weight: 600;
}

.cart-note {
    font-size: 12px;
    color: var(--mid);
    margin-bottom: 1.5rem;
}

.cart-checkout-btn {
    background: var(--dark);
    color: var(--white);
    border: none;
    width: 100%;
    padding: 16px;
    font-family: 'DM Sans',sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 0.75rem;
}

    .cart-checkout-btn:hover {
        background: var(--gold);
    }

.cart-continue {
    display: block;
    text-align: center;
    font-size: 13px;
    color: var(--mid);
    cursor: pointer;
    text-decoration: underline;
    margin-top: 0.5rem;
    background: none;
    border: none;
    width: 100%;
}

/* ─── CHECKOUT MODAL ─── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

    .modal-overlay.open {
        opacity: 1;
        pointer-events: all;
    }

.modal {
    background: var(--white);
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.3s;
}

.modal-overlay.open .modal {
    transform: scale(1);
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 2;
}

.modal-title {
    font-family: 'Playfair Display',serif;
    font-size: 1.4rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--mid);
}

.modal-body {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

    .form-group label {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--mid);
    }

    .form-group input, .form-group select, .form-group textarea {
        padding: 12px 14px;
        border: 1.5px solid var(--border);
        font-family: 'DM Sans',sans-serif;
        font-size: 14px;
        outline: none;
        transition: border-color 0.3s;
        color: var(--dark);
    }

        .form-group input:focus, .form-group select:focus {
            border-color: var(--gold);
        }

.form-section-title {
    font-family: 'Playfair Display',serif;
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.order-summary {
    background: var(--light);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 0.5rem;
}

    .order-summary-row.total {
        font-family: 'Playfair Display',serif;
        font-size: 1.1rem;
        font-weight: 600;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid var(--border);
    }

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.payment-option {
    border: 1.5px solid var(--border);
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

    .payment-option.selected {
        border-color: var(--gold);
        background: var(--gold-pale);
    }

.payment-option-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.payment-option-label {
    font-size: 12px;
    font-weight: 600;
}

/* ─── ADMIN PANEL ─── */
.admin-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 700;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

    .admin-overlay.open {
        opacity: 1;
        pointer-events: all;
    }

.admin-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 700px;
    max-width: 100vw;
    background: var(--white);
    z-index: 701;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

    .admin-panel.open {
        transform: translateX(0);
    }

.admin-header {
    padding: 1.5rem 2rem;
    background: var(--dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-title {
    font-family: 'Playfair Display',serif;
    font-size: 1.3rem;
    color: var(--gold-light);
}

.admin-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
}

.admin-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    background: var(--light);
}

.admin-tab {
    padding: 1rem 1.5rem;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    color: var(--mid);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: 'DM Sans',sans-serif;
}

    .admin-tab.active {
        color: var(--gold);
        border-bottom-color: var(--gold);
    }

.admin-content {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.admin-section {
    display: none;
}

    .admin-section.active {
        display: block;
    }

.admin-product-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-product-item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--border);
    background: var(--light);
}

.admin-product-img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.admin-product-name {
    font-weight: 600;
    font-size: 14px;
}

.admin-product-meta {
    font-size: 12px;
    color: var(--mid);
}

.admin-product-price {
    font-family: 'Playfair Display',serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
}

.admin-product-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-edit {
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 6px 14px;
    font-size: 12px;
    cursor: pointer;
    font-family: 'DM Sans',sans-serif;
}

.btn-delete {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 6px 14px;
    font-size: 12px;
    cursor: pointer;
    font-family: 'DM Sans',sans-serif;
}

.add-product-form {
    background: var(--light);
    padding: 1.5rem;
}

    .add-product-form h3 {
        font-family: 'Playfair Display',serif;
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

.admin-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.img-upload-area {
    border: 2px dashed var(--border);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    grid-column: span 2;
}

    .img-upload-area:hover {
        border-color: var(--gold);
        background: var(--gold-pale);
    }

    .img-upload-area input {
        display: none;
    }

.img-preview {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

    .img-preview img {
        width: 60px;
        height: 60px;
        object-fit: cover;
    }

/* ─── TOAST ─── */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--dark);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 14px;
    z-index: 900;
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 280px;
    box-shadow: var(--shadow-lg);
}

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

.toast-icon {
    font-size: 1.2rem;
}

/* ─── FOOTER ─── */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
}

.footer-brand img {
    height: 48px;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

    .social-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

.footer-col h4 {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

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

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

    .footer-col a:hover {
        color: var(--gold);
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}


.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

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

    .hero-right {
        height: 50vh;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

    .cat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .features-inner {
        grid-template-columns: 1fr 1fr;
    }

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

    .shop-photos-grid {
        grid-template-columns: 1fr 1fr;
    }

    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 640px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .cat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .cart-drawer {
        width: 100vw;
    }

    .admin-panel {
        width: 100vw;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}
