@font-face {
    font-family: 'BPG Arial 2009';
    src: url('fonts/bpg_arial_2009.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Sophisticated Typography */
    --font-primary: 'BPG Arial 2009', 'Noto Sans Georgian', 'Inter', sans-serif;
    
    /* Dark Theme Palette (Default) */
    --bg-main: #0a0a0c;
    --bg-secondary: #121215;
    --bg-tertiary: #1a1a20;
    --border-color: #2a2a35;
    --text-main: #f0f0f5;
    --text-secondary: #a0a0b0;
    --accent: #d4af37; /* Subtle Luxury Gold */
    --accent-hover: #bda028;
    --glass-bg: rgba(18, 18, 21, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    
    /* Variables */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

[data-theme="light"] {
    --bg-main: #f6f7f9;
    --bg-secondary: #ffffff;
    --bg-tertiary: #eef1f5;
    --border-color: #dde3ec;
    --text-main: #10141d;
    --text-secondary: #667085;
    --accent: #b88a20;
    --accent-hover: #906b17;
    --glass-bg: rgba(255, 255, 255, 0.86);
    --glass-border: rgba(16, 20, 29, 0.08);
}

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

body {
    font-family: var(--font-primary);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.92), rgba(246,247,249,0.98)),
        var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}
body.mobile-menu-open {
    overflow: hidden;
}
body.no-scroll {
    overflow: hidden;
}

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

ul {
    list-style: none;
}

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

/* Utilities */
.hidden { display: none !important; }
.mt-10 { margin-top: 10px; }
.w-100 { width: 100%; }

/* Buttons */
.btn-primary, .btn-secondary, .btn-clear, .btn-glass {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
}
[data-theme="light"] .btn-primary {
    color: #fff;
}
.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}
[data-theme="light"] .btn-primary:hover {
    box-shadow: 0 8px 22px rgba(184, 138, 32, 0.22);
}

.btn-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    backdrop-filter: blur(10px);
}
.btn-glass:hover {
    background: var(--bg-tertiary);
    transform: translateY(-2px);
}

.btn-clear {
    background: #fff;
    color: var(--text-secondary);
    padding: 5px 10px;
    font-size: 0.8rem;
}
.btn-clear:hover {
    color: var(--text-main);
}

/* Top Promo Bar */
.promo-bar {
    background-color: var(--accent);
    color: #000;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
}
.promo-bar i { margin-right: 8px; }
[data-theme="light"] .promo-bar {
    background: #10141d;
    color: #fff;
}

/* Header */
.main-header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}
[data-theme="light"] .main-header {
    box-shadow: 0 12px 36px rgba(16, 20, 29, 0.08);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
    cursor: pointer;
}
.logo span {
    color: var(--accent);
    font-weight: 300;
}

/* Smart Search */
.search-container {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0 20px;
    transition: var(--transition);
}
[data-theme="light"] .search-input-wrapper,
[data-theme="light"] .search-dropdown,
[data-theme="light"] .nav-dropdown,
[data-theme="light"] .custom-select,
[data-theme="light"] .filter-tag,
[data-theme="light"] .glass-input {
    box-shadow: 0 8px 24px rgba(16, 20, 29, 0.05);
}

.search-input-wrapper:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-icon {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

#searchInput {
    flex: 1;
    background: #fff;
    border: none;
    padding: 14px 15px;
    color: var(--text-main);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    outline: none;
}

.clear-search {
    background: #fff;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.2rem;
}
.clear-search:hover { color: var(--text-main); }

.search-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: flex;
    max-height: 400px;
    overflow: hidden;
    z-index: 1000;
}

.search-suggestions {
    flex: 1;
    border-right: 1px solid var(--border-color);
    overflow-y: auto;
    padding: 10px 0;
}

.suggestion-item {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.suggestion-item:hover, .suggestion-item.active {
    background: var(--bg-tertiary);
    color: var(--text-main);
}

.search-results-preview {
    flex: 2;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-main);
}

.preview-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.preview-item:hover { background: var(--bg-secondary); }

