/* 
   VAYENİ - Ultra Luxury Fashion Design System
   Brand Colors: Obsidian Velvet (#0b0c10), Midnight Gold (#d4af37), Champagne (#f5e6a8), Crimson Luxury (#ff3b30)
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,700;1,600&display=swap');

:root {
    --bg-primary: #07080a;
    --bg-header: rgba(12, 14, 20, 0.95);
    --bg-secondary: #0e1017;
    --bg-card: #151822;
    --bg-card-hover: #1c202d;
    --bg-pill: rgba(255, 255, 255, 0.05);
    
    --accent-gold: #d4af37;
    --accent-gold-light: #f5e6a8;
    --accent-gold-dark: #a08018;
    --accent-gold-glow: rgba(212, 175, 55, 0.3);
    
    --accent-red: #ff3b30;
    --accent-red-glow: rgba(255, 59, 48, 0.35);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(212, 175, 55, 0.35);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Protection */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    user-select: none;
    -webkit-user-select: none;
    padding-bottom: 60px; /* Space for mobile bottom bar */
}

@media (min-width: 769px) {
    body { padding-bottom: 0; }
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, select, textarea {
    font-family: inherit;
    outline: none;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}

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

.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

/* Security Protection Toast Overlay */
.security-toast {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(21, 24, 34, 0.95);
    border: 1px solid var(--accent-gold);
    box-shadow: var(--shadow-gold);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    z-index: 10000;
    backdrop-filter: blur(16px);
    transition: top 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.security-toast.active {
    top: 20px;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-gold);
}

.toast-content i {
    font-size: 20px;
}

.toast-content p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Top Announcement Ticker Bar */
.announcement-bar {
    background: #040507;
    border-bottom: 1px solid var(--border-subtle);
    padding: 7px 0;
    font-size: 12px;
    color: var(--text-muted);
}

.announcement-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    letter-spacing: 0.3px;
}

.announcement-content strong {
    color: var(--accent-gold);
}

.announcement-sep {
    opacity: 0.25;
}

.announcement-link {
    color: var(--text-main);
    transition: color var(--transition-fast);
}

.announcement-link:hover {
    color: var(--accent-gold);
}

/* Main Luxury Header */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-header);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 20px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 8px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.9));
    transition: transform var(--transition-fast);
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.brand-logo:hover .logo-img {
    transform: scale(1.05);
}

/* Core Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width var(--transition-fast);
}

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

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link.badge-sale {
    color: var(--accent-red) !important;
    font-weight: 800;
}

/* Header Actions & Search */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    font-size: 13px;
}

.search-box input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    padding: 8px 16px 8px 36px;
    font-size: 13px;
    color: var(--text-main);
    width: 180px;
    transition: all var(--transition-fast);
}

.search-box input:focus {
    border-color: var(--accent-gold);
    width: 230px;
    background: var(--bg-card);
    box-shadow: 0 0 0 3px var(--accent-gold-glow);
}

/* Icon Action Buttons */
.icon-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    cursor: pointer;
    position: relative;
    transition: all var(--transition-fast);
}

.icon-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
    background: rgba(212, 175, 55, 0.08);
}

.icon-btn .badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: #0b0c10;
    font-size: 10px;
    font-weight: 800;
    width: 19px;
    height: 19px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* SUB-HEADER SCROLLABLE CATEGORY STRIP BAR */
.category-strip-bar {
    background: rgba(8, 10, 15, 0.98);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 12px 0;
    position: sticky;
    top: 70px;
    z-index: 998;
    backdrop-filter: blur(16px);
}

.category-strip-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 2px 0;
}

.category-strip-inner::-webkit-scrollbar {
    display: none;
}

.strip-item, .chip {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #cbd5e1 !important;
    padding: 9px 20px !important;
    border-radius: var(--radius-full) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    user-select: none !important;
}

.strip-item:hover, .chip:hover,
.strip-item.active, .chip.active {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%) !important;
    border-color: var(--accent-gold) !important;
    color: #0b0c10 !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35) !important;
    transform: translateY(-2px) !important;
}

.strip-item.strip-sale, .chip.chip-sale {
    border-color: rgba(255, 59, 48, 0.4) !important;
    color: #ff3b30 !important;
    background: rgba(255, 59, 48, 0.08) !important;
}

.strip-item.strip-sale:hover, .chip.chip-sale:hover,
.strip-item.strip-sale.active, .chip.chip-sale.active {
    background: linear-gradient(135deg, #ff3b30 0%, #c62828 100%) !important;
    border-color: #ff3b30 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 18px rgba(255, 59, 48, 0.4) !important;
}

/* Category Chips in Catalog Header */
.category-chips {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 16px;
    margin-bottom: 28px;
    scrollbar-width: none;
}
.category-chips::-webkit-scrollbar { display: none; }

/* Mobile Side Drawer Navigation */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 10001;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.drawer-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: #0c0e15;
    border-right: 1px solid var(--border-gold);
    z-index: 10002;
    display: flex;
    flex-direction: column;
    transform: translateX(0);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 10px 0 40px rgba(0,0,0,0.8);
}

