/* ================================================
   NUVAI - Premium Men & Women Fashion
   Design: Editorial Luxury / Warm Modernism
   ================================================ */

:root {
    --ink: #0a0a0a;
    --charcoal: #1c1c1e;
    --slate: #3a3a3c;
    --pewter: #6e6e73;
    --silver: #aeaeb2;
    --pearl: #e5e5ea;
    --ivory: #f5f3ef;
    --cream: #faf8f5;
    --white: #ffffff;
    --gold: #b8860b;
    --warm: #c4956a;
    --rose: #8b5e5e;
    --success: #2d6a4f;
    --error: #9b2226;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
    
    --header-height: 70px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; width: 100%; max-width: 100vw; }
body { font-family: var(--font-body); color: var(--charcoal); background: var(--cream); line-height: 1.6; font-size: 15px; overflow-x: hidden; width: 100%; max-width: 100%; position: relative; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; box-sizing: border-box; max-width: 100%; }

/* Announcement Bar */
.announcement-bar {
    background: var(--ink);
    color: var(--pearl);
    text-align: center;
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--ink);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.main-nav {
    display: flex;
    gap: 36px;
}

.main-nav a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--slate);
    transition: var(--transition-fast);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--ink);
    transition: var(--transition);
}

.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { width: 100%; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icon {
    color: var(--slate);
    transition: var(--transition-fast);
    position: relative;
}

.header-icon:hover { color: var(--ink); }

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.mobile-menu-btn span {
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.5);
}

.mobile-overlay.active { display: block; }

.mobile-menu {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 320px;
    background: var(--cream);
    padding: 30px;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-close {
    font-size: 28px;
    color: var(--ink);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav a {
    font-size: 18px;
    font-family: var(--font-display);
    letter-spacing: 2px;
    color: var(--charcoal);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    overflow: hidden;
}

.hero-split {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-split:hover { flex: 1.15; }

.hero-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-split:hover img { transform: scale(1.05); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.65) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 50px;
}

.hero-label {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 14px 32px;
    transition: var(--transition);
    width: fit-content;
}

.hero-cta:hover {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}

/* Section Styles */
.section { padding: 100px 40px; }
.section-center { text-align: center; }
.section-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--pewter);
    margin-bottom: 12px;
}
.section-heading {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 20px;
    line-height: 1.2;
}
.section-sub {
    color: var(--pewter);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.product-card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--ivory);
}

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

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

.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--ink);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
}

.product-card-info {
    padding: 20px;
}

.product-card-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-card-price .current {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
}

.product-card-price .original {
    font-size: 13px;
    color: var(--silver);
    text-decoration: line-through;
}

.product-card-price .discount {
    font-size: 11px;
    font-weight: 600;
    color: var(--success);
    letter-spacing: 0.5px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 40px;
    border: 1px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--ink);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

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

.btn-white {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}

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

.btn-full { width: 100%; }

/* Collection Banner */
.collection-banner {
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
}

.collection-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.collection-banner-content {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 40px;
}

.collection-banner-content h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 16px;
}

.collection-banner-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 2px;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--pearl);
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.filter-bar select {
    padding: 10px 20px;
    border: 1px solid var(--pearl);
    background: var(--white);
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--charcoal);
}

.result-count {
    font-size: 13px;
    color: var(--pewter);
}

/* Product Detail */
.product-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-gallery { display: flex; flex-direction: column; gap: 12px; }

.product-gallery-main {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--ivory);
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.product-gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.product-gallery-thumbs img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.product-gallery-thumbs img.active,
.product-gallery-thumbs img:hover {
    opacity: 1;
    border-color: var(--ink);
}

.product-info { padding: 20px 0; }

.product-info h1 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 16px;
    line-height: 1.3;
}

.product-price-block {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 24px;
}

.product-price-block .price {
    font-size: 28px;
    font-weight: 600;
    color: var(--ink);
}

.product-price-block .compare {
    font-size: 18px;
    color: var(--silver);
    text-decoration: line-through;
}

.product-price-block .save {
    font-size: 13px;
    font-weight: 600;
    color: var(--success);
    background: rgba(45, 106, 79, 0.08);
    padding: 4px 12px;
    border-radius: 2px;
}

.gst-note {
    font-size: 12px;
    color: var(--pewter);
    margin-bottom: 30px;
}

.variant-selector {
    margin-bottom: 30px;
}

.variant-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variant-options button {
    padding: 10px 20px;
    border: 1px solid var(--pearl);
    font-size: 13px;
    font-weight: 500;
    color: var(--charcoal);
    transition: var(--transition-fast);
    background: var(--white);
}