.preview-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: var(--radius-sm);
}
.preview-info h5 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}
.preview-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 15px;
}
.action-btn {
    background: #fff;
    border: none;
    color: var(--text-main);
    font-size: 1.4rem;
    cursor: pointer;
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.action-btn:hover {
    background: var(--bg-secondary);
    color: var(--accent);
}
[data-theme="light"] .action-btn:hover {
    box-shadow: 0 8px 18px rgba(16, 20, 29, 0.08);
}
.cart-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-menu-btn {
    display: none;
}
.mobile-nav-backdrop {
    display: none;
}

/* Main Navigation */
.main-nav {
    border-top: 1px solid var(--glass-border);
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}
.nav-list {
    display: flex;
    gap: 30px;
}
.nav-item {
    position: relative;
    padding: 15px 0;
}
.nav-item > a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-item:hover > a, .nav-item.active > a {
    color: var(--text-main);
}
.nav-item.highlight > a { color: #e74c3c; }

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 10px 0;
    min-width: 260px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 200;
}
.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-item:last-child .nav-dropdown {
    left: auto;
    right: 0;
}
.nav-dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: background 0.2s;
}
.nav-dropdown a:hover {
    background: var(--bg-tertiary);
    color: var(--text-main);
    padding-left: 25px;
}

/* ========================================= */
/* HOME PAGE STYLES                          */
/* ========================================= */
#appContainer {
    width: 100%;
    min-height: calc(100vh - 200px);
}

.home-view {
    display: block;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(to right, rgba(10, 10, 12, 0.92), rgba(10, 10, 12, 0.42), rgba(10, 10, 12, 0.08)), 
                url('https://images.unsplash.com/photo-1550009158-9ebf69173e03?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=85') center/cover;
    display: flex;
    align-items: center;
    padding: 0 5%;
}
[data-theme="light"] .hero-section {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.98), rgba(246, 247, 249, 0.78), rgba(246, 247, 249, 0.18)), 
                url('https://images.unsplash.com/photo-1550009158-9ebf69173e03?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=85') center/cover;
}

.hero-content {
    max-width: 600px;
}
.hero-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
[data-theme="light"] .hero-badge {
    background: rgba(184, 138, 32, 0.1);
    color: var(--accent);
    border-color: rgba(184, 138, 32, 0.35);
}
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}
.hero-actions {
    display: flex;
    gap: 15px;
}

/* Home Sections */
.home-section {
    max-width: 1440px;
    margin: 80px auto;
    padding: 0 40px;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}
.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.category-card {
    position: relative;
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    group: hover;
    border: 1px solid var(--border-color);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
[data-theme="light"] .category-card,
[data-theme="light"] .trust-section,
[data-theme="light"] .glass-card,
[data-theme="light"] .sp-container,
[data-theme="light"] .product-card {
    box-shadow: 0 18px 42px rgba(16, 20, 29, 0.08);
}
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.category-card:hover img {
    transform: scale(1.05);
}
.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #fff;
}
[data-theme="light"] .category-card-overlay {
    background: linear-gradient(to top, rgba(16, 20, 29, 0.74), rgba(16, 20, 29, 0.08));
}
.category-card-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.category-card-overlay span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 5px;
    transform: translateY(10px);
    opacity: 0.8;
    transition: var(--transition);
}
.category-card:hover .category-card-overlay span {
    transform: translateY(0);
    opacity: 1;
}

/* Trust Section */
.trust-section {
    max-width: 1440px;
    margin: 80px auto;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}
[data-theme="light"] .trust-section {
    background: #fff;
}
.trust-item {
    text-align: center;
}
.trust-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--accent);
}
.trust-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.trust-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Footer */
.main-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 40px 40px;
    margin-top: 80px;
}
.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}
.footer-brand p {
    color: var(--text-secondary);
    margin-top: 15px;
    max-width: 300px;
}
.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a {
    color: var(--text-secondary);
    transition: color 0.2s;
}
.footer-links ul li a:hover { color: var(--accent); }