.mobile-drawer.closed {
    transform: translateX(-100%);
}

.drawer-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.close-drawer-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.05);
    color: var(--text-main);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.drawer-search {
    padding: 14px 20px;
    position: relative;
    border-bottom: 1px solid var(--border-subtle);
}

.drawer-search i {
    position: absolute;
    left: 34px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.drawer-search input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    padding: 10px 16px 10px 38px;
    color: var(--text-main);
    font-size: 13px;
}

.drawer-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.drawer-section-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-gold);
    letter-spacing: 2px;
    margin-bottom: 14px;
    margin-top: 10px;
}

.drawer-categories {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.drawer-cat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.drawer-cat-item i {
    width: 22px;
    font-size: 16px;
    color: var(--accent-gold);
    text-align: center;
}

.drawer-cat-item:hover, .drawer-cat-item.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-main);
    font-weight: 700;
}

.drawer-cat-item.strip-sale {
    color: #ff3b30;
}

.drawer-cat-item.strip-sale i {
    color: #ff3b30;
}

.drawer-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 20px 0;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drawer-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: var(--text-muted);
    font-size: 13px;
}

.drawer-links a i {
    font-size: 16px;
    color: var(--accent-gold);
}

/* Mobile Bottom App Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(12, 14, 21, 0.97);
    border-top: 1px solid var(--border-gold);
    z-index: 9999;
    align-items: center;
    justify-content: space-around;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.bottom-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 700;
    position: relative;
    cursor: pointer;
    flex: 1;
    height: 100%;
    transition: color var(--transition-fast);
}

.bottom-tab i {
    font-size: 19px;
}

.bottom-tab.active, .bottom-tab:hover {
    color: var(--accent-gold);
}

.badge-mini {
    position: absolute;
    top: 8px;
    right: 50%;
    transform: translateX(12px);
    background: var(--accent-gold);
    color: #0b0c10;
    font-size: 9px;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 75vh;
    min-height: 520px;
    background: url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7,8,10,0.95) 0%, rgba(7,8,10,0.7) 50%, rgba(7,8,10,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-tag {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    padding: 6px 16px;
    border-radius: var(--radius-full);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: #0b0c10;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
}

.btn-glow {
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.7); }
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border-subtle);
}

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

.btn-outline-light {
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    background: transparent;
}

.btn-outline-light:hover {
    border-color: var(--text-main);
    background: rgba(255,255,255,0.05);
}

.btn-outline-danger {
    border: 1px solid rgba(255,59,48,0.3);
    color: var(--accent-red);
    background: transparent;
}

.btn-outline-danger:hover {
    background: rgba(255,59,48,0.1);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 15px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

/* Features Bar */
.features-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
    padding: 40px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Catalog Section */
.catalog-section {
    padding: 70px 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 16px;
}

.sub-title {
    display: block;
    color: var(--accent-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
}

.filter-group select {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    cursor: pointer;
}

.filter-group select:focus {
    border-color: var(--accent-gold);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 28px;
}

/* Product Card */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.product-badge-group {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge-discount {
    background: var(--accent-red);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    box-shadow: var(--accent-red-glow);
}

.badge-new {
    background: var(--accent-gold);
    color: #0b0c10;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.product-fav-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    background: rgba(7, 8, 10, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.product-fav-btn:hover, .product-fav-btn.active {
    background: #ffffff;
    color: var(--accent-red);
}

.product-img-wrapper {
    position: relative;
    padding-top: 125%;
    overflow: hidden;
    background: #12141c;
}

.product-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-quick-btn {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    background: rgba(7, 8, 10, 0.92);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 13px;
    font-weight: 700;
    padding: 10px;
    border-radius: var(--radius-full);
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: all var(--transition-smooth);
    opacity: 0;
}

.product-card:hover .product-quick-btn {
    bottom: 14px;
    opacity: 1;
}

.product-card:hover .product-quick-btn:hover {
    background: var(--accent-gold);
    color: #000;
}

.product-details {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 11px;
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 16px;
}

.price-current {
    font-size: 19px;
    font-weight: 800;
    color: var(--accent-gold);
}

.price-old {
    font-size: 13px;
    color: var(--text-dim);
    text-decoration: line-through;
}

.product-add-btn {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    padding: 12px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.product-add-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #0b0c10;
}

/* Corp Banner */
.corp-banner {
    background: linear-gradient(135deg, #141722 0%, #07080a 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 70px 0;
    text-align: center;
}

.corp-inner {
    max-width: 800px;
}

.corp-badge {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.corp-banner h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    margin-bottom: 16px;
}

.corp-banner p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Footer */
.main-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding-top: 70px;
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 18px;
}

.brand-col p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-main);
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: var(--text-muted);
    font-size: 13px;
    transition: color var(--transition-fast);
}

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