.variant-options button:hover,
.variant-options button.selected {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--pearl);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.quantity-selector span {
    font-size: 16px;
    font-weight: 500;
    min-width: 30px;
    text-align: center;
}

.add-to-cart-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.trust-indicators {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid var(--pearl);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--pewter);
}

.trust-item svg { flex-shrink: 0; }

/* Cart Page */
.cart-page { padding: 60px 40px; max-width: 1200px; margin: 0 auto; min-height: 50vh; }

.cart-header { text-align: center; margin-bottom: 50px; }

.cart-header h1 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 300;
    color: var(--ink);
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--pearl);
}

.cart-item-image {
    width: 100px;
    height: 130px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--ivory);
}

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

.cart-item-info { flex: 1; }
.cart-item-title { font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.cart-item-variant { font-size: 12px; color: var(--pewter); margin-bottom: 10px; }
.cart-item-price { font-weight: 600; }

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

.cart-item-qty button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--pearl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: var(--white);
}

.cart-item-remove {
    font-size: 12px;
    color: var(--error);
    margin-top: 8px;
    cursor: pointer;
}

.cart-summary {
    background: var(--white);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--pearl);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
}

.cart-summary-row.total {
    font-size: 18px;
    font-weight: 600;
    padding-top: 16px;
    margin-top: 8px;
    border-top: 1px solid var(--ink);
}

.cart-empty {
    text-align: center;
    padding: 80px 20px;
}

.cart-empty h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 16px;
}

/* Checkout Page */
.checkout-page { padding: 60px 40px; min-height: 60vh; background: var(--cream); }
.checkout-container { max-width: 1200px; margin: 0 auto; }

.checkout-header {
    text-align: center;
    margin-bottom: 50px;
}

.checkout-header h1 {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--ink);
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: start;
}

.checkout-form { background: var(--white); padding: 40px; }

.checkout-section-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--pearl);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: span 2; }

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-group label .req { color: var(--error); }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--pearl);
    font-size: 14px;
    transition: var(--transition-fast);
    background: var(--white);
    border-radius: 0;
    -webkit-appearance: none;
}

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

.form-group input.error { border-color: var(--error); background: #fff5f5; }
.form-group input.valid { border-color: var(--success); }

.field-error {
    color: var(--error);
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.field-error.show { display: block; }

.pincode-status { font-size: 12px; margin-top: 4px; }
.pincode-status.checking { color: var(--pewter); }
.pincode-status.success { color: var(--success); }
.pincode-status.error { color: var(--error); }

.payment-options { display: flex; flex-direction: column; gap: 12px; }

.payment-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 1px solid var(--pearl);
    cursor: pointer;
    transition: var(--transition-fast);
}

.payment-option:hover,
.payment-option.selected { border-color: var(--ink); }

.payment-option input { accent-color: var(--ink); }
.payment-option span { font-size: 14px; font-weight: 500; }
.payment-option small { font-size: 11px; color: var(--pewter); margin-left: auto; }

.order-summary {
    background: var(--white);
    padding: 30px;
    position: sticky;
    top: 100px;
}

/* Payment Page */
.payment-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.payment-card {
    background: var(--white);
    padding: 50px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.payment-card h2 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 10px;
}

.payment-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--ink);
    margin: 20px 0;
}

.payment-qr { margin: 30px auto; max-width: 250px; }
.payment-qr img { width: 100%; border: 1px solid var(--pearl); }

.payment-timer {
    font-size: 14px;
    color: var(--pewter);
    margin: 20px 0;
}

/* Content Pages */
.content-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.content-page h1 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 12px;
}

.content-page .updated {
    font-size: 13px;
    color: var(--pewter);
    margin-bottom: 40px;
}

.content-page h2 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--ink);
    margin: 40px 0 16px;
}

.content-page h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 24px 0 10px;
}

.content-page p { margin-bottom: 16px; color: var(--slate); }
.content-page ul, .content-page ol { margin: 0 0 16px 24px; color: var(--slate); }
.content-page li { margin-bottom: 8px; }

/* Track Order */
.track-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.track-section h1 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 16px;
}

.track-form {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.track-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--pearl);
    font-size: 14px;
}

.track-result {
    margin-top: 40px;
    text-align: left;
    background: var(--white);
    padding: 30px;
    display: none;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.contact-info h1 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 24px;
}

.contact-detail {
    margin-bottom: 24px;
}

.contact-detail h3 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pewter);
    margin-bottom: 6px;
}

.contact-form { background: var(--white); padding: 40px; }