/* Premium Homepage Refresh */
.logo {
    letter-spacing: 0;
}
.premium-hero {
    min-height: 680px;
    height: auto;
    padding: 72px 40px 56px;
    background:
        linear-gradient(135deg, rgba(246, 247, 249, 0.98), rgba(236, 241, 247, 0.94) 42%, rgba(249, 250, 251, 0.98)),
        var(--bg-main);
    overflow: hidden;
}
[data-theme="light"] .premium-hero {
    background:
        linear-gradient(135deg, rgba(246, 247, 249, 0.98), rgba(230, 238, 246, 0.94) 42%, rgba(249, 250, 251, 0.98)),
        var(--bg-main);
}
.hero-shell {
    width: min(1360px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 54px;
    align-items: center;
    min-width: 0;
}
.hero-content {
    max-width: 670px;
}
.hero-kicker {
    max-width: 540px;
    color: var(--text-secondary);
    font-size: 0.96rem;
    margin: 0 0 12px;
}
.premium-hero .hero-badge,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    color: #5d6b7a;
    border: 1px solid rgba(120, 139, 160, 0.2);
    box-shadow: 0 10px 30px rgba(16, 20, 29, 0.06);
    backdrop-filter: blur(16px);
    text-transform: none;
    letter-spacing: 0;
}
.premium-hero .hero-title {
    font-size: 4rem;
    line-height: 1.05;
    letter-spacing: 0;
    max-width: 760px;
}
.premium-hero .hero-subtitle {
    max-width: 620px;
    font-size: 1.08rem;
    line-height: 1.75;
    color: #5e6876;
}
.premium-hero .hero-actions {
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.premium-hero .btn-primary {
    background: linear-gradient(135deg, #151b24, #344353);
    box-shadow: 0 16px 34px rgba(16, 20, 29, 0.18);
}
.premium-hero .btn-primary:hover {
    background: linear-gradient(135deg, #263443, #151b24);
}
.premium-hero .btn-glass {
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(120, 139, 160, 0.2);
}
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 560px;
}
.hero-metrics div {
    min-height: 88px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(120, 139, 160, 0.18);
    box-shadow: 0 16px 36px rgba(16, 20, 29, 0.06);
    backdrop-filter: blur(18px);
}
.hero-metrics strong {
    display: block;
    font-size: 1.5rem;
    color: #10141d;
}
.hero-metrics span {
    display: block;
    color: #667085;
    font-size: 0.82rem;
    line-height: 1.35;
}
.hero-showcase {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 520px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 18px;
}
.hero-product-tile {
    border: 1px solid rgba(255, 255, 255, 0.78);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.42)),
        rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(16, 20, 29, 0.12);
    backdrop-filter: blur(22px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 18px;
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    text-align: left;
    font-family: var(--font-primary);
    color: var(--text-main);
}
.hero-product-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(184, 138, 32, 0.34);
    box-shadow: 0 28px 70px rgba(16, 20, 29, 0.18);
}
.hero-product-tile-1 {
    grid-column: 1 / 5;
    grid-row: 1 / 5;
}
.hero-product-tile-2 {
    grid-column: 4 / 7;
    grid-row: 3 / 7;
}
.hero-product-tile-3 {
    grid-column: 1 / 4;
    grid-row: 5 / 7;
}
.hero-product-tile img {
    width: 100%;
    height: 62%;
    object-fit: contain;
    background: linear-gradient(145deg, rgba(235, 241, 247, 0.88), rgba(255, 255, 255, 0.72));
    border-radius: 16px;
    padding: 14px;
    filter: drop-shadow(0 20px 26px rgba(16, 20, 29, 0.16));
    align-self: center;
}
.hero-product-brand,
.hero-product-title {
    color: #667085;
    font-size: 0.78rem;
    font-weight: 700;
}
.hero-product-title {
    color: #10141d;
    font-size: 0.9rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hero-product-tile strong {
    color: var(--accent);
    font-size: 1.15rem;
}
.hero-trust-panel {
    min-height: 500px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-content: center;
    gap: 18px;
}
.hero-panel-main {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background:
        radial-gradient(circle at 18% 12%, rgba(184, 138, 32, 0.18), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48));
    box-shadow: 0 30px 80px rgba(16, 20, 29, 0.14);
    backdrop-filter: blur(24px);
}
.hero-panel-main::after {
    content: "";
    position: absolute;
    inset: auto -12% -28% 36%;
    height: 210px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(31, 111, 235, 0.14), rgba(184, 138, 32, 0.16));
    filter: blur(36px);
    pointer-events: none;
}
.hero-panel-main > span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}
.hero-panel-main h3 {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0;
    color: #10141d;
    font-size: 1.9rem;
    line-height: 1.18;
}
.hero-benefit-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    margin-top: 26px;
}
.hero-benefit-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 13px 14px;
    border: 1px solid rgba(120, 139, 160, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 14px 34px rgba(16, 20, 29, 0.06);
    color: #263244;
    font-size: 0.96rem;
    font-weight: 650;
}
.hero-benefit-list i,
.hero-quick-grid i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: rgba(184, 138, 32, 0.12);
    color: var(--accent);
    font-size: 1.25rem;
}
.hero-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.hero-quick-grid button {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 18px 44px rgba(16, 20, 29, 0.08);
    backdrop-filter: blur(18px);
    color: #10141d;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 0.94rem;
    font-weight: 800;
    text-align: left;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}