.contact-col p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-col p i {
    color: var(--accent-gold);
}

.payment-methods {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.pay-tag {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    font-size: 11px;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 28px;
    text-align: center;
    font-size: 12px;
    color: var(--text-dim);
}

/* Modals System */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: fadeIn var(--transition-fast);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 600px;
    position: relative;
    padding: 32px;
    box-shadow: var(--shadow-gold);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    color: var(--text-muted);
    font-size: 26px;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--accent-red);
}

/* Auth Modal */
.auth-card {
    max-width: 420px;
    text-align: center;
}

.auth-logo {
    height: 44px;
    margin-bottom: 16px;
}

.auth-header h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 8px;
}

.auth-header p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pass-input-wrapper {
    position: relative;
}

.pass-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
}

.pass-input-wrapper input {
    padding-left: 44px !important;
}

.auth-error {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
    font-size: 13px;
    padding: 10px;
    border-radius: var(--radius-sm);
    margin-top: 14px;
}

/* Forms System */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
}

.form-group .req {
    color: var(--accent-red);
}

.form-group input, .form-group select, .form-group textarea {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: border-color var(--transition-fast);
}

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

.form-hint {
    font-size: 11px;
    color: var(--text-muted);
}

.readonly-input {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 20px;
}

.span-2 {
    grid-column: span 2;
}

.checkbox-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    background: var(--bg-secondary);
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
}