/* Footer */
.site-footer {
    background: var(--ink);
    color: var(--silver);
    padding: 80px 40px 40px;
}

.footer-inner { max-width: 1400px; margin: 0 auto; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.footer-gstin { font-size: 12px; color: var(--pewter); }

.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--silver);
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-entity {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.8;
}

.footer-entity a { color: var(--warm); }

.footer-copy {
    font-size: 12px;
    color: var(--pewter);
    margin-top: 16px;
}

/* Loading */
.ajax-loading {
    text-align: center;
    padding: 40px;
    color: var(--pewter);
}

.spinner {
    width: 30px;
    height: 30px;
    border: 2px solid var(--pearl);
    border-top-color: var(--ink);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 12px;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--ink);
    color: var(--white);
    padding: 16px 24px;
    font-size: 14px;
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
}

.toast.show { transform: translateY(0); opacity: 1; }

/* Hero Description */
.hero-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

/* Marquee Banner */
.marquee-bar {
    background: var(--ink);
    color: var(--pearl);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    gap: 32px;
    animation: marqueeScroll 30s linear infinite;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* About Home Section */
.about-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-home-content .section-label {
    display: block;
    margin-bottom: 16px;
}

.about-home-image {
    position: relative;
}

.about-home-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: top center;
}

.about-home-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--gold);
    z-index: -1;
}

/* Category Teasers */
.category-teasers {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.category-teaser {
    position: relative;
    overflow: hidden;
    display: block;
    min-height: 450px;
}

.category-teaser img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    position: absolute;
    inset: 0;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-teaser:hover img {
    transform: scale(1.06);
}

.category-teaser-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 60px;
    background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 100%);
    color: var(--white);
}

.category-teaser-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}

.category-teaser-content h3 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 300;
    margin-bottom: 14px;
}

.category-teaser-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
}

.category-teaser-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    transition: var(--transition);
}

.category-teaser:hover .category-teaser-link {
    border-bottom-color: var(--white);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border: 1px solid var(--pearl);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--pewter);
    line-height: 1.8;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 40px auto 0;
    text-align: left;
}

.review-card {
    background: var(--cream);
    padding: 36px;
    border: 1px solid var(--pearl);
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
}

.review-name {
    font-weight: 500;
    font-size: 14px;
    color: var(--charcoal);
}

.review-location {
    font-size: 12px;
    color: var(--pewter);
    margin-top: 2px;
}

/* Promise Section */
.promise-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.promise-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.stat-item {
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    transition: var(--transition);
}

.stat-item:hover {
    border-color: var(--gold);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 8px;
    color: var(--gold);
}

.stat-desc {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--silver);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-section { flex-direction: column; min-height: auto; }
    .hero-split { min-height: 60vh; }
    .hero-split img { position: absolute; inset: 0; }
    .hero-split:hover { flex: 1; }
    .product-detail { grid-template-columns: 1fr; gap: 30px; }
    .checkout-layout { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-home { grid-template-columns: 1fr; gap: 40px; }
    .about-home-image { order: -1; }
    .about-home-image img { height: 400px; }
    .about-home-image::after { display: none; }
    .about-home-content h2 { text-align: center !important; }
    .about-home-content { text-align: center; }
    .about-home-content .btn { margin: 0 auto; }
    .category-teasers { grid-template-columns: 1fr; }
    .category-teaser { min-height: 350px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .promise-section { grid-template-columns: 1fr; gap: 50px; text-align: center; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .mobile-menu-btn { display: flex; }
    .logo { font-size: 24px; letter-spacing: 5px; }
    .header-inner { padding: 0 20px; }
    .section { padding: 60px 20px; }
    .hero-overlay { padding: 30px 24px; }
    .hero-desc { font-size: 13px; margin-bottom: 20px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-card-info { padding: 12px; }
    .product-card-title { font-size: 13px; }
    .product-detail { padding: 20px; }
    .cart-page { padding: 30px 20px; }
    .checkout-page { padding: 30px 16px; }
    .checkout-form { padding: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .site-footer { padding: 40px 16px 30px; }
    .content-page { padding: 40px 20px; }
    .track-form { flex-direction: column; }
    .add-to-cart-actions { flex-direction: column; }
    .features-grid { grid-template-columns: 1fr; gap: 20px; }
    .feature-card { padding: 28px 20px; }
    .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
    .review-card { padding: 28px; }
    .category-teaser { min-height: 280px; }
    .category-teaser-content { padding: 30px; }
    .category-teaser-content h3 { font-size: 26px; }
    .promise-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-item { padding: 20px 16px; }
    .stat-number { font-size: 22px; }
}