.hero-quick-grid button:hover {
    transform: translateY(-4px);
    border-color: rgba(184, 138, 32, 0.32);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 24px 54px rgba(16, 20, 29, 0.13);
}
.premium-section-header {
    align-items: center;
}
.section-eyebrow {
    margin-bottom: 12px;
    font-size: 0.78rem;
    font-weight: 800;
}
.premium-link-btn {
    min-height: 42px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.72);
    border-radius: 999px;
}
.featured-section {
    margin-top: 70px;
}
.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}
.featured-product-card {
    min-height: 470px;
    border-radius: 20px;
    border: 1px solid rgba(120, 139, 160, 0.18);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.46)),
        rgba(255, 255, 255, 0.62);
    box-shadow: 0 22px 54px rgba(16, 20, 29, 0.08);
    backdrop-filter: blur(22px);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.featured-product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 30px 72px rgba(16, 20, 29, 0.14);
    border-color: rgba(184, 138, 32, 0.32);
}
.featured-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 999px;
    background: #cb3f32;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
}
.featured-product-media {
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 24px 18px;
    background: linear-gradient(180deg, rgba(238, 243, 248, 0.8), rgba(255, 255, 255, 0));
}
.featured-product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: linear-gradient(145deg, rgba(235, 241, 247, 0.88), rgba(255, 255, 255, 0.68));
    border-radius: 16px;
    padding: 10px;
    filter: drop-shadow(0 18px 22px rgba(16, 20, 29, 0.12));
    transition: transform 0.28s ease;
}
.featured-product-card:hover .featured-product-media img {
    transform: scale(1.04);
}
.featured-product-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.featured-product-meta,
.featured-specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.featured-product-meta {
    justify-content: space-between;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}
.featured-product-meta i {
    color: #d9a441;
}
.featured-product-card h3 {
    min-height: 48px;
    margin: 10px 0 8px;
    font-size: 1rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.featured-product-card p {
    color: var(--text-secondary);
    font-size: 0.84rem;
    line-height: 1.5;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.featured-specs {
    margin-bottom: 16px;
}
.featured-specs span {
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(239, 243, 247, 0.84);
    color: #667085;
    font-size: 0.72rem;
    max-width: 100%;
}
.featured-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(120, 139, 160, 0.16);
}
.featured-price {
    color: var(--accent);
    font-size: 1.08rem;
    font-weight: 800;
    white-space: nowrap;
}
.featured-price span {
    margin-left: 6px;
    color: var(--text-secondary);
    text-decoration: line-through;
    font-size: 0.78rem;
    font-weight: 500;
}
.featured-product-footer button {
    min-height: 38px;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    background: #10141d;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s ease, background 0.2s ease;
}
.featured-product-footer button:hover {
    transform: translateY(-2px);
    background: var(--accent);
}
.category-card {
    background:
        linear-gradient(145deg, rgba(255,255,255,0.78), rgba(255,255,255,0.36)),
        rgba(255, 255, 255, 0.62);
    border-color: rgba(120, 139, 160, 0.16);
    box-shadow: 0 20px 54px rgba(16, 20, 29, 0.08);
}
.category-card img {
    object-fit: contain;
    padding: 34px;
    background: linear-gradient(180deg, rgba(238, 243, 248, 0.8), rgba(255,255,255,0.1));
}
.category-card-overlay {
    background: linear-gradient(to top, rgba(16, 20, 29, 0.86), rgba(16, 20, 29, 0.1));
}
.category-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 1.35rem;
    backdrop-filter: blur(12px);
}
.trust-section {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.76), rgba(255,255,255,0.48)),
        rgba(255,255,255,0.68);
    border-color: rgba(120, 139, 160, 0.18);
    backdrop-filter: blur(22px);
}

/* ========================================= */
/* SHOP VIEW STYLES                          */
/* ========================================= */
.main-layout {
    max-width: 1440px;
    margin: 40px auto;
    padding: 0 40px;
    display: flex;
    gap: 40px;
}

/* Sidebar */
.sidebar-filters {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 160px;
    height: calc(100vh - 180px);
    overflow-y: auto;
    padding-right: 15px;
}

.sidebar-filters::-webkit-scrollbar { width: 4px; }
.sidebar-filters::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.filter-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
}
.filter-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}
.filter-section h4 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-main);
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}
.price-inputs input {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    outline: none;
    font-size: 0.85rem;
}
.price-inputs input:focus { border-color: var(--accent); }

.checkbox-group, .radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.custom-checkbox, .custom-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 28px;
    user-select: none;
}
.custom-checkbox input, .custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark, .radiomark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition);
}
.radiomark { border-radius: 50%; }