.checkbox-group label {
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.image-input-group {
    display: flex;
    gap: 10px;
}

.image-input-group input {
    flex-grow: 1;
}

.image-preview img {
    height: 90px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1px solid var(--border-gold);
    margin-top: 10px;
}

/* Quick View Modal */
.quickview-card {
    max-width: 860px;
    padding: 28px;
}

.quickview-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.quickview-img {
    width: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
    max-height: 440px;
}

.quickview-info h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.quickview-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.size-selector {
    margin-bottom: 20px;
}

.size-selector label {
    font-size: 13px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.size-options {
    display: flex;
    gap: 8px;
}

.size-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.size-btn:hover, .size-btn.active {
    border-color: var(--accent-gold);
    background: var(--accent-gold);
    color: #0b0c10;
}

/* Cart Drawer */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(6px);
    z-index: 3000;
    display: flex;
    justify-content: flex-end;
}

.cart-drawer {
    background: var(--bg-secondary);
    width: 100%;
    max-width: 440px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.6);
    animation: slideLeft 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideLeft {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.drawer-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-header h3 {
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.drawer-header h3 i {
    color: var(--accent-gold);
}

.drawer-close {
    background: none;
    color: var(--text-muted);
    font-size: 26px;
    cursor: pointer;
}

.shipping-progress-wrapper {
    background: var(--bg-card);
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.progress-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.progress-text strong {
    color: var(--accent-gold);
}

.progress-bar-bg {
    height: 5px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    transition: width 0.4s ease;
}

.drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart-item {
    display: flex;
    gap: 14px;
    background: var(--bg-card);
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.cart-item-img {
    width: 65px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.cart-item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cart-item-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cart-item-meta {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.cart-item-price {
    font-weight: 800;
    color: var(--accent-gold);
    font-size: 14px;
}

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

.qty-control {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
}

.qty-btn {
    color: var(--text-main);
    width: 26px;
    height: 26px;
    cursor: pointer;
    font-weight: 700;
}

.qty-val {
    font-size: 12px;
    padding: 0 6px;
    font-weight: 700;
}

.remove-item-btn {
    color: var(--accent-red);
    font-size: 13px;
    cursor: pointer;
    margin-left: auto;
}

.drawer-footer {
    padding: 20px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.summary-line.total-line {
    font-size: 17px;
    color: var(--text-main);
    border-top: 1px solid var(--border-subtle);
    padding-top: 10px;
    margin-top: 10px;
    margin-bottom: 16px;
}

.summary-line.total-line strong {
    color: var(--accent-gold);
}

.drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Checkout Modal */
.checkout-card {
    max-width: 760px;
}

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

.shopify-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(150, 191, 71, 0.15);
    color: #96bf47;
    border: 1px solid rgba(150, 191, 71, 0.3);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    margin-bottom: 10px;
}

.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
}

.step.active {
    opacity: 1;
}

.step-num {
    width: 30px;
    height: 30px;
    border-radius: var(--radius-full);
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
}

.step.active .step-num {
    background: var(--accent-gold);
    color: #0b0c10;
}

.step-title {
    font-size: 12px;
    font-weight: 700;
}

.step-line {
    width: 30px;
    height: 2px;
    background: var(--border-subtle);
}

/* Payment Credit Card Visual */
.payment-card-visual {
    background: linear-gradient(135deg, #252836 0%, #12141d 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 20px;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}

.chip-graphic {
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, #e6c875 0%, #a88634 100%);
    border-radius: 5px;
    margin-bottom: 20px;
}

.card-brand-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: var(--accent-gold);
}

.card-number-display {
    font-family: monospace;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.card-footer-display {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.order-summary-box {
    background: var(--bg-secondary);
    padding: 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    margin-bottom: 20px;
}

.order-summary-box .summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 6px;
}

.order-summary-box .summary-row.total {
    border-top: 1px solid var(--border-subtle);
    padding-top: 8px;
    margin-top: 8px;
    font-size: 15px;
    font-weight: 800;
}

.order-summary-box .summary-row.total strong {
    color: var(--accent-gold);
}

.terms-checkbox {
    margin: 16px 0;
    font-size: 12px;
    color: var(--text-muted);
}

.terms-checkbox a {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* Order Success Receipt */
.success-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(0, 230, 118, 0.15);
    border: 2px solid #00e676;
    color: #00e676;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 16px;
}

.order-receipt-card {
    background: var(--bg-secondary);
    border: 1px dashed var(--border-gold);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: left;
    margin-bottom: 20px;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
}

/* Secret Admin Panel */
.admin-view {
    background: #050608;
    min-height: 100vh;
}

.admin-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-gold);
    padding: 14px 0;
}

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

.admin-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-logo {
    height: 34px;
}

.admin-title {
    font-size: 16px;
    font-weight: 800;
    display: block;
}

.admin-subtitle {
    font-size: 11px;
    color: var(--accent-gold);
}

.admin-user-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-status {
    font-size: 12px;
    color: #00e676;
    display: flex;
    align-items: center;
    gap: 6px;
}

.admin-container {
    padding: 30px 20px;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-icon.revenue { background: rgba(212, 175, 55, 0.15); color: var(--accent-gold); }
.stat-icon.orders { background: rgba(0, 230, 118, 0.15); color: #00e676; }
.stat-icon.products { background: rgba(24, 144, 255, 0.15); color: #1890ff; }
.stat-icon.shipping { background: rgba(250, 173, 20, 0.15); color: #faad14; }

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
}

.stat-value {
    font-size: 20px;
    font-weight: 800;
}

.admin-tabs {
    display: flex;
    gap: 6px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 24px;
}

.admin-tab {
    background: none;
    color: var(--text-muted);
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
}

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

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.pane-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.badge-info {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
}

/* Tables System */
.table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.admin-table th, .admin-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 13px;
}

.admin-table th {
    background: var(--bg-secondary);
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
}

.admin-table-img {
    width: 44px;
    height: 54px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.table-actions {
    display: flex;
    gap: 6px;
}

/* Mobile Responsive Optimization */
@media (max-width: 992px) {
    .hero-title { font-size: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .quickview-body { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

@media (max-width: 768px) {
    .main-header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .header-inner {
        height: 60px;
        padding: 0 12px;
    }
    .logo-img {
        height: 32px;
    }
    .brand-title {
        font-size: 18px;
        letter-spacing: 2px;
    }
    .nav-menu {
        display: none !important;
    }
    .search-box {
        display: none; /* Accessible via mobile bottom bar search modal or drawer search */
    }
    .category-strip-bar {
        top: 60px;
        padding: 8px 0;
    }
    .icon-btn {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
    .mobile-bottom-bar {
        display: flex;
    }
    .hero-section {
        height: 480px;
        min-height: 420px;
        background-position: center top;
    }
    .hero-title {
        font-size: 34px;
        line-height: 1.2;
    }
    .hero-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .catalog-section {
        padding: 35px 0;
    }
    .section-title {
        font-size: 26px;
    }
    .section-header {
        margin-bottom: 18px;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .product-details {
        padding: 12px 10px;
    }
    .product-title {
        font-size: 13px;
        margin-bottom: 8px;
        height: 36px;
    }
    .product-category {
        font-size: 9px;
    }
    .price-current {
        font-size: 16px;
    }
    .price-old {
        font-size: 11px;
    }
    .product-add-btn {
        padding: 10px 8px;
        font-size: 12px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .span-2 {
        grid-column: span 1;
    }
    .admin-container {
        padding: 16px 10px;
    }
    .admin-header-inner {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .admin-user-nav {
        width: 100%;
        justify-content: space-between;
    }
    .admin-tabs {
        overflow-x: auto;
        white-space: nowrap;
    }
    .admin-tab {
        padding: 8px 14px;
        font-size: 12px;
    }
}
