/* ============================================
   eShop — Premium Fashion eCommerce
   Inspired by Jelwo / High-end Shopify Themes
   Minimal · Bold · Elegant
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    transition: background 0.4s ease, color 0.4s ease;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
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; }
ul, ol { list-style: none; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 40px; }
.container-lg { max-width: 1600px; margin: 0 auto; padding: 0 40px; }

/* ---- Utility ---- */
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-error { color: var(--error); }
.text-muted { color: var(--text-light); }
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; letter-spacing: 0.12em; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

/* ---- Flash Message ---- */
.flash-message {
    position: fixed; top: 0; left: 0; right: 0; z-index: 10000;
    padding: 14px 0; animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.flash-message .container { display: flex; align-items: center; gap: 10px; }
.flash-success { background: #1a1a1a; color: #fff; }
.flash-error { background: var(--error); color: #fff; }
.flash-close { color: #fff; font-size: 18px; margin-left: auto; opacity: 0.7; }
.flash-close:hover { opacity: 1; }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* ---- Announcement Bar / Marquee ---- */
.announcement-bar {
    background: #1a1a1a;
    color: #fff;
    padding: 10px 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    overflow: hidden;
}
.announcement-bar .container { display: flex; align-items: center; justify-content: center; gap: 8px; }
.announcement-bar p { display: flex; align-items: center; gap: 8px; }
.announcement-close { color: #fff; font-size: 16px; position: absolute; right: 40px; opacity: 0.5; }
.announcement-close:hover { opacity: 1; }

/* Marquee Effect */
.marquee-wrapper {
    overflow: hidden; white-space: nowrap;
    background: #1a1a1a; color: #fff;
    padding: 12px 0;
    font-size: 13px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.2em;
}
.marquee-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}
.marquee-track span {
    display: inline-block; padding: 0 40px;
}
.marquee-sep { opacity: 0.3; margin: 0 20px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================
   NAVBAR — Minimal Luxury
   ============================================ */
.navbar {
    position: sticky; top: 0; z-index: 1000;
    background: var(--bg);
    transition: all 0.4s ease;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}
[data-theme="dark"] .navbar.scrolled {
    background: rgba(15,23,42,0.95);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.navbar-left { display: flex; align-items: center; gap: 8px; flex: 1; }
.navbar-center { flex: 1; display: flex; justify-content: center; }
.navbar-right { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 4px; }

/* Logo */
.navbar-logo { display: flex; align-items: center; }
.logo-text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}
.logo-text:hover { opacity: 0.7; }

/* Nav Links */
.navbar-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
    padding: 8px 14px;
    font-weight: 400;
    font-size: 14px;
    color: var(--text);
    display: flex; align-items: center; gap: 4px;
    position: relative;
    letter-spacing: 0.01em;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
    height: 1px; background: var(--text);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.nav-link:hover { color: var(--text); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu,
.nav-dropdown .dropdown-mega {
    position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    opacity: 0; visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 8px 0;
    min-width: 220px;
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:hover .dropdown-mega {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown-right { left: auto; right: 0; transform: translateY(8px); }
.nav-dropdown:hover .dropdown-right { transform: translateY(0); }

/* Mega Menu */
.dropdown-mega {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px; padding: 32px; min-width: 560px;
}
.mega-col h4 {
    font-size: 11px; font-weight: 600; margin-bottom: 14px;
    text-transform: uppercase; letter-spacing: 0.15em; color: var(--text);
}
.mega-col h4 a:hover { opacity: 0.6; }
.mega-col ul li a {
    display: block; padding: 5px 0; font-size: 14px; color: var(--text-light);
    transition: all 0.2s;
}
.mega-col ul li a:hover { color: var(--text); transform: translateX(4px); }

/* Dropdown Items */
.dropdown-header { padding: 12px 20px; }
.dropdown-header strong { display: block; font-size: 14px; }
.dropdown-header small { color: var(--text-light); font-size: 12px; }
.dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }
.dropdown-item {
    display: flex; align-items: center; gap: 10px; padding: 10px 20px;
    font-size: 14px; width: 100%; text-align: left; color: var(--text);
    transition: all 0.2s;
}
.dropdown-item:hover { background: var(--bg-alt); }
.dropdown-item-danger { color: var(--error); }

/* Nav Action Buttons */
.navbar-actions { display: flex; align-items: center; gap: 2px; }
.nav-action-btn {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    color: var(--text);
    position: relative;
    transition: all 0.3s ease;
}
.nav-action-btn:hover { opacity: 0.6; }
.action-badge {
    position: absolute; top: 4px; right: 4px;
    background: var(--text);
    color: var(--bg);
    font-size: 9px; font-weight: 700;
    min-width: 16px; height: 16px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
}
.mobile-toggle { display: none; }

/* Search Overlay */
.search-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(255,255,255,0.98);
    display: none;
    animation: fadeIn 0.3s ease;
}
[data-theme="dark"] .search-overlay { background: rgba(15,23,42,0.98); }
.search-overlay.active { display: flex; align-items: flex-start; justify-content: center; padding-top: 20vh; }
.search-form {
    display: flex; align-items: center; gap: 16px;
    border-bottom: 2px solid var(--text);
    padding: 8px 0;
    width: 100%; max-width: 600px;
}
.search-icon { font-size: 22px; color: var(--text); }
.search-form input {
    flex: 1; border: none; background: none; padding: 12px 0;
    font-size: 24px; font-weight: 300; color: var(--text); outline: none;
    letter-spacing: -0.01em;
}
.search-form input::placeholder { color: var(--text-lighter); }
.search-close { font-size: 24px; color: var(--text); padding: 4px; }
.search-suggestions { margin-top: 20px; max-width: 600px; width: 100%; }
.search-suggestions.active { display: block; }
.search-suggestion-item {
    display: flex; align-items: center; gap: 16px; padding: 12px 0;
    border-bottom: 1px solid var(--border); cursor: pointer; transition: opacity 0.2s;
}
.search-suggestion-item:hover { opacity: 0.6; }
.search-suggestion-item img { width: 48px; height: 64px; object-fit: cover; }
.search-suggestion-item .suggest-info { flex: 1; }
.search-suggestion-item .suggest-name { font-size: 14px; font-weight: 500; }
.search-suggestion-item .suggest-price { font-size: 13px; color: var(--text-light); margin-top: 2px; }

/* Mobile Nav */
.mobile-nav-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.4);
    display: none;
}
.mobile-nav-overlay.active { display: block; }
.mobile-nav {
    position: absolute; left: 0; top: 0; bottom: 0; width: 320px;
    background: var(--bg-card);
    padding: 32px;
    animation: slideRight 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}
@keyframes slideRight { from { transform: translateX(-100%); } to { transform: translateX(0); } }
.mobile-nav-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.mobile-nav-header button { font-size: 24px; color: var(--text); }
.mobile-nav-links a {
    display: block; padding: 14px 0; font-size: 16px; font-weight: 400;
    border-bottom: 1px solid var(--border); color: var(--text);
    letter-spacing: 0.01em;
}
.mobile-nav-links a:hover { opacity: 0.6; }
.mobile-nav-divider { height: 1px; background: var(--border); margin: 8px 0; }

/* ============================================
   HERO SECTION — Full Impact
   ============================================ */
.hero-section { position: relative; overflow: hidden; }
.hero-slider { width: 100%; }
.hero-slide {
    position: relative; height: 85vh; min-height: 500px; max-height: 800px;
    display: flex; align-items: center;
    background-size: cover; background-position: center;
    overflow: hidden;
}
.hero-slide::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}
.hero-content {
    position: relative; z-index: 2; color: #fff;
    max-width: 640px; padding: 0 80px;
}
.hero-badge {
    display: inline-block;
    font-size: 11px; font-weight: 500;
    padding: 6px 16px; border-radius: 0;
    margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.2em;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
}
.hero-title {
    font-size: 60px; font-weight: 300; line-height: 1.05;
    margin-bottom: 20px; letter-spacing: -0.03em;
}
.hero-title strong { font-weight: 700; }
.hero-subtitle { font-size: 16px; opacity: 0.8; margin-bottom: 32px; line-height: 1.7; font-weight: 300; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero placeholder when no banners */
.hero-placeholder {
    height: 85vh; min-height: 500px; max-height: 800px;
    background: #1a1a1a;
    display: flex; align-items: center; justify-content: center;
    color: #fff; text-align: center;
}
.hero-placeholder-content { max-width: 700px; padding: 40px; }
.hero-placeholder h1 {
    font-size: 64px; font-weight: 300; margin-bottom: 20px;
    letter-spacing: -0.03em; line-height: 1.05;
}
.hero-placeholder p { font-size: 16px; opacity: 0.6; margin-bottom: 36px; font-weight: 300; }

/* Swiper overrides */
.hero-section .swiper-pagination { bottom: 32px; }
.hero-section .swiper-pagination-bullet {
    width: 8px; height: 8px; background: #fff; opacity: 0.4;
    border-radius: 50%; transition: all 0.4s ease;
}
.hero-section .swiper-pagination-bullet-active { opacity: 1; width: 32px; border-radius: 4px; }

/* ============================================
   BUTTONS — Minimal & Bold
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; font-size: 13px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
    background: #1a1a1a; color: #fff; border: none;
}
.btn-primary:hover { background: #333; }
[data-theme="dark"] .btn-primary { background: #fff; color: #1a1a1a; }
[data-theme="dark"] .btn-primary:hover { background: #e5e5e5; }

.btn-outline {
    background: transparent;
    border: 1px solid var(--text);
    color: var(--text);
}
.btn-outline:hover { background: var(--text); color: var(--bg); }

.btn-white { background: #fff; color: #1a1a1a; border: none; }
.btn-white:hover { background: #f5f5f5; }

.btn-underline {
    background: none; border: none; padding: 0;
    font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--text);
    border-bottom: 1px solid var(--text);
    padding-bottom: 2px;
}
.btn-underline:hover { opacity: 0.6; }

.btn-sm { padding: 10px 24px; font-size: 12px; }
.btn-lg { padding: 18px 42px; font-size: 14px; }
.btn-icon { padding: 10px; width: 42px; height: 42px; }
.btn-block { width: 100%; }

/* ============================================
   SECTION LAYOUT
   ============================================ */
.section { padding: 40px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: #1a1a1a; color: #fff; }

.section-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 40px;
}
.section-title {
    font-size: 36px; font-weight: 300; color: var(--text);
    letter-spacing: -0.02em; line-height: 1.2;
}
.section-title strong { font-weight: 600; }
.section-subtitle {
    font-size: 13px; color: var(--text-light);
    text-transform: uppercase; letter-spacing: 0.15em;
    margin-bottom: 8px; font-weight: 500;
}
.section-link {
    font-size: 12px; font-weight: 500; color: var(--text);
    text-transform: uppercase; letter-spacing: 0.1em;
    display: flex; align-items: center; gap: 6px;
    border-bottom: 1px solid var(--text);
    padding-bottom: 2px;
    white-space: nowrap;
}
.section-link:hover { opacity: 0.6; }

/* ============================================
   CATEGORY CARDS — Elegant Grid
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.category-card {
    position: relative; overflow: hidden;
    aspect-ratio: 3/4;
    background: #f5f5f5; cursor: pointer;
}
.category-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    display: flex; align-items: flex-end; padding: 20px;
    transition: background 0.4s;
}
.category-card:hover .category-card-overlay { background: rgba(0,0,0,0.25); }
.category-card-name {
    color: #fff; font-size: 15px; font-weight: 500;
    letter-spacing: 0.02em;
}
.category-card-count {
    color: rgba(255,255,255,0.7); font-size: 12px;
    margin-top: 2px;
}

/* Horizontal Scroll Categories */
.categories-scroll {
    display: flex; gap: 16px; overflow-x: auto;
    padding-bottom: 10px; scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.categories-scroll::-webkit-scrollbar { display: none; }
.categories-scroll .category-card {
    flex-shrink: 0; width: 200px; scroll-snap-align: start;
}

/* Circle Categories (Alternative) */
.category-circle {
    text-align: center; flex-shrink: 0;
    width: 110px; cursor: pointer;
}
.category-circle-img {
    width: 90px; height: 90px; margin: 0 auto 10px;
    border-radius: 50%; overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}
.category-circle:hover .category-circle-img {
    border-color: var(--text);
    transform: scale(1.05);
}
.category-circle-img img { width: 100%; height: 100%; object-fit: cover; }
.category-circle-img i {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: var(--text); background: var(--bg-alt);
}
.category-circle-name {
    font-size: 12px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--text);
}

/* ============================================
   PRODUCT CARD — Clean & Minimal
   ============================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    position: relative;
}

.product-card-image {
    position: relative; overflow: hidden;
    aspect-ratio: 3/4;
    background: #f5f5f5;
    margin-bottom: 14px;
}
.product-card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.product-card:hover .product-card-image img { transform: scale(1.04); }

/* Badges */
.product-badges {
    position: absolute; top: 12px; left: 12px;
    display: flex; flex-direction: column; gap: 6px; z-index: 2;
}
.badge {
    display: inline-block; padding: 4px 10px;
    font-size: 10px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
}
.badge-sale { background: #1a1a1a; color: #fff; }
.badge-new { background: var(--bg); color: var(--text); border: 1px solid var(--border); }
.badge-hot { background: var(--accent); color: #fff; }

/* Quick Actions — Slide up from bottom */
.product-actions {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 12px;
    display: flex; justify-content: center; gap: 8px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}
.product-card:hover .product-actions { transform: translateY(0); }
.product-action-btn {
    width: 40px; height: 40px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; color: #1a1a1a;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.product-action-btn:hover { background: #1a1a1a; color: #fff; }
.product-action-btn.wishlisted { color: var(--error); }

/* Quick Add Button */
.quick-add-btn {
    position: absolute; bottom: 12px; left: 12px; right: 12px;
    padding: 12px;
    background: rgba(255,255,255,0.95);
    color: #1a1a1a;
    font-size: 12px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.1em;
    text-align: center;
    transform: translateY(120%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    backdrop-filter: blur(4px);
}
.product-card:hover .quick-add-btn { transform: translateY(0); }
.quick-add-btn:hover { background: #1a1a1a; color: #fff; }

/* Wishlist top-right */
.product-wishlist-btn {
    position: absolute; top: 12px; right: 12px; z-index: 2;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; color: #1a1a1a;
    opacity: 0;
    transition: all 0.3s ease;
}
.product-card:hover .product-wishlist-btn { opacity: 1; }
.product-wishlist-btn:hover { background: #1a1a1a; color: #fff; }
.product-wishlist-btn.wishlisted { opacity: 1; color: var(--error); }

/* Card Body */
.product-card-body { padding: 0; }
.product-card-category {
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--text-lighter); margin-bottom: 4px; font-weight: 500;
}
.product-card-title {
    font-size: 14px; font-weight: 400; color: var(--text);
    margin-bottom: 6px;
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical;
    overflow: hidden; line-height: 1.4;
}
.product-card-title a:hover { opacity: 0.6; }

.product-card-price { display: flex; align-items: center; gap: 8px; }
.price-current { font-size: 14px; font-weight: 500; color: var(--text); }
.price-original {
    font-size: 13px; color: var(--text-lighter);
    text-decoration: line-through;
}
.price-discount { font-size: 11px; font-weight: 600; color: var(--error); }

.product-card-footer { padding: 0; margin-top: 10px; }
.add-to-cart-btn {
    width: 100%; padding: 12px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.1em;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    transition: all 0.3s ease;
}
.add-to-cart-btn:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
[data-theme="dark"] .add-to-cart-btn:hover { background: #fff; color: #1a1a1a; }

/* ============================================
   DEALS / COUNTDOWN
   ============================================ */
.deals-header {
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.countdown { display: flex; gap: 6px; align-items: center; }
.countdown-box {
    background: #1a1a1a; color: #fff;
    padding: 6px 10px;
    font-size: 14px; font-weight: 600;
    min-width: 40px; text-align: center;
    font-variant-numeric: tabular-nums;
}
.countdown-sep { font-weight: 600; font-size: 16px; color: var(--text-light); }

/* ============================================
   FEATURES STRIP — Minimal
   ============================================ */
.features-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0;
}
.feature-card {
    text-align: center; padding: 40px 20px;
    border-right: 1px solid var(--border);
}
.feature-card:last-child { border-right: none; }
.feature-icon {
    font-size: 24px; color: var(--text); margin-bottom: 14px;
    display: block;
}
.feature-title { font-size: 13px; font-weight: 600; margin-bottom: 4px; letter-spacing: 0.02em; }
.feature-desc { font-size: 12px; color: var(--text-light); }

/* ============================================
   PROMO BANNERS — Full Bleed
   ============================================ */
.promo-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4px;
}
.promo-card {
    position: relative; overflow: hidden;
    height: 400px;
    display: flex; align-items: center;
    cursor: pointer;
}
.promo-card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.promo-card:hover img { transform: scale(1.04); }
.promo-card::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
    transition: background 0.4s;
}
.promo-card:hover::before { background: rgba(0,0,0,0.2); }
.promo-card-content {
    position: relative; z-index: 2; color: #fff;
    padding: 48px;
}
.promo-card h3 {
    font-size: 32px; font-weight: 300; margin-bottom: 12px;
    letter-spacing: -0.02em; line-height: 1.2;
}
.promo-card p { font-size: 14px; opacity: 0.8; margin-bottom: 24px; font-weight: 300; }

/* Single wide promo */
.promo-wide {
    position: relative; overflow: hidden;
    height: 450px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: #fff;
    background: #1a1a1a;
}
.promo-wide img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.6;
}
.promo-wide-content { position: relative; z-index: 2; max-width: 600px; padding: 40px; }
.promo-wide h2 { font-size: 48px; font-weight: 300; letter-spacing: -0.02em; margin-bottom: 16px; }
.promo-wide p { font-size: 16px; opacity: 0.7; margin-bottom: 32px; font-weight: 300; }

/* ============================================
   PRODUCT SCROLL (Horizontal)
   ============================================ */
.product-scroll-wrapper { position: relative; }
.product-scroll {
    display: flex; gap: 20px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    scrollbar-width: none;
}
.product-scroll::-webkit-scrollbar { display: none; }
.product-scroll .product-card { min-width: 280px; flex-shrink: 0; scroll-snap-align: start; }

/* ============================================
   NEWSLETTER
   ============================================ */
.footer-newsletter {
    background: #1a1a1a;
    padding: 64px 0;
    color: #fff;
}
[data-theme="dark"] .footer-newsletter { background: #0a0a0a; }
.newsletter-inner {
    display: flex; align-items: center;
    justify-content: space-between; gap: 40px;
}
.newsletter-text h3 {
    font-size: 28px; font-weight: 300;
    letter-spacing: -0.02em; margin-bottom: 6px;
}
.newsletter-text p { font-size: 14px; opacity: 0.5; font-weight: 300; }
.newsletter-form {
    display: flex; gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
}
.newsletter-form input {
    border: none; background: none; color: #fff;
    padding: 12px 0; font-size: 14px; outline: none;
    min-width: 280px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
    background: none; color: #fff;
    padding: 12px 0;
    font-weight: 500; font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.1em;
    display: flex; align-items: center; gap: 6px;
    transition: opacity 0.3s;
    white-space: nowrap;
}
.newsletter-form button:hover { opacity: 0.6; }

/* ============================================
   FOOTER — Clean & Elegant
   ============================================ */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); }
.footer-top { padding: 64px 0 48px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
}
.footer-logo { display: inline-block; margin-bottom: 20px; }
.footer-about { font-size: 14px; color: var(--text-light); line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 38px; height: 38px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; color: var(--text);
    transition: all 0.3s;
}
.footer-social a:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

.footer-col h4 {
    font-size: 11px; font-weight: 600; margin-bottom: 24px;
    text-transform: uppercase; letter-spacing: 0.15em;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    font-size: 14px; color: var(--text-light);
    transition: all 0.2s;
}
.footer-col ul li a:hover { color: var(--text); }
.footer-contact li {
    display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-light);
}
.footer-contact li i { color: var(--text); font-size: 16px; margin-top: 3px; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
}
.footer-bottom .container {
    display: flex; align-items: center;
    justify-content: space-between;
}
.footer-bottom p { font-size: 12px; color: var(--text-light); }
.footer-payments {
    display: flex; align-items: center; gap: 12px;
    font-size: 12px; color: var(--text-light);
}
.footer-payments i { font-size: 22px; }
.payment-text {
    background: var(--bg); padding: 2px 8px;
    border: 1px solid var(--border);
    font-size: 10px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.05em;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed; bottom: 32px; right: 32px;
    width: 44px; height: 44px;
    background: #1a1a1a; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    opacity: 0; visibility: hidden;
    transform: translateY(16px);
    transition: all 0.4s ease;
    z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: #333; }

/* ============================================
   FORMS — Minimal
   ============================================ */
.form-group { margin-bottom: 20px; }
.form-label {
    display: block; font-size: 12px; font-weight: 500;
    margin-bottom: 8px; color: var(--text);
    text-transform: uppercase; letter-spacing: 0.08em;
}
.form-input {
    width: 100%; padding: 14px 16px;
    border: 1px solid var(--border);
    font-size: 14px; color: var(--text);
    background: var(--bg);
    transition: border-color 0.3s;
    outline: none;
}
.form-input:focus { border-color: var(--text); }
.form-input::placeholder { color: var(--text-lighter); }
.form-error { font-size: 12px; color: var(--error); margin-top: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================
   AUTH PAGES
   ============================================ */
.auth-section {
    min-height: calc(100vh - 140px);
    display: flex; align-items: center; justify-content: center;
    padding: 60px 0;
}
.auth-card {
    width: 100%; max-width: 420px;
    padding: 0;
}
.auth-header { text-align: center; margin-bottom: 40px; }
.auth-header h1 { font-size: 32px; font-weight: 300; letter-spacing: -0.02em; margin-bottom: 10px; }
.auth-header p { font-size: 14px; color: var(--text-light); }
.auth-footer { text-align: center; margin-top: 28px; font-size: 14px; color: var(--text-light); }
.auth-footer a { color: var(--text); font-weight: 500; border-bottom: 1px solid var(--text); }
.auth-footer a:hover { opacity: 0.6; }
.auth-divider {
    display: flex; align-items: center; gap: 16px; margin: 28px 0;
    color: var(--text-lighter); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
}
.auth-divider::before, .auth-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--border);
}
.form-check {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--text-light);
}
.form-check input[type="checkbox"] {
    width: 16px; height: 16px; accent-color: #1a1a1a;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    padding: 20px 0;
    font-size: 12px;
    display: flex; align-items: center; gap: 8px;
    color: var(--text-light);
    text-transform: uppercase; letter-spacing: 0.06em;
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .separator { color: var(--text-lighter); }
.breadcrumb .current { color: var(--text); }

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 48px 0 24px;
    text-align: center;
}
.page-header h1 {
    font-size: 40px; font-weight: 300;
    letter-spacing: -0.02em;
}
.page-header p { font-size: 14px; color: var(--text-light); margin-top: 8px; }

/* ============================================
   SHOP PAGE
   ============================================ */
.shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    padding: 32px 0 80px;
}

/* Sidebar Filters */
.shop-sidebar { position: sticky; top: 90px; align-self: start; }
.filter-group { margin-bottom: 28px; }
.filter-title {
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.15em;
    margin-bottom: 14px;
    padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.filter-list label {
    display: flex; align-items: center; gap: 10px;
    padding: 7px 0; font-size: 14px; color: var(--text-light);
    cursor: pointer; transition: color 0.2s;
}
.filter-list label:hover { color: var(--text); }
.filter-list input[type="checkbox"] { accent-color: #1a1a1a; width: 15px; height: 15px; }
.filter-count { margin-left: auto; font-size: 12px; color: var(--text-lighter); }

/* Shop Toolbar */
.shop-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 28px; flex-wrap: wrap; gap: 12px;
    padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.shop-count { font-size: 13px; color: var(--text-light); }
.shop-sort select {
    padding: 8px 12px; border: 1px solid var(--border);
    font-size: 13px;
    background: var(--bg); color: var(--text); outline: none;
    -webkit-appearance: none;
}
.shop-view-toggle { display: flex; gap: 4px; }
.shop-view-btn {
    width: 34px; height: 34px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; color: var(--text-light);
}
.shop-view-btn.active { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

/* ============================================
   PRODUCT DETAIL — Editorial Layout
   ============================================ */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 32px 0 64px;
}
.product-gallery { position: sticky; top: 90px; align-self: start; }
.gallery-main {
    overflow: hidden; background: #f5f5f5;
    aspect-ratio: 3/4;
    margin-bottom: 12px;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.gallery-thumbs { display: flex; gap: 8px; }
.gallery-thumb {
    width: 72px; height: 96px;
    overflow: hidden; cursor: pointer;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--text); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info h1 {
    font-size: 32px; font-weight: 300; line-height: 1.2;
    margin-bottom: 16px; letter-spacing: -0.02em;
}
.product-meta {
    display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
}
.product-rating { display: flex; align-items: center; gap: 3px; }
.product-rating i { color: var(--accent); font-size: 14px; }
.product-rating span { font-size: 13px; color: var(--text-light); margin-left: 4px; }
.product-sku { font-size: 12px; color: var(--text-lighter); text-transform: uppercase; letter-spacing: 0.08em; }

.product-price-box {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 24px; padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.product-price-box .price-current { font-size: 24px; font-weight: 400; }
.product-price-box .price-original { font-size: 16px; }
.product-price-box .price-discount {
    background: #1a1a1a; color: #fff;
    padding: 4px 10px;
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.05em;
}

.product-stock { margin-bottom: 24px; font-size: 13px; display: flex; align-items: center; gap: 6px; }
.stock-in { color: var(--success); }
.stock-out { color: var(--error); }

.variant-group { margin-bottom: 24px; }
.variant-label {
    font-size: 12px; font-weight: 500; margin-bottom: 10px;
    text-transform: uppercase; letter-spacing: 0.1em;
}
.variant-options { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-btn {
    padding: 10px 20px; border: 1px solid var(--border);
    font-size: 13px; font-weight: 400;
    cursor: pointer; transition: all 0.3s;
    min-width: 48px; text-align: center;
}
.variant-btn:hover { border-color: var(--text); }
.variant-btn.active { border-color: var(--text); background: var(--text); color: var(--bg); }
.variant-btn.disabled { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

.quantity-selector {
    display: flex; align-items: center; gap: 0; margin-bottom: 24px;
}
.quantity-label {
    font-size: 12px; font-weight: 500; margin-right: 16px;
    text-transform: uppercase; letter-spacing: 0.1em;
}
.qty-btn {
    width: 42px; height: 42px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; transition: all 0.2s;
}
.qty-btn:hover { border-color: var(--text); }
.qty-value {
    width: 50px; text-align: center; font-size: 14px; font-weight: 500;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    border-left: none; border-right: none;
    padding: 8px; outline: none; height: 42px;
}

.product-actions-bar { display: flex; gap: 10px; margin-bottom: 24px; }
.product-actions-bar .btn { flex: 1; }
.product-actions-bar .product-wishlist-btn { flex: 0 0 auto; width: 52px; padding-left: 0; padding-right: 0; font-size: 20px; }
.product-actions-bar .product-wishlist-btn i { margin: 0; }

.product-features {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    border: 1px solid var(--border);
}
.product-feature {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: var(--text-light); padding: 14px;
    border-right: 1px solid var(--border);
    text-transform: uppercase; letter-spacing: 0.05em;
}
.product-feature:last-child { border-right: none; }
.product-feature i { font-size: 16px; color: var(--text); }

/* Tabs */
.product-tabs { padding: 64px 0; border-top: 1px solid var(--border); }
.tabs-nav {
    display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 32px;
}
.tab-btn {
    padding: 14px 28px; font-size: 12px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--text-light);
    border-bottom: 2px solid transparent; margin-bottom: -1px;
    transition: all 0.3s;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--text); border-bottom-color: var(--text); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content p { line-height: 1.9; color: var(--text-light); }

/* ============================================
   CART PAGE
   ============================================ */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    padding: 32px 0 80px;
}
.cart-table-header {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 16px; padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--text-light);
}
.cart-item {
    display: flex; gap: 20px; padding: 24px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}
.cart-item-image {
    width: 100px; height: 130px;
    overflow: hidden; flex-shrink: 0; background: #f5f5f5;
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.cart-item-name a:hover { opacity: 0.6; }
.cart-item-variant { font-size: 13px; color: var(--text-light); margin-bottom: 8px; }
.cart-item-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.cart-item-price { font-size: 14px; font-weight: 500; color: var(--text); }
.cart-item-remove {
    font-size: 12px; color: var(--text-lighter);
    text-transform: uppercase; letter-spacing: 0.08em;
    transition: color 0.2s;
    font-weight: 500;
}
.cart-item-remove:hover { color: var(--error); }

/* Order Summary */
.order-summary {
    background: var(--bg-alt);
    padding: 32px;
    position: sticky; top: 90px;
}
.order-summary h3 {
    font-size: 11px; font-weight: 600; margin-bottom: 24px;
    text-transform: uppercase; letter-spacing: 0.15em;
    padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.summary-row {
    display: flex; justify-content: space-between;
    padding: 8px 0; font-size: 14px; color: var(--text-light);
}
.summary-row.total {
    font-size: 16px; font-weight: 500; color: var(--text);
    border-top: 1px solid var(--border);
    padding-top: 16px; margin-top: 8px;
}
.summary-savings { font-size: 12px; color: var(--success); text-align: center; margin-top: 12px; }

.coupon-form { display: flex; gap: 0; margin: 20px 0; }
.coupon-form input {
    flex: 1; border: 1px solid var(--border); border-right: none;
    padding: 12px 16px; font-size: 13px; outline: none;
}
.coupon-form .btn { white-space: nowrap; border: 1px solid #1a1a1a; }

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    padding: 32px 0 80px;
}
.checkout-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}
.checkout-section:last-child { border-bottom: none; }
.checkout-section h3 {
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.15em;
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 8px;
}

.address-card {
    padding: 20px;
    border: 1px solid var(--border);
    cursor: pointer; transition: all 0.3s;
    margin-bottom: 12px;
}
.address-card:hover { border-color: var(--text-light); }
.address-card.selected { border-color: var(--text); }
.address-card-name { font-weight: 500; margin-bottom: 4px; font-size: 14px; }
.address-card-text { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.address-card-phone { font-size: 13px; color: var(--text-light); margin-top: 4px; }

.payment-option {
    display: flex; align-items: center; gap: 14px;
    padding: 18px; border: 1px solid var(--border);
    cursor: pointer; margin-bottom: 10px; transition: all 0.3s;
}
.payment-option:hover { border-color: var(--text-light); }
.payment-option.selected { border-color: var(--text); }
.payment-option input[type="radio"] { accent-color: #1a1a1a; width: 16px; height: 16px; }
.payment-info h4 { font-size: 14px; font-weight: 500; }
.payment-info p { font-size: 13px; color: var(--text-light); }

/* ============================================
   ORDERS
   ============================================ */
.order-card {
    border: 1px solid var(--border);
    margin-bottom: 16px;
    transition: all 0.2s;
}
.order-card:hover { border-color: var(--text-light); }
.order-card-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px; background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap; gap: 8px;
}
.order-number { font-weight: 500; font-size: 13px; letter-spacing: 0.02em; }
.order-date { font-size: 12px; color: var(--text-light); }
.order-status {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 12px;
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.06em;
}
.status-pending { background: #fef3c7; color: #92400e; }
.status-confirmed { background: #dbeafe; color: #1e40af; }
.status-processing { background: #e9d5ff; color: #6b21a8; }
.status-shipped { background: #c7d2fe; color: #3730a3; }
.status-delivered { background: #d1fae5; color: #065f46; }
.status-cancelled { background: #fee2e2; color: #991b1b; }
.status-returned { background: #e5e7eb; color: #374151; }

.order-card-body { padding: 20px 24px; }
.order-item-row {
    display: flex; align-items: center; gap: 14px;
    padding: 8px 0;
}
.order-item-img {
    width: 48px; height: 64px;
    overflow: hidden; background: #f5f5f5;
}
.order-item-img img { width: 100%; height: 100%; object-fit: cover; }
.order-item-name { flex: 1; font-size: 14px; }
.order-item-qty { font-size: 13px; color: var(--text-light); }
.order-item-price { font-weight: 500; font-size: 14px; }

.order-card-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px; border-top: 1px solid var(--border);
}
.order-total { font-size: 14px; font-weight: 500; }

/* Timeline */
.timeline { position: relative; padding: 20px 0; }
.timeline-item { display: flex; gap: 20px; padding-bottom: 36px; position: relative; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
    position: relative; z-index: 1;
}
.timeline-dot.completed { background: #1a1a1a; color: #fff; }
.timeline-dot.current { background: var(--primary); color: #fff; }
.timeline-dot.pending { background: var(--bg-alt); color: var(--text-lighter); border: 1px solid var(--border); }

.timeline-item:not(:last-child) .timeline-dot::after {
    content: ''; position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%);
    width: 1px; height: calc(100% + 20px);
    background: var(--border);
}
.timeline-item:not(:last-child) .timeline-dot.completed::after { background: #1a1a1a; }

.timeline-content h4 { font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.timeline-content p { font-size: 13px; color: var(--text-light); }

/* ============================================
   PROFILE PAGE
   ============================================ */
.profile-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    padding: 32px 0 80px;
}
.profile-sidebar {
    position: sticky; top: 90px; align-self: start;
}
.profile-avatar {
    width: 72px; height: 72px; border-radius: 50%;
    margin: 0 0 16px 0; overflow: hidden;
    background: #1a1a1a;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 28px; font-weight: 300;
}
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-name { font-weight: 500; font-size: 16px; margin-bottom: 4px; }
.profile-email { font-size: 13px; color: var(--text-light); margin-bottom: 28px; }
.profile-nav a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 0; font-size: 14px; color: var(--text-light);
    transition: all 0.2s; border-bottom: 1px solid var(--border);
}
.profile-nav a:hover, .profile-nav a.active { color: var(--text); }
.profile-nav a i { font-size: 17px; }
.profile-content { min-height: 400px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    padding: 48px 0;
    align-items: start;
}
.contact-details { margin-top: 8px; }
.contact-info-card,
.contact-detail-item {
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 18px;
    padding: 16px;
    background: var(--bg-card, #fff);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: border-color .2s, box-shadow .2s;
}
.contact-detail-item:hover { border-color: var(--primary); box-shadow: 0 8px 22px rgba(0,0,0,.05); }
.contact-icon {
    width: 46px; height: 46px;
    background: var(--primary-soft, #eef7f0);
    border: none; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--primary); flex-shrink: 0;
}
.contact-info-card h4,
.contact-detail-item h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-lighter); margin-bottom: 4px; }
.contact-info-card p,
.contact-detail-item p { font-size: 15px; color: var(--text); line-height: 1.55; }
.contact-info-card a,
.contact-detail-item a { color: var(--text); font-size: 15px; font-weight: 600; }
.contact-detail-item a:hover { color: var(--primary); }
/* Contact form card */
.contact-form-wrapper .card { border-radius: 16px; }

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state { text-align: center; padding: 100px 20px; }
.empty-state-icon { font-size: 48px; color: var(--text-lighter); margin-bottom: 20px; }
.empty-state h3 { font-size: 22px; font-weight: 300; margin-bottom: 10px; letter-spacing: -0.01em; }
.empty-state p { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }

/* ============================================
   ORDER SUCCESS
   ============================================ */
.success-page { text-align: center; padding: 100px 20px; max-width: 500px; margin: 0 auto; }
.success-icon {
    width: 80px; height: 80px;
    border: 2px solid var(--success);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px;
    font-size: 36px; color: var(--success);
    animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes scaleIn { from { transform: scale(0); } to { transform: scale(1); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.success-page h1 { font-size: 32px; font-weight: 300; margin-bottom: 10px; letter-spacing: -0.02em; }
.success-page .order-num {
    font-size: 13px; color: var(--text-light);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 10px;
}
.success-page p { color: var(--text-light); margin-bottom: 36px; font-size: 14px; }
.success-actions { display: flex; gap: 12px; justify-content: center; }

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex; align-items: center; justify-content: center;
    gap: 4px; padding: 48px 0;
}
.page-link {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid transparent;
    font-size: 13px; font-weight: 400; color: var(--text-light);
    transition: all 0.2s;
}
.page-link:hover { border-color: var(--border); }
.page-link.active { border-color: var(--text); color: var(--text); }
.page-link.disabled { opacity: 0.3; pointer-events: none; }

/* ============================================
   SHIMMER
   ============================================ */
.shimmer {
    background: linear-gradient(90deg, var(--bg-alt) 25%, #f0f0f0 50%, var(--bg-alt) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ============================================
   TAB FILTERS
   ============================================ */
.tab-filters { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.tab-filter-btn {
    padding: 12px 20px; border: none; border-bottom: 2px solid transparent;
    font-size: 12px; font-weight: 500; color: var(--text-light);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: -1px; transition: all 0.3s;
}
.tab-filter-btn:hover { color: var(--text); }
.tab-filter-btn.active { color: var(--text); border-bottom-color: var(--text); }

/* ============================================
   NOTIFICATIONS
   ============================================ */
.notif-item {
    display: flex; gap: 16px; padding: 20px 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s;
}
.notif-item.unread { }
.notif-icon {
    width: 40px; height: 40px;
    background: var(--bg-alt); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; color: var(--text); flex-shrink: 0;
}
.notif-content { flex: 1; }
.notif-title { font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.notif-message { font-size: 13px; color: var(--text-light); }
.notif-time { font-size: 12px; color: var(--text-lighter); margin-top: 4px; }

/* ============================================
   SPLIT IMAGE + TEXT SECTION
   ============================================ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}
.split-image { overflow: hidden; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-content {
    display: flex; align-items: center;
    padding: 60px 80px;
}
.split-content-inner { max-width: 480px; }
.split-content h2 {
    font-size: 36px; font-weight: 300; letter-spacing: -0.02em;
    margin-bottom: 16px; line-height: 1.2;
}
.split-content p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 28px; }

/* ============================================
   TESTIMONIALS / QUOTE
   ============================================ */
.quote-section { text-align: center; padding: 100px 40px; }
.quote-text {
    font-size: 28px; font-weight: 300; line-height: 1.5;
    max-width: 700px; margin: 0 auto 20px;
    letter-spacing: -0.01em; font-style: italic;
}
.quote-author { font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-light); }