.custom-checkbox:hover input ~ .checkmark,
.custom-radio:hover input ~ .radiomark { border-color: var(--accent); }

.custom-checkbox input:checked ~ .checkmark,
.custom-radio input:checked ~ .radiomark {
    background-color: var(--accent);
    border-color: var(--accent);
}
.checkmark:after, .radiomark:after {
    content: "";
    position: absolute;
    display: none;
}
.custom-checkbox input:checked ~ .checkmark:after,
.custom-radio input:checked ~ .radiomark:after { display: block; }

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.custom-radio .radiomark:after {
    top: 5px;
    left: 5px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #000;
}

.stars {
    color: var(--accent);
    display: inline-flex;
    gap: 2px;
}

/* Content Area */
.content-area { flex: 1; }
.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.breadcrumbs {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.breadcrumbs a { transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--text-main); }
.breadcrumbs .current {
    color: var(--text-main);
    font-weight: 500;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.custom-select {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    outline: none;
    cursor: pointer;
    font-family: var(--font-primary);
}

/* Active Filters */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.filter-tag {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
}
.filter-tag i {
    cursor: pointer;
    color: var(--text-secondary);
}
.filter-tag i:hover { color: #e74c3c; }

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.product-card {
    background: linear-gradient(145deg, var(--bg-secondary), var(--bg-tertiary));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}
[data-theme="light"] .product-card {
    background: #fff;
}
.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 22% 12%, rgba(212, 175, 55, 0.12), transparent 34%);
    pointer-events: none;
    opacity: 0.85;
}
[data-theme="light"] .product-card::before {
    background:
        radial-gradient(circle at 24% 12%, rgba(184, 138, 32, 0.1), transparent 32%),
        linear-gradient(180deg, rgba(246, 247, 249, 0.92), transparent 54%);
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 42px rgba(0,0,0,0.28);
    border-color: rgba(212, 175, 55, 0.35);
}
[data-theme="light"] .product-card:hover {
    box-shadow: 0 24px 48px rgba(16, 20, 29, 0.12);
}
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e74c3c;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 10;
    text-transform: uppercase;
}
.product-image {
    width: 100%;
    height: 240px;
    object-fit: contain;
    background: transparent;
    padding: 30px;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.24));
    transition: var(--transition);
}
[data-theme="light"] .product-image {
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    filter: drop-shadow(0 20px 20px rgba(16, 20, 29, 0.11));
}
.product-card:hover .product-image {
    transform: scale(1.025);
}
.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}
.product-brand {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 5px;
    font-weight: 800;
}
.product-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-description {
    color: var(--text-secondary);
    font-size: 0.84rem;
    line-height: 1.45;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-specs {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}
.product-specs div {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 5px;
    line-height: 1.42;
}
.product-specs span {
    color: var(--text-secondary);
}
.product-specs strong {
    color: var(--text-main);
    font-weight: 650;
}
.product-specs .spec-extra {
    display: none;
}
.product-specs.is-expanded .spec-extra {
    display: flex;
}
.product-specs-toggle {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 0 0 14px;
    padding: 6px 10px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.08);
    color: var(--accent);
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}
[data-theme="light"] .product-specs-toggle {
    background: rgba(184, 138, 32, 0.08);
    border-color: rgba(184, 138, 32, 0.24);
}
.product-specs-toggle:hover {
    transform: translateY(-1px);
    background: rgba(212, 175, 55, 0.14);
    border-color: rgba(212, 175, 55, 0.38);
}
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}
.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}
.product-old-price {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 400;
}
.btn-add-cart {
    background: var(--bg-tertiary);
    border: none;
    color: var(--text-main);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
[data-theme="light"] .btn-add-cart {
    background: #f5f7fa;
}
.product-card:hover .btn-add-cart {
    background: var(--accent);
    color: #fff;
}

/* No results */
.no-results {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-secondary);
}
.no-results i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 20px;
    display: block;
}
.no-results h2 {
    color: var(--text-main);
    margin-bottom: 10px;
}

/* ========================================= */
/* SINGLE PRODUCT VIEW                       */
/* ========================================= */
.single-product-view {
    max-width: 1320px;
    margin: 32px auto 80px;
    padding: 0 32px;
}
.sp-container {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        linear-gradient(145deg, var(--bg-secondary), var(--bg-tertiary));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: clamp(20px, 3.2vw, 42px);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}
[data-theme="light"] .sp-container {
    background:
        radial-gradient(circle at 24% 0%, rgba(184, 138, 32, 0.08), transparent 30rem),
        #fff;
}
.mb-20 { margin-bottom: 20px; }
.sp-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
}
.sp-image-gallery {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.sp-image-main {
    position: relative;
    min-height: 560px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(34px, 5vw, 68px);
}
[data-theme="light"] .sp-image-main {
    background: transparent;
}
.sp-zoom-trigger {
    width: 100%;
    height: 450px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: zoom-in;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp-image-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.3));
    transition: transform 0.35s ease, filter 0.35s ease;
}
.sp-zoom-trigger:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 8px;
    border-radius: var(--radius-md);
}
.sp-image-main:hover img {
    transform: scale(1.025);
}
.sp-zoom-hint {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(-4px);
    transition: var(--transition);
}
.sp-image-main:hover .sp-zoom-hint,
.sp-zoom-trigger:focus-visible .sp-zoom-hint {
    opacity: 1;
    transform: translateY(0);
}
.sp-zoom-hint i {
    font-size: 1.25rem;
}
[data-theme="light"] .sp-image-main img {
    filter: drop-shadow(0 24px 28px rgba(16, 20, 29, 0.13));
}
.sp-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--glass-bg);
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    z-index: 2;
}
.sp-gallery-nav:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--bg-secondary);
}
.sp-gallery-nav i {
    font-size: 1.4rem;
}
.sp-gallery-prev { left: 18px; }
.sp-gallery-next { right: 18px; }
.sp-image-count {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}
.sp-image-thumbnails {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 92px;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 2px 10px;
}
.sp-image-thumbnails::-webkit-scrollbar {
    height: 6px;
}
.sp-image-thumbnails::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 999px;
}
.sp-thumb {
    width: 92px;
    height: 92px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-main));
    padding: 8px;
    cursor: pointer;
    transition: var(--transition);
}
[data-theme="light"] .sp-thumb {
    background: #fff;
}
.sp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
}
.sp-thumb:hover,
.sp-thumb.active {
    border-color: var(--accent);
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.13);
    transform: translateY(-2px);
}
.image-zoom-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: grid;
    place-items: center;
    padding: clamp(18px, 4vw, 52px);
    background: rgba(5, 8, 13, 0.88);
    backdrop-filter: blur(18px);
}
.image-zoom-modal.hidden {
    display: none;
}
.image-zoom-stage {
    width: min(1120px, 92vw);
    height: min(780px, 82vh);
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-zoom-stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 34px 48px rgba(0, 0, 0, 0.42));
    cursor: zoom-out;
}
.image-zoom-close,
.image-zoom-nav {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(14px);
}
.image-zoom-close:hover,
.image-zoom-nav:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.16);
}
.image-zoom-close {
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
}
.image-zoom-close i,
.image-zoom-nav i {
    font-size: 1.55rem;
}
.image-zoom-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
}
.image-zoom-prev {
    left: 24px;
}
.image-zoom-next {
    right: 24px;
}
.image-zoom-caption {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    max-width: min(760px, calc(100vw - 40px));
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.86rem;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sp-details {
    display: flex;
    flex-direction: column;
    min-height: 520px;
}
.sp-brand {
    width: fit-content;
    padding: 7px 11px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: var(--glass-bg);
    font-size: 0.76rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 14px;
    font-weight: 800;
}
.sp-title {
    font-size: clamp(2rem, 4vw, 3.55rem);
    font-weight: 800;
    line-height: 1.02;
    margin-bottom: 18px;
}
.sp-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 620px;
}
.sp-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}
.sp-rating {
    display: flex;
    gap: 2px;
    color: var(--accent);
    font-size: 1.2rem;
}
.sp-purchase-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 22px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}
[data-theme="light"] .sp-purchase-card {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 52px rgba(16, 20, 29, 0.08);
}
.sp-price-box {
    display: grid;
    gap: 4px;
    margin-bottom: 18px;
}
.sp-price-label {
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}
.sp-price {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--accent);
}
.sp-old-price {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}
.sp-availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}
.sp-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}
.sp-trust-grid div {
    display: grid;
    gap: 8px;
    min-height: 84px;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.035);
}
[data-theme="light"] .sp-trust-grid div {
    background: #f8fafc;
}
.sp-trust-grid i {
    color: var(--accent);
    font-size: 1.3rem;
}
.sp-trust-grid span {
    color: var(--text-main);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.25;
}
.sp-specs-container {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--border-color);
    padding: 22px;
    border-radius: var(--radius-lg);
}
[data-theme="light"] .sp-specs-container {
    background: #f8fafc;
}
.sp-specs-container h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.sp-specs-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.sp-specs-list div {
    min-height: 54px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--bg-secondary);
    padding: 10px 12px;
    font-size: 0.86rem;
}
.sp-specs-list span {
    display: block;
    color: var(--text-secondary);
    text-transform: capitalize;
    margin-bottom: 2px;
}
.sp-specs-list strong {
    color: var(--text-main);
    font-weight: 700;
}
.sp-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ========================================= */
/* CHECKOUT VIEW                             */
/* ========================================= */
.checkout-view {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 40px;
}
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}
.glass-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
}
[data-theme="light"] .glass-card {
    background: #fff;
}
.checkout-product-info {
    display: flex;
    gap: 20px;
    align-items: center;
    background: var(--bg-tertiary);
    padding: 15px;
    border-radius: var(--radius-md);
}
.checkout-product-info img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 8px;
    border-radius: var(--radius-sm);
}
[data-theme="light"] .checkout-product-info {
    background: #f8fafc;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.glass-input {
    width: 100%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    outline: none;
    font-family: var(--font-primary);
    transition: var(--transition);
}
[data-theme="light"] .glass-input {
    background: #fff;
}
.glass-input:focus {
    border-color: var(--accent);
}
.text-muted { color: var(--text-secondary); }

/* ========================================= */
/* ANIMATIONS & MICRO-INTERACTIONS           */
/* ========================================= */

.fade-in-view {
    animation: fadeIn 0.5s ease forwards;
}

.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Hero specific load animations */
.hero-title {
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
.hero-subtitle {
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s forwards;
}
.hero-actions {
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.4s forwards;
}

/* Category floating effect */
.category-card {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s;
}
.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Product Card float */
.product-card {
    opacity: 0;
    animation: popIn 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

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

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Trust icon bounce */
.trust-item:hover .trust-icon {
    animation: bounce 0.5s ease infinite alternate;
    background: var(--bg-secondary);
    color: var(--accent);
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-8px); }
}

/* Responsive */
@media (max-width: 1024px) {
    .premium-hero {
        min-height: 0;
        padding: 54px 24px 44px;
    }
    .hero-shell {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .premium-hero .hero-title {
        font-size: 3rem;
    }
    .hero-showcase {
        min-height: 420px;
    }
    .hero-trust-panel {
        min-height: 0;
    }
    .featured-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .promo-bar {
        gap: 12px;
        align-items: flex-start;
    }
    .header-container {
        padding: 16px 24px;
        gap: 16px;
        flex-wrap: wrap;
    }
    .logo {
        font-size: 1.55rem;
    }
    .search-container {
        order: 3;
        flex-basis: 100%;
        max-width: none;
    }
    .header-actions {
        margin-left: auto;
        gap: 8px;
    }
    .action-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    .mobile-menu-btn {
        display: inline-flex;
    }
    .mobile-nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
        z-index: 90;
    }
    body.mobile-menu-open .mobile-nav-backdrop {
        opacity: 1;
        pointer-events: auto;
    }
    .main-nav {
        position: fixed;
        top: 12px;
        right: 12px;
        bottom: 12px;
        left: auto;
        width: min(390px, calc(100vw - 24px));
        max-width: none;
        max-height: none;
        overflow-y: auto;
        padding: 10px;
        background: var(--bg-secondary);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
        transform: translateY(10px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: var(--transition);
        z-index: 120;
    }
    body.mobile-menu-open .main-nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .nav-list {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .nav-item {
        padding: 0;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        background: var(--bg-main);
        overflow: hidden;
    }
    .nav-item > a {
        min-height: 46px;
        padding: 12px 14px;
        justify-content: space-between;
        color: var(--text-main);
    }
    .nav-item.has-dropdown > a i {
        transition: transform 0.2s ease;
    }
    .nav-item.has-dropdown.mobile-expanded > a i {
        transform: rotate(180deg);
    }
    .nav-dropdown {
        position: static;
        min-width: 0;
        border: 0;
        border-top: 1px solid var(--border-color);
        border-radius: 0;
        box-shadow: none;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transform: none;
        overflow: hidden;
        padding: 0 6px;
        background: var(--bg-secondary);
        transition: max-height 0.24s ease, opacity 0.2s ease, padding 0.2s ease;
    }
    .nav-item.mobile-expanded .nav-dropdown {
        max-height: 520px;
        opacity: 1;
        visibility: visible;
        padding: 6px;
    }
    .nav-dropdown a {
        padding: 9px 12px;
        border-radius: var(--radius-sm);
    }
    .nav-dropdown a:hover {
        padding-left: 12px;
    }
    .main-layout { flex-direction: column; }
    .sidebar-filters {
        width: 100%;
        height: auto;
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    .sp-grid { grid-template-columns: 1fr; }
    .checkout-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .premium-hero {
        padding: 34px 16px 30px;
    }
    .premium-hero .hero-title {
        font-size: 2.25rem;
    }
    .premium-hero .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 26px;
    }
    .hero-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }
    .hero-metrics div {
        min-height: 76px;
        padding: 12px 10px;
    }
    .hero-metrics strong {
        font-size: 1.3rem;
    }
    .hero-metrics span {
        font-size: 0.72rem;
    }
    .hero-showcase {
        min-height: 0;
        display: flex;
        max-width: calc(100vw - 32px);
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }
    .hero-product-tile {
        flex: 0 0 245px;
        min-width: 245px;
        height: 300px;
        scroll-snap-align: start;
    }
    .hero-trust-panel {
        display: grid;
        max-width: 100%;
        overflow: visible;
        gap: 14px;
        padding-bottom: 0;
        scroll-snap-type: none;
    }
    .hero-panel-main {
        padding: 24px;
        border-radius: 20px;
    }
    .hero-panel-main h3 {
        font-size: 1.38rem;
    }
    .hero-benefit-list div {
        align-items: flex-start;
        min-height: 0;
    }
    .hero-quick-grid {
        grid-template-columns: 1fr;
    }
    .hero-quick-grid button {
        min-height: 68px;
    }
    .home-section,
    .trust-section {
        margin: 54px auto;
        padding-left: 16px;
        padding-right: 16px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .main-footer {
        padding: 44px 16px 30px;
    }
    .featured-products-grid {
        grid-template-columns: 1fr;
    }
    .featured-product-card {
        min-height: 0;
    }
    .premium-section-header {
        align-items: flex-start;
        gap: 14px;
    }
    .promo-bar {
        padding: 7px 14px;
        font-size: 0.76rem;
    }
    .header-container {
        padding: 14px 16px;
    }
    .search-input-wrapper {
        border-radius: var(--radius-md);
        padding: 0 14px;
    }
    #searchInput {
        padding: 12px 10px;
        font-size: 0.86rem;
    }
    .search-dropdown {
        flex-direction: column;
        max-height: 68vh;
    }
    .search-suggestions {
        border-right: 0;
        border-bottom: 1px solid var(--border-color);
    }
    .search-results-preview {
        padding: 12px;
    }
    .main-nav {
        top: 10px;
        right: 16px;
        bottom: 10px;
        width: calc(100vw - 32px);
        border-radius: var(--radius-md);
    }
    .single-product-view {
        margin: 20px auto 50px;
        padding: 0 12px;
    }
    .sp-container {
        padding: 14px;
        border-radius: var(--radius-md);
    }
    .sp-grid {
        gap: 28px;
    }
    .sp-image-main {
        min-height: 318px;
        padding: 24px;
    }
    .sp-zoom-trigger {
        height: 260px;
    }
    .sp-image-main img {
        height: 100%;
    }
    .sp-gallery-nav {
        width: 36px;
        height: 36px;
    }
    .sp-gallery-prev { left: 10px; }
    .sp-gallery-next { right: 10px; }
    .sp-details {
        min-height: 0;
    }
    .sp-title {
        font-size: 1.45rem;
    }
    .sp-price {
        font-size: 2rem;
    }
    .sp-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sp-specs-list {
        grid-template-columns: 1fr;
    }
    .sp-purchase-card {
        position: sticky;
        bottom: 12px;
        z-index: 20;
        padding: 16px;
        border-radius: var(--radius-md);
        backdrop-filter: blur(18px);
    }
    .sp-actions .btn-lg {
        min-height: 48px;
        padding: 12px 14px;
        font-size: 0.9rem;
        white-space: normal;
        line-height: 1.25;
    }
    .sp-image-count {
        right: 12px;
        bottom: 12px;
    }
    .image-zoom-modal {
        padding: 12px;
    }
    .image-zoom-stage {
        width: 94vw;
        height: 74vh;
    }
    .image-zoom-close {
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
    }
    .image-zoom-nav {
        width: 44px;
        height: 44px;
    }
    .image-zoom-prev {
        left: 12px;
    }
    .image-zoom-next {
        right: 12px;
    }
    .image-zoom-caption {
        bottom: 14px;
        max-width: calc(100vw - 28px);
    }
}

