:root {
    --bg: #0a0a0a;
    --bg-alt: #111;
    --bg-header: #0d0d0d;
    --bg-surface: #141414;
    --bg-surface-2: #1a1a1a;
    --bg-surface-3: #1c1c1c;
    --bg-surface-header: #161616;
    --border: #222;
    --border-light: #2c2c2c;
    --border-strong: #333;
    --text: #fff;
    --text-secondary: #aaa;
    --text-tertiary: #888;
    --text-quaternary: #666;
    --accent: #e22727;
    --accent-hover: #c41f1f;
}

[data-theme="light"] {
    --bg: #f3f2f1;
    --bg-alt: #ebe9e7;
    --bg-header: #ffffff;
    --bg-surface: #ffffff;
    --bg-surface-2: #f7f6f5;
    --bg-surface-3: #ebe9e7;
    --bg-surface-header: #f8f7f6;
    --border: #e4e4e8;
    --border-light: #dcdce0;
    --border-strong: #d0d0d5;
    --text: #111118;
    --text-secondary: #444450;
    --text-tertiary: #6e6e7a;
    --text-quaternary: #9898a4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg); color: var(--text); line-height: 1.6; transition: background-color 0.2s ease, color 0.2s ease; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
i { line-height: 1; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* Top Bar */
.top-bar { background-color: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 8px 0; font-size: 12px; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left span { color: var(--text-secondary); }
.top-bar-left i { color: var(--accent); margin-right: 5px; }
.top-bar-right { display: flex; gap: 20px; }
.top-bar-right a { color: var(--text-secondary); transition: color 0.3s; }
.top-bar-right a:hover { color: var(--accent); }

/* Header */
.header { background-color: var(--bg-header); padding: 15px 0; border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.logo img { height: 50px; }
.search-bar { flex: 1; max-width: 600px; }
.search-bar form { display: flex; background-color: var(--bg-surface-2); border: 1px solid var(--border-strong); border-radius: 8px; overflow: hidden; }
.search-bar input { flex: 1; background: transparent; border: none; color: var(--text); padding: 12px 15px; font-size: 14px; outline: none; }
.search-bar input::placeholder { color: var(--text-quaternary); }
.search-btn { background-color: var(--accent); border: none; color: #fff; padding: 0 20px; font-size: 16px; cursor: pointer; }
.header-actions { display: flex; gap: 20px; }
.header-action { display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--text-secondary); font-size: 11px; background: none; border: none; font-family: inherit; cursor: pointer; }
.header-action i { font-size: 20px; }
.header-action:hover { color: var(--accent); }
.cart-btn { position: relative; }
.cart-count { position: absolute; top: -5px; right: -5px; background-color: var(--accent); color: #fff; font-size: 10px; font-weight: 600; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* Navigation */
.main-nav { background-color: var(--accent); position: sticky; top: 0; z-index: 100; }
.nav-inner { display: flex; align-items: center; }
.nav-links { display: flex; list-style: none; gap: 0; }
.nav-links li a { display: block; padding: 14px 18px; font-size: 13px; font-weight: 500; text-transform: uppercase; transition: background-color 0.3s; color: #fff; }
.nav-links li a:hover, .nav-links li a.active { background-color: rgba(0,0,0,0.2); }

/* Alerts */
.alert { padding: 12px 0; }
.alert .container { display: flex; align-items: center; gap: 10px; }
.alert-success { background-color: #1b5e20; color: #fff; }
.alert-error { background-color: #b71c1c; color: #fff; }

/* Hero Slider */
.hero-slider { position: relative; height: 550px; overflow: hidden; }
.slider-container { width: 100%; height: 100%; position: relative; }
.slides-wrapper { width: 100%; height: 100%; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.8s ease; display: flex; align-items: center; }
.slide.active { opacity: 1; z-index: 1; }
.slide-content { max-width: 600px; padding-left: 80px; }
.slide-label { display: inline-block; background-color: var(--accent); color: #fff; padding: 6px 16px; font-size: 12px; font-weight: 700; letter-spacing: 1px; margin-bottom: 15px; border-radius: 4px; }
.slide-content h1 { font-family: 'Orbitron', sans-serif; font-size: clamp(52px, 6vw, 60px); line-height: 0.96; margin-bottom: 20px; letter-spacing: 0; text-transform: uppercase; color: #fff; }
.slide-content h1 .highlight { color: var(--accent); }
.slide-content p { font-size: 16px; color: #ccc; margin-bottom: 25px; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background-color: var(--accent); color: #fff; padding: 14px 32px; border-radius: 6px; font-weight: 600; font-size: 14px; transition: background-color 0.3s; border: 2px solid var(--accent); cursor: pointer; }
.btn-primary:hover { background-color: var(--accent-hover); border-color: var(--accent-hover); }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; background-color: rgba(0,0,0,0.6); border: 1px solid #333; color: #fff; width: 50px; height: 50px; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.slider-btn:hover { background-color: var(--accent); border-color: var(--accent); }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }
.slider-dots { position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 10px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background-color: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s; }
.dot.active { background-color: var(--accent); transform: scale(1.2); }

/* Features Bar */
.features-bar { background-color: var(--bg-alt); padding: 30px 0; border-bottom: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature-item { display: flex; align-items: center; gap: 15px; }
.feature-item i { font-size: 28px; color: var(--accent); }
.feature-item h4 { font-size: 14px; font-weight: 600; }
.feature-item p { font-size: 12px; color: var(--text-tertiary); }

/* Sections */
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 35px; }
.section-label { display: block; color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: 1px; margin-bottom: 5px; text-transform: uppercase; }
.section-header h2 { font-family: 'Orbitron', sans-serif; font-size: 28px; }
.view-all { color: var(--accent); font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 5px; }

/* Categories */
.categories { padding: 70px 0; }
.categories-header { text-align: center; max-width: 600px; margin: 0 auto 40px; }
.categories-header .section-label { display: block; }
.categories-header h2 { font-family: 'Orbitron', sans-serif; font-size: 30px; margin: 8px 0 12px; }
.categories-header p { color: var(--text-tertiary); font-size: 14px; }
.categories-grid-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.category-icon-card { display: flex; align-items: flex-start; gap: 16px; background-color: var(--bg-surface); border: 1px solid var(--border); border-radius: 12px; padding: 22px; transition: all 0.3s; }
.category-icon-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.category-icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background-color: rgba(226, 39, 39, 0.12); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.category-icon-info h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.category-icon-info ul { list-style: none; }
.category-icon-info ul li { position: relative; padding-left: 14px; font-size: 12px; color: var(--text-tertiary); margin-bottom: 4px; }
.category-icon-info ul li::before { content: ''; position: absolute; left: 0; top: 7px; width: 4px; height: 4px; border-radius: 50%; background-color: var(--text-quaternary); }
.categories-more { text-align: center; margin-top: 35px; }
.categories-strip-header {
    margin-bottom: 26px;
    align-items: center;
}
.categories-strip-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
}
.category-view-all {
    padding: 12px 18px;
    border: 1px solid var(--accent);
    border-radius: 8px;
}
/* Category Carousel */
.categories-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}
.categories-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0;
}
.categories-carousel::-webkit-scrollbar { display: none; }
.carousel-item {
    flex: 0 0 calc((100% - 48px) / 4);
    min-width: 180px;
}
.categories-carousel-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    font-size: 14px;
}
.categories-carousel-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}
.home-category-cards {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    padding: 4px 0;
}
.home-category-cards .category-showcase-card {
    min-width: 0;
    width: 100%;
    flex: none;
}
.category-showcase-card {
    flex: 0 0 calc((100% - 80px) / 6);
    min-width: 160px;
    position: relative;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.category-showcase-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}
.category-showcase-media {
    position: absolute;
    inset: 0;
}
.category-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
}
.category-showcase-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    z-index: 2;
    color: #fff;
}
.category-showcase-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.2;
}
.category-showcase-info p {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

/* Products */
.products-section { padding: 70px 0; }
.best-sellers { background-color: var(--bg-alt); }
.products-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.product-card { background-color: var(--bg-surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all 0.3s; position: relative; }
.product-card:hover { border-color: var(--accent); }
.product-badges { position: absolute; top: 10px; left: 10px; z-index: 2; display: flex; flex-direction: column; gap: 5px; }
.badge { padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; color: #fff; }
.badge.new { background-color: var(--accent); }
.badge.sale { background-color: #ff9800; }
.badge.in-stock { background-color: #4caf50; }
.badge.out-of-stock { background-color: #f44336; }
.wishlist-btn { position: absolute; top: 10px; right: 10px; background-color: rgba(0,0,0,0.6); border: none; color: #fff; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; z-index: 2; display: flex; align-items: center; justify-content: center; }
.wishlist-btn:hover { background-color: var(--accent); }
.product-img { height: 200px; overflow: hidden; background-color: #fff; border-radius: 12px 12px 0 0; display: flex; align-items: center; justify-content: center; padding: 15px; position: relative; }
.product-img img { width: 100%; height: 100%; object-fit: contain; transition: opacity 0.35s ease; transform: none !important; }
.product-img-hover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; padding: 15px; box-sizing: border-box; background: #fff; transition: opacity 0.35s ease; transform: none !important; }
.product-card:has(.product-img-hover):hover .product-img-hover { opacity: 1; }
.product-card:has(.product-img-hover):hover .product-img > img:first-child { opacity: 0; }
.product-info { padding: 15px; }
.product-cat { font-size: 11px; color: var(--text-tertiary); text-transform: uppercase; }
.product-info h4 { font-size: 13px; font-weight: 500; margin: 6px 0; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 8px; }
.stars i { color: #ffc107; font-size: 11px; }
.product-rating span { font-size: 11px; color: var(--text-tertiary); }
.product-bottom-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.product-price .old { text-decoration: line-through; color: var(--text-quaternary); font-size: 12px; }
.product-price .current { color: var(--text); font-weight: 700; font-size: 16px; overflow-wrap: anywhere; }
.add-to-cart { flex-shrink: 0; width: 36px; height: 36px; background-color: var(--bg-surface-3); border: 1px solid var(--border-strong); color: var(--text); padding: 0; border-radius: 6px; font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.add-to-cart:hover { background-color: var(--accent); border-color: var(--accent); color: #fff; }
.add-to-cart.request-quote { background-color: #25d366; border-color: #25d366; color: #fff; }
.add-to-cart.request-quote:hover { background-color: #1fb855; border-color: #1fb855; color: #fff; }
.add-to-cart.is-disabled,
.add-to-cart:disabled { cursor: not-allowed; opacity: .55; background-color: var(--bg-surface-2); border-color: var(--border); color: var(--text-quaternary); }
.add-to-cart.is-disabled:hover,
.add-to-cart:disabled:hover { background-color: var(--bg-surface-2); border-color: var(--border); color: var(--text-quaternary); }

/* Promo Banners */
.promo-banners { padding: 0 0 70px; }
.banners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.promo-banner { height: 200px; background-size: cover; background-position: center; border-radius: 12px; display: flex; align-items: center; padding: 30px; transition: transform 0.3s; }
.promo-banner:hover { transform: translateY(-5px); }
.banner-content h3 { font-family: 'Orbitron', sans-serif; font-size: 20px; margin-bottom: 15px; line-height: 1.3; color: #fff; }
.btn-outline { display: inline-block; background-color: var(--accent); border: 2px solid var(--accent); color: #fff; padding: 10px 20px; font-size: 12px; font-weight: 600; border-radius: 4px; transition: all 0.3s; }
.btn-outline:hover { background-color: var(--accent-hover); border-color: var(--accent-hover); }

/* Brands */
.brands { padding: 40px 0; background-color: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brands-slider { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px; }
.brand-item-logo { display: flex; align-items: center; justify-content: center; padding: 10px 20px; opacity: 0.5; transition: opacity 0.3s; }
.brand-item-logo:hover { opacity: 1; }
.brand-item-logo img { height: 40px; width: auto; object-fit: contain; filter: grayscale(100%); transition: filter 0.3s; }
.brand-item-logo:hover img { filter: grayscale(0%); }

/* Brands Carousel */
.brands-carousel-section { padding: 50px 0; background-color: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.brands-carousel { overflow: hidden; position: relative; padding: 10px 0; }
.brands-track { display: flex; align-items: center; gap: 40px; animation: scrollBrands 30s linear infinite; width: max-content; }
.brands-track:hover { animation-play-state: paused; }
.brand-slide { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 150px; height: 80px; padding: 16px 18px; background-color: var(--bg-surface); border: 1px solid var(--border); border-radius: 10px; transition: all 0.3s; overflow: visible; }
.brand-slide:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(226,39,39,0.15); }
.brand-slide img { display: block; max-width: 100%; max-height: 46px; object-fit: contain; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 40px; height: 40px; border-radius: 50%; background-color: var(--bg-surface); border: 1px solid var(--border-strong); color: var(--text); font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.carousel-btn:hover { background-color: var(--accent); border-color: var(--accent); color: #fff; }
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }
@keyframes scrollBrands { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Newsletter */
.newsletter { padding: 50px 0; background-color: var(--bg-header); }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.newsletter-left { display: flex; align-items: center; gap: 20px; }
.newsletter-left > i { font-size: 40px; color: var(--accent); }
.newsletter-left h3 { font-family: 'Orbitron', sans-serif; font-size: 20px; margin-bottom: 5px; }
.newsletter-left p { color: var(--text-tertiary); font-size: 14px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input { background-color: var(--bg-surface-2); border: 1px solid var(--border-strong); color: var(--text); padding: 14px 20px; border-radius: 6px; font-size: 14px; width: 300px; outline: none; }

/* Footer */
.footer {
    /* Footer is always on a black surface by design, in both themes — pin its
       text colors so it doesn't inherit the light-theme (dark-on-light) palette. */
    --text: #fff;
    --text-secondary: #aaa;
    --text-tertiary: #888;
    --text-quaternary: #666;
    --bg-surface-2: #1a1a1a;
    background-color: #000; color: var(--text); padding: 60px 0 0; border-top: 1px solid var(--border);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { height: 45px; margin-bottom: 15px; }
.footer-col p { color: var(--text-tertiary); font-size: 14px; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 36px; height: 36px; background-color: var(--bg-surface-2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-secondary); }
.social-links a:hover { background-color: var(--accent); color: #fff; }
.footer-col h4 { font-family: 'Orbitron', sans-serif; font-size: 13px; margin-bottom: 20px; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--text-tertiary); font-size: 14px; }
.footer-col ul a:hover { color: var(--accent); }
.payment-methods { display: flex; gap: 10px; margin-bottom: 20px; }
.payment-img { max-width: 100%; height: auto; display: block; }
.payment-icon { background-color: var(--bg-surface-2); padding: 8px 12px; border-radius: 4px; font-size: 11px; font-weight: 700; color: var(--text-tertiary); }
.trust-badges { display: flex; flex-direction: column; gap: 8px; }
.trust-badges span { font-size: 12px; color: var(--text-tertiary); display: flex; align-items: center; gap: 8px; }
.trust-badges i { color: #4caf50; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; background-color: #000; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: var(--text-quaternary); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--text-quaternary); }
.footer-links a:hover { color: var(--accent); }

/* Product Page */
.product-page { padding: 30px 0 70px; background: var(--bg); }
.breadcrumb { background-color: var(--bg-alt); padding: 15px 0; border-bottom: 1px solid var(--border); }
.breadcrumb a { color: var(--text-tertiary); font-size: 13px; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text); font-size: 13px; }
.breadcrumb .sep { margin: 0 8px; color: var(--text-quaternary); }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; max-width: 1200px; margin: 0 auto; }
.gallery { position: sticky; top: 20px; align-self: start; min-width: 0; }
.main-img { width: 100%; border-radius: 10px; overflow: hidden; margin-bottom: 12px; background-color: var(--bg-surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; padding: 30px; aspect-ratio: 1; position: relative; }
.main-img img { width: 100%; height: 100%; object-fit: contain; }
.product-tabs { max-width: 1200px; margin: 50px auto 0; }
.thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
    scrollbar-color: var(--border-strong) transparent;
}
.thumbnails::-webkit-scrollbar { height: 6px; }
.thumbnails::-webkit-scrollbar-track { background: transparent; }
.thumbnails::-webkit-scrollbar-thumb { background-color: var(--border-strong); border-radius: 999px; }
.thumbnails img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    background-color: #1a1a1a;
    padding: 4px;
    flex-shrink: 0;
    transition: border-color 0.2s;
}
.thumbnails img:hover, .thumbnails img.active { border-color: var(--accent); }
.product-brand { display: block; font-size: 13px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.product-brand-logo { height: 24px; width: auto; object-fit: contain; margin-bottom: 6px; filter: brightness(0) invert(1); }
.product-detail-info h1 { font-family: 'Orbitron', sans-serif; font-size: 26px; line-height: 1.15; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.02em; }
.product-detail-info .rating { display: flex; align-items: center; gap: 8px; margin-bottom: 15px; }
.product-detail-info .rating i { color: #ffc107; }
.product-detail-info .desc { color: var(--text-secondary); font-size: 14px; margin-bottom: 20px; line-height: 1.7; }
.desc h1, .desc h2, .desc h3, .desc h4 { color: var(--text); font-family: 'Orbitron', sans-serif; margin: 18px 0 10px; }
.desc h2 { font-size: 18px; }
.desc h3 { font-size: 15px; }
.desc strong, .desc b { color: var(--text); font-weight: 700; }
.desc ul, .desc ol { padding-left: 20px; margin: 10px 0; }
.desc li { margin-bottom: 6px; }
.desc table, .tab-content table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 15px 0; background-color: var(--bg-surface); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.desc tr, .tab-content tr { border-bottom: 1px solid var(--border); }
.desc tr:last-child, .tab-content tr:last-child { border-bottom: none; }
.desc th, .tab-content th, .desc td, .tab-content td { padding: 12px 16px; text-align: left; font-size: 13px; vertical-align: top; }
.desc th, .tab-content th { color: var(--text-tertiary); font-weight: 600; width: 42%; background-color: var(--bg-surface-2); white-space: nowrap; }
.desc td, .tab-content td { color: var(--text); font-weight: 500; }
.price-box { margin-bottom: 20px; }
.price-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.price-box .current { color: var(--accent); font-size: 30px; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.price-box .current svg { width: 22px; height: 22px; vertical-align: text-bottom; margin-right: 4px; fill: none; stroke: currentColor; stroke-width: 2; }
.price-box .old { text-decoration: line-through; color: var(--text-quaternary); font-size: 16px; display: flex; align-items: center; gap: 4px; }
.price-box .old svg { width: 18px; height: 18px; vertical-align: text-bottom; margin-right: 2px; fill: none; stroke: currentColor; stroke-width: 2; }
.save-badge { background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.02em; }
.price-tax { color: var(--text-secondary); font-size: 13px; margin: 4px 0 0; }
.product-sku { color: var(--text-tertiary); font-size: 12px; margin-bottom: 20px; }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 25px; }
.spec-item { background-color: var(--bg-surface); border: 1px solid var(--border); border-radius: 8px; padding: 15px; }
.spec-item i { color: var(--accent); margin-right: 8px; }
.spec-item span { color: var(--text-secondary); font-size: 13px; }
.spec-item strong { display: block; color: var(--text); font-size: 14px; margin-top: 5px; }
.stock-info { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; color: #4caf50; font-size: 14px; }
.qty-row { display: flex; gap: 15px; margin-bottom: 20px; }
.qty-control { display: flex; border: 1px solid var(--border-strong); border-radius: 6px; overflow: hidden; }
.qty-control button { background-color: var(--bg-surface-2); border: none; color: var(--text); width: 45px; height: 45px; font-size: 18px; cursor: pointer; }
.qty-control button:hover { background-color: var(--accent); color: #fff; }
.qty-control input { width: 60px; text-align: center; background: var(--bg-alt); border: none; color: var(--text); font-size: 16px; }
.btn-add { flex: 1; background-color: var(--accent); border: none; color: #fff; padding: 0 30px; border-radius: 6px; font-size: 16px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-add:hover { background-color: var(--accent-hover); }
.btn-wishlist-lg { background-color: var(--bg-surface-2); border: 1px solid var(--border-strong); color: var(--text); width: 50px; height: 50px; border-radius: 6px; font-size: 20px; cursor: pointer; }
.btn-wishlist-lg:hover { border-color: var(--accent); color: var(--accent); }
.trust-row { display: flex; gap: 20px; margin-top: 25px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-tertiary); }
.trust-item i { color: #4caf50; }
.product-tabs { max-width: 1200px; margin: 50px auto 0; background: var(--bg-surface); padding: 30px; border-radius: 12px; border: 1px solid var(--border); }
.tabs-header { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 25px; }
.tab-btn { background: none; border: none; color: var(--text-tertiary); padding: 15px 25px; font-size: 14px; font-weight: 600; cursor: pointer; border-bottom: 2px solid transparent; }
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-content { display: none; color: #333; }
.tab-content.active { display: block; }
.tab-content p { color: #555; font-size: 14px; line-height: 1.8; margin-bottom: 15px; }
.tab-content ul, .tab-content ol { color: #555; font-size: 14px; padding-left: 20px; margin-bottom: 15px; }
.tab-content ul li, .tab-content ol li { margin-bottom: 8px; line-height: 1.7; }
.tab-content h2 { color: #111; font-size: 20px; margin: 25px 0 12px; }
.tab-content h3 { color: #111; font-size: 17px; margin: 20px 0 10px; }
.tab-content strong { color: #111; }
.review-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
.review-stars i { color: #ffc107; font-size: 12px; }
.review-item p { color: var(--text-secondary); font-size: 13px; }
.review-date { color: var(--text-quaternary); font-size: 12px; }
.related-products { margin-top: 50px; }

/* Cart Page */
.cart-page { padding: 30px 0 70px; }
.cart-page h1 { font-family: 'Orbitron', sans-serif; margin-bottom: 30px; }
.cart-content { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; }
.cart-item { display: flex; align-items: center; gap: 20px; padding: 20px; background-color: var(--bg-surface); border: 1px solid var(--border); border-radius: 10px; margin-bottom: 15px; }
.item-image img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; }
.item-info { flex: 1; }
.item-info h4 { font-size: 14px; margin-bottom: 5px; }
.item-price { color: var(--accent); font-weight: 600; }
.item-total { font-weight: 700; color: var(--accent); min-width: 100px; text-align: right; }
.remove-btn { background: none; border: none; color: var(--text-tertiary); cursor: pointer; }
.remove-btn:hover { color: #f44336; }
.cart-summary { background-color: var(--bg-surface); border: 1px solid var(--border); border-radius: 10px; padding: 25px; position: sticky; top: 20px; }
.cart-summary h3 { font-family: 'Orbitron', sans-serif; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); }
.summary-row.total { border: none; font-size: 18px; font-weight: 700; color: var(--accent); padding-top: 15px; }
.btn-checkout { display: block; width: 100%; background-color: var(--accent); color: #fff; border: none; padding: 15px; border-radius: 6px; font-weight: 700; font-size: 14px; cursor: pointer; margin-top: 20px; text-align: center; }
.btn-checkout:hover { background-color: var(--accent-hover); }
.btn-continue { display: block; text-align: center; color: var(--text-tertiary); margin-top: 15px; font-size: 13px; }
.btn-continue:hover { color: var(--accent); }
.empty-cart-page { text-align: center; padding: 80px 20px; }
.empty-cart-page i { font-size: 60px; color: var(--border-strong); margin-bottom: 20px; }
.empty-cart-page h2 { font-family: 'Orbitron', sans-serif; margin-bottom: 10px; }
.empty-cart-page p { color: var(--text-tertiary); margin-bottom: 25px; }

@media (max-width: 560px) {
    .cart-item { flex-wrap: wrap; gap: 10px 14px; padding: 16px; }
    .item-image { order: 1; }
    .item-image img { width: 64px; height: 64px; }
    .item-info { order: 2; flex: 1 1 auto; min-width: 0; }
    .item-info h4 { white-space: normal; overflow-wrap: break-word; font-size: 13px; }
    .cart-item > form { order: 3; }
    .item-qty { order: 4; flex: 1 1 100%; }
    .item-total { order: 5; min-width: 0; flex: 1 1 100%; text-align: left; font-size: 15px; }
}

/* Checkout Page */
.checkout-page { padding: 30px 0 70px; }
.checkout-page h1 { font-family: 'Orbitron', sans-serif; margin-bottom: 30px; }
.checkout-content { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; }
.checkout-info h3 { font-family: 'Orbitron', sans-serif; font-size: 16px; margin-bottom: 20px; margin-top: 25px; }
.checkout-info h3:first-child { margin-top: 0; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 13px; color: var(--text-secondary); margin-bottom: 5px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background-color: var(--bg-surface); border: 1px solid var(--border-strong); color: var(--text); padding: 12px 15px; border-radius: 6px; font-size: 14px; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-option { display: flex; align-items: center; gap: 15px; padding: 15px; background-color: var(--bg-surface); border: 1px solid var(--border-strong); border-radius: 8px; cursor: pointer; }
.payment-option:hover { border-color: var(--accent); }
.payment-option input { display: none; }
.payment-option input:checked + .radio-custom { border-color: var(--accent); }
.payment-option input:checked + .radio-custom::after { display: block; }
.radio-custom { width: 18px; height: 18px; border: 2px solid var(--text-quaternary); border-radius: 50%; position: relative; }
.radio-custom::after { content: ''; position: absolute; top: 3px; left: 3px; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; display: none; }
.payment-info strong { display: block; font-size: 14px; }
.payment-info span { font-size: 12px; color: var(--text-tertiary); }
.error { color: #f44336; font-size: 12px; margin-top: 5px; display: block; }
.checkout-summary { background-color: var(--bg-surface); border: 1px solid var(--border); border-radius: 10px; padding: 25px; position: sticky; top: 20px; }
.checkout-summary h3 { font-family: 'Orbitron', sans-serif; margin-bottom: 20px; }
.order-items { margin-bottom: 20px; }
.order-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); }
.item-details { display: flex; gap: 10px; }
.item-name { font-size: 13px; }
.item-qty { color: var(--text-tertiary); font-size: 13px; }
.order-item .item-price { font-weight: 600; }
.order-totals .summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); }
.order-totals .summary-row.total { border: none; font-size: 18px; font-weight: 700; color: var(--accent); padding-top: 15px; }
.btn-place-order { display: block; width: 100%; background-color: var(--accent); color: #fff; border: none; padding: 15px; border-radius: 6px; font-weight: 700; font-size: 14px; cursor: pointer; margin-top: 20px; }
.btn-place-order:hover { background-color: var(--accent-hover); }
.secure-text { text-align: center; color: var(--text-tertiary); font-size: 12px; margin-top: 10px; }

/* Success Page */
.success-page { padding: 80px 0; }
.success-content { text-align: center; max-width: 600px; margin: 0 auto; }
.success-icon { font-size: 80px; color: #4caf50; margin-bottom: 20px; }
.success-content h1 { font-family: 'Orbitron', sans-serif; margin-bottom: 15px; }
.order-number { display: inline-block; background-color: var(--bg-surface); border: 1px solid var(--accent); padding: 10px 25px; border-radius: 8px; font-size: 20px; font-weight: 700; color: var(--accent); margin: 20px 0; }
.order-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 30px 0; text-align: left; }
.detail-group { background-color: var(--bg-surface); border: 1px solid var(--border); border-radius: 10px; padding: 20px; }
.detail-group h4 { font-size: 14px; margin-bottom: 10px; color: var(--accent); }
.detail-group p { font-size: 13px; color: var(--text-secondary); }
.detail-group .total { color: var(--accent); font-weight: 700; font-size: 16px; }
.confirmation-text { color: var(--text-tertiary); font-size: 13px; margin-bottom: 25px; }

/* Products Page */
.products-page { padding: 30px 0 70px; }
.products-layout { display: grid; grid-template-columns: 290px 1fr; gap: 30px; align-items: start; }
.products-top-bar { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; gap: 20px; }
.products-top-bar h1 { font-family: 'Orbitron', sans-serif; font-size: 24px; }
.results-count { color: var(--text-tertiary); font-size: 14px; }

/* View Toggle */
.view-toggle-bar { display: flex; gap: 6px; margin-bottom: 16px; }
.view-toggle-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background-color: var(--bg-surface); border: 1px solid var(--border-strong); border-radius: 8px; color: var(--text-tertiary); font-size: 14px; transition: all 0.2s; }
.view-toggle-btn:hover { color: var(--text); border-color: var(--border-strong); }
.view-toggle-btn.active { background-color: var(--accent); border-color: var(--accent); color: #fff; }

/* Mobile Filter Toggle */
.filter-toggle-btn { display: none; align-items: center; justify-content: center; gap: 8px; width: 100%; background-color: var(--bg-surface); border: 1px solid var(--border-strong); color: var(--text); padding: 12px 18px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; margin-bottom: 20px; }
.filter-toggle-btn i { color: var(--accent); }
.filter-toggle-btn .active-count { background-color: var(--accent); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 10px; }
.filter-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 199; }
.filter-overlay.open { display: block; }

/* Filter Sidebar */
.filter-sidebar { background-color: var(--bg-surface); border: 1px solid var(--border); border-radius: 14px; position: sticky; top: 80px; align-self: start; max-height: calc(100vh - 100px); overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--border-light) transparent; }
.filter-sidebar::-webkit-scrollbar { width: 5px; }
.filter-sidebar::-webkit-scrollbar-track { background: transparent; }
.filter-sidebar::-webkit-scrollbar-thumb { background-color: var(--border-light); border-radius: 10px; }
.filter-header { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; border-bottom: 1px solid var(--border); position: sticky; top: 0; background-color: var(--bg-surface-header); z-index: 2; border-radius: 14px 14px 0 0; }
.filter-header h3 { font-family: 'Orbitron', sans-serif; font-size: 15px; }
.filter-header h3 i { margin-right: 8px; color: var(--accent); }
.filter-header-actions { display: flex; align-items: center; gap: 14px; }
.reset-filters { color: var(--text-tertiary); font-size: 12px; transition: color 0.2s; }
.reset-filters:hover { color: var(--accent); }
.filter-close-btn { display: none; width: 26px; height: 26px; border-radius: 50%; background-color: var(--bg-surface-3); border: none; color: var(--text-tertiary); align-items: center; justify-content: center; cursor: pointer; }
.filter-close-btn:hover { background-color: var(--accent); color: #fff; }

.filter-group { padding: 0; border-bottom: 1px solid var(--border); }
.filter-group-last { border-bottom: none; padding-bottom: 6px; }
.filter-group-plain { padding: 18px 20px; }
.filter-group h4 { font-size: 11px; font-weight: 700; margin-bottom: 12px; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.6px; }
.filter-group-title { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; font-size: 11px; font-weight: 700; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.6px; cursor: pointer; list-style: none; user-select: none; }
.filter-group-title::-webkit-details-marker { display: none; }
.filter-group-title::marker { content: ''; }
.filter-group-title:hover { color: var(--text); }
.filter-group-title i { font-size: 10px; color: var(--text-quaternary); transition: transform 0.2s; }
.filter-group[open] .filter-group-title i { transform: rotate(180deg); }
.filter-group-body { padding: 0 20px 18px; }

.filter-search { position: relative; display: flex; align-items: center; background-color: var(--bg-surface-2); border: 1px solid var(--border-light); border-radius: 8px; }
.filter-search:focus-within { border-color: var(--accent); }
.filter-search i { position: absolute; left: 13px; color: var(--text-quaternary); font-size: 12px; }
.filter-search input { width: 100%; background: transparent; border: none; color: var(--text); padding: 10px 12px 10px 34px; font-size: 13px; outline: none; }

.filter-list { display: flex; flex-direction: column; gap: 2px; }
.filter-list-scroll { max-height: 220px; overflow-y: auto; }
.filter-list-scroll::-webkit-scrollbar { width: 5px; }
.filter-list-scroll::-webkit-scrollbar-track { background: transparent; }
.filter-list-scroll::-webkit-scrollbar-thumb { background-color: var(--border-light); border-radius: 10px; }
.filter-list-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px; font-size: 13px; color: var(--text-secondary); transition: all 0.2s; }
.filter-list-item:hover { background-color: var(--bg-surface-3); color: var(--text); }
.filter-list-item.active { background-color: rgba(226, 39, 39, 0.12); color: var(--accent); font-weight: 600; }
.filter-list-icon { flex-shrink: 0; width: 16px; text-align: center; color: var(--text-quaternary); font-size: 12px; }
.filter-list-item.active .filter-list-icon { color: var(--accent); }
.filter-list-label { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.filter-list-count { flex-shrink: 0; font-size: 10px; font-weight: 600; color: var(--text-tertiary); background-color: var(--bg-surface-3); padding: 3px 8px; border-radius: 20px; }
.filter-list-item.active .filter-list-count { background-color: rgba(226, 39, 39, 0.18); color: var(--accent); }

/* Price slider */
.price-slider-wrap { position: relative; height: 18px; margin: 6px 0 16px; }
.price-slider-track { position: absolute; top: 50%; left: 0; right: 0; height: 4px; background-color: var(--border-light); border-radius: 2px; transform: translateY(-50%); }
.price-slider-range { position: absolute; top: 0; height: 4px; background-color: var(--accent); border-radius: 2px; }
.price-range { position: absolute; top: 50%; left: 0; width: 100%; margin: 0; transform: translateY(-50%); -webkit-appearance: none; appearance: none; background: transparent; pointer-events: none; }
.price-range::-webkit-slider-thumb { -webkit-appearance: none; pointer-events: auto; width: 16px; height: 16px; border-radius: 50%; background-color: var(--accent); border: 3px solid var(--bg-surface); box-shadow: 0 0 0 1px var(--accent); cursor: pointer; }
.price-range::-moz-range-thumb { pointer-events: auto; width: 16px; height: 16px; border-radius: 50%; background-color: var(--accent); border: 3px solid var(--bg-surface); box-shadow: 0 0 0 1px var(--accent); cursor: pointer; }
.price-range::-moz-range-track { background: transparent; }
.price-inputs { display: flex; align-items: center; gap: 8px; }
.price-input-box { position: relative; flex: 1; }
.price-input-box label { position: absolute; top: -7px; left: 10px; background-color: var(--bg-surface); padding: 0 5px; font-size: 9px; color: var(--text-quaternary); text-transform: uppercase; letter-spacing: 0.5px; }
.price-input-box input { width: 100%; background-color: var(--bg-surface-2); border: 1px solid var(--border-light); color: var(--text); padding: 11px 38px 11px 10px; border-radius: 8px; font-size: 13px; outline: none; }
.price-input-box input:focus { border-color: var(--accent); }
.price-suffix { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); font-size: 10px; color: var(--text-quaternary); pointer-events: none; }
.price-sep { color: var(--text-quaternary); }

/* Stock pill */
.filter-pill { display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 8px; font-size: 13px; color: var(--text-secondary); background-color: var(--bg-surface-2); border: 1px solid var(--border-light); transition: all 0.2s; }
.filter-pill:hover { border-color: var(--border-strong); color: var(--text); }
.filter-pill.active { background-color: rgba(226, 39, 39, 0.12); border-color: var(--accent); color: var(--accent); font-weight: 600; }
.filter-pill i { font-size: 12px; }

.btn-apply-filter { display: flex; align-items: center; justify-content: center; gap: 8px; width: calc(100% - 40px); margin: 16px 20px 20px; background-color: var(--accent); border: none; color: #fff; padding: 12px; border-radius: 8px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; cursor: pointer; transition: background-color 0.2s; }
.btn-apply-filter:hover { background-color: var(--accent-hover); }

/* Sort select (top bar) */
.sort-select-wrap { position: relative; flex-shrink: 0; }
.sort-select-wrap .filter-select { background-color: var(--bg-surface); border: 1px solid var(--border-light); color: var(--text); padding: 10px 34px 10px 14px; border-radius: 8px; font-size: 13px; outline: none; cursor: pointer; appearance: none; -webkit-appearance: none; }
.sort-select-wrap .filter-select:focus { border-color: var(--accent); }
.sort-select-wrap .select-chevron { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); font-size: 11px; color: var(--text-quaternary); pointer-events: none; }

/* Active filter chips */
.active-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.chip { display: inline-flex; align-items: center; gap: 8px; background-color: var(--bg-surface); border: 1px solid var(--border-light); color: var(--text-secondary); padding: 6px 12px; border-radius: 20px; font-size: 12px; transition: all 0.2s; }
.chip i { font-size: 10px; color: var(--text-quaternary); }
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip:hover i { color: var(--accent); }

/* Boutique Products Grid density modes */
.products-main .products-grid.cols-5 { grid-template-columns: repeat(4, 1fr); }
.products-main .products-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.products-main .products-grid.cols-3 { grid-template-columns: repeat(3, 1fr); gap: 25px; }
.products-main .products-grid.cols-3 .product-img { height: 240px; }
.products-main .products-grid.list-view { display: flex; flex-direction: column; gap: 20px; }
.products-main .products-grid.list-view.compact .product-card-img { width: 120px; height: 120px; }
.products-main .products-grid.list-view.compact .product-card-body { padding: 12px 20px; }
.products-main .products-grid.list-view.compact .product-card-body h3 { font-size: 14px; margin-bottom: 6px; }
.products-main .products-grid.list-view.compact .card-current-price { font-size: 17px; }
.product-card-list { display: flex; background-color: var(--bg-surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all 0.3s; }
.product-card-list:hover { border-color: var(--accent); }
.product-card-img { flex-shrink: 0; width: 280px; height: 250px; background-color: #fff; display: flex; align-items: center; justify-content: center; padding: 20px; overflow: hidden; position: relative; }
.product-card-img img { width: 100%; height: 100%; object-fit: contain; transition: opacity 0.35s ease; }
.product-card-img .product-img-hover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; padding: 20px; box-sizing: border-box; background: #fff; }
.product-card-list:has(.product-img-hover):hover .product-img-hover { opacity: 1; }
.product-card-list:has(.product-img-hover):hover .product-card-img img:first-child { opacity: 0; }
.product-card-body { flex: 1; padding: 20px 25px; display: flex; flex-direction: column; }
.product-card-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.product-card-body h3,
.product-card-body h3 a {
    color: var(--text);
}
.product-card-body h3 a:hover { color: var(--accent); }
.product-specs { list-style: none; margin-bottom: 15px; }
.product-specs li { font-size: 13px; color: var(--text-secondary); padding: 3px 0; display: flex; align-items: center; gap: 8px; }
.spec-dot { width: 5px; height: 5px; border-radius: 50%; background-color: var(--accent); flex-shrink: 0; }
.product-card-pricing { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.card-current-price { color: var(--accent); font-size: 22px; font-weight: 700; overflow-wrap: anywhere; }
.card-old-price { text-decoration: line-through; color: var(--text-quaternary); font-size: 14px; }
.card-stock-badge { display: inline-block; padding: 4px 12px; border-radius: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; width: fit-content; margin-bottom: 12px; }
.card-stock-badge.in-stock { background-color: var(--accent); color: #fff; }
.card-stock-badge.out-of-stock { background-color: #666; color: #fff; }
.product-card-actions { display: flex; gap: 10px; margin-top: auto; }
.card-action-btn { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--border-strong); background-color: transparent; color: var(--text); font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.card-action-btn:hover { border-color: var(--accent); background-color: var(--accent); color: #fff; }
.card-action-btn.request-quote { border-color: #25d366; background-color: #25d366; color: #fff; }
.card-action-btn.request-quote:hover { border-color: #1fb855; background-color: #1fb855; color: #fff; }
.card-action-btn.is-disabled,
.card-action-btn:disabled { cursor: not-allowed; opacity: .5; border-color: var(--border); background-color: var(--bg-surface-2); color: var(--text-quaternary); }
.card-action-btn.is-disabled:hover,
.card-action-btn:disabled:hover { border-color: var(--border); background-color: var(--bg-surface-2); color: var(--text-quaternary); }
.price-labels { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.price-labels span:nth-child(2) { color: var(--text-quaternary); font-weight: 400; }
.filter-list-check { flex-shrink: 0; width: 16px; text-align: center; color: var(--text-quaternary); font-size: 14px; }
.filter-list-item.active .filter-list-check { color: var(--accent); }
.brand-logo-thumb { width: 31px; height: 31px; object-fit: contain; flex-shrink: 0; border-radius: 4px; background-color: #fff; padding: 2px; }
.filter-list-avatar { flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px; background-color: var(--bg-surface-3); color: var(--accent); font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.filter-list-item.active .filter-list-avatar { background-color: var(--accent); color: #fff; }
.top-bar-left { display: flex; align-items: center; gap: 15px; }
.top-bar-right { display: flex; align-items: center; gap: 15px; }
.top-bar-right label { font-size: 13px; color: var(--text-tertiary); white-space: nowrap; }

/* Products Grid */
.no-results { grid-column: 1 / -1; text-align: center; padding: 60px 20px; }
.no-results i { font-size: 40px; color: var(--border-strong); }
.no-results h3 { margin: 15px 0 10px; }
.no-results p { color: var(--text-tertiary); }
.pagination { display: flex; justify-content: center; gap: 5px; margin-top: 30px; list-style: none; }
.pagination ul { display: flex; gap: 5px; list-style: none; padding: 0; }
.pagination li { }
.pagination a, .pagination span { display: inline-block; padding: 8px 14px; border-radius: 4px; font-size: 13px; }
.pagination a { background-color: var(--bg-surface); border: 1px solid var(--border-strong); color: var(--text-secondary); text-decoration: none; }
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .active span { background-color: var(--accent); color: #fff; border: 1px solid var(--accent); }
.pagination .disabled span { background-color: var(--bg-surface); border: 1px solid var(--border); color: var(--text-quaternary); cursor: not-allowed; }

/* Infinite Scroll */
.infinite-scroll-loader { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 30px 0; color: var(--text-tertiary); font-size: 14px; }
.infinite-scroll-loader i { color: var(--accent); }
.infinite-scroll-end { text-align: center; padding: 30px 0; color: var(--text-quaternary); font-size: 13px; }

/* Theme Toggle */
.theme-toggle .fa-sun { color: #ffc107; }

/* Responsive */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(4, 1fr); }
    .categories-grid-showcase { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .products-main .products-grid.cols-5, .products-main .products-grid.cols-4 { grid-template-columns: repeat(3, 1fr); }
    .products-main .products-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
    .products-main .products-grid.list-view { flex-direction: column; }
    .product-card-img { width: 220px; height: 200px; }
}
@media (max-width: 992px) {
    .categories-grid-icons { grid-template-columns: repeat(2, 1fr); }
    .categories-grid-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .products-main .products-grid.cols-5, .products-main .products-grid.cols-4, .products-main .products-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
    .banners-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .search-bar { display: none; }
    .product-detail { grid-template-columns: 1fr; }
    .cart-content, .checkout-content { grid-template-columns: 1fr; }
    .order-details { grid-template-columns: 1fr; }
    .products-layout { grid-template-columns: 1fr; }
    .filter-toggle-btn { display: flex; }
    .filter-close-btn { display: flex; }
    .filter-sidebar { position: fixed; top: 0; left: -320px; height: 100vh; width: 300px; max-height: none; border-radius: 0; z-index: 200; transition: left 0.3s ease; }
    .filter-sidebar.open { left: 0; }
    .product-card-list { flex-direction: column; }
    .product-card-img { width: 100%; height: 250px; }
}
@media (max-width: 768px) {
    .top-bar-inner { flex-direction: column; gap: 5px; }
    .header-inner { flex-wrap: wrap; justify-content: center; }
    .nav-links { display: none; }
    .hero-slider { height: 400px; }
    .slide-content { padding-left: 30px; }
    .slide-content h1 { font-size: 32px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-strip-header { flex-direction: column; align-items: flex-start; gap: 14px; }
    .products-main .products-grid.cols-5, .products-main .products-grid.cols-4, .products-main .products-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
    .banners-grid { grid-template-columns: 1fr; }
    .newsletter-inner { flex-direction: column; text-align: center; }
    .newsletter-left { flex-direction: column; }
    .newsletter-form { flex-direction: column; width: 100%; }
    .newsletter-form input { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .footer-bottom-inner { flex-direction: column; gap: 10px; }
    .products-top-bar { flex-direction: column; align-items: stretch; gap: 12px; }
    .sort-select-wrap .filter-select { width: 100%; }
    .filter-sidebar { width: 85vw; left: -85vw; }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .categories-grid-icons { grid-template-columns: 1fr; }
    .categories-grid-showcase { grid-template-columns: 1fr; }
    .products-grid:not(.list-view) .product-card-img { height: 200px; }
}

/* NextLevel-style catalogue skin */
:root,
[data-theme="light"] {
    --bg: #f3f3f3;
    --bg-alt: #f0f0f0;
    --bg-header: #ffffff;
    --bg-surface: #ffffff;
    --bg-surface-2: #f7f7f7;
    --bg-surface-3: #eeeeee;
    --bg-surface-header: #ffffff;
    --border: #e4e4e4;
    --border-light: #dddddd;
    --border-strong: #cfcfcf;
    --text: #0d0d16;
    --text-secondary: #4b4b56;
    --text-tertiary: #73737c;
    --text-quaternary: #a2a2aa;
    --accent: #a329c7;
    --accent-hover: #8b1fae;
}

[data-theme="dark"] {
    --bg: #0a0a0a;
    --bg-alt: #111;
    --bg-header: #0d0d0d;
    --bg-surface: #141414;
    --bg-surface-2: #1a1a1a;
    --bg-surface-3: #1c1c1c;
    --bg-surface-header: #161616;
    --border: #222;
    --border-light: #2c2c2c;
    --border-strong: #333;
    --text: #fff;
    --text-secondary: #aaa;
    --text-tertiary: #888;
    --text-quaternary: #666;
    --accent: #a329c7;
    --accent-hover: #8b1fae;
}

body { background-color: var(--bg); }
.container { max-width: 1450px; }
.top-bar {
    background: var(--accent);
    border-bottom: none;
    padding: 6px 0;
    color: #fff;
}
.top-bar-inner { justify-content: center; }
.top-bar-left { display: none; }
.top-bar-right { gap: 18px; }
.top-bar-right a,
.top-bar-right a:hover { color: #fff; font-weight: 600; }
.top-bar-right a:nth-child(1)::before { content: "Service Client : 0663-608040"; }
.top-bar-right a:nth-child(1) { font-size: 0; }
.top-bar-right a:nth-child(1)::before { font-size: 13px; }
.top-bar-right a:nth-child(2)::before { content: "Magasin Marrakech : 05243-31564"; }
.top-bar-right a:nth-child(2) { font-size: 0; }
.top-bar-right a:nth-child(2)::before { font-size: 13px; }
.top-bar-right a:nth-child(3)::before { content: "Magasin Casablanca : 0520-802767"; }
.top-bar-right a:nth-child(3) { font-size: 0; }
.top-bar-right a:nth-child(3)::before { font-size: 13px; }
.top-bar-right i { margin-right: 4px; color: #fff; }

.header {
    background: #fff;
    border-bottom: none;
    padding: 22px 0;
}
.header-inner { gap: 48px; }
.logo img { height: 58px; }
.search-bar { max-width: 750px; }
.search-bar form {
    background: #fff;
    border: 1px solid #bebec6;
    border-radius: 7px;
}
.search-bar input {
    color: #222;
    padding: 15px 18px;
}
.search-btn {
    background: transparent;
    color: #777;
    padding: 0 18px;
}
.search-btn:hover { color: var(--accent); }
.header-action {
    color: #0f0a16;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}
.header-action i {
    color: var(--accent);
    font-size: 28px;
}
.theme-toggle { display: none; }
.cart-count { background: var(--accent); }

.main-nav {
    background: #110020;
    position: static;
}
.nav-links { width: 100%; align-items: stretch; }
.nav-links li a {
    padding: 18px 22px;
    font-size: 12px;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
}
.nav-links li a:hover,
.nav-links li a.active {
    background: var(--accent);
}
.nav-links li:first-child a::before {
    content: "\f0c9";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 10px;
}

.breadcrumb {
    background: #f5f5f5;
    border-bottom: none;
    padding: 18px 0 12px;
}
.breadcrumb a,
.breadcrumb span {
    color: #0f0a16;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}
.breadcrumb span:last-child { color: var(--accent); }

.products-page { padding: 10px 0 70px; }
.products-layout {
    grid-template-columns: 268px minmax(0, 1fr);
    gap: 26px;
}
@media (max-width: 992px) {
    .products-layout { grid-template-columns: 1fr !important; }
}
.filter-sidebar {
    border-radius: 7px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    top: 16px;
}
.filter-header {
    padding: 13px 14px;
    border-radius: 7px 7px 0 0;
    background: #fff;
}
.filter-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: #1b1b24;
}
.filter-header h3 i { display: none; }
.filter-group-title {
    padding: 13px 14px;
    color: #4a4a55;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
}
.filter-group-body { padding: 0 14px 12px; }
.filter-group-plain { padding: 14px; }
.filter-search {
    background: #fff;
    border-color: #d1d1d6;
    border-radius: 7px;
}
.filter-search input { color: #333; padding: 9px 12px 9px 34px; }
.filter-list-scroll { max-height: 205px; }
.filter-list-item {
    border-radius: 4px;
    padding: 8px 4px;
    color: #1b1b24;
}
.filter-list-check { color: #d9d9df; }
.filter-list-count {
    background: transparent;
    color: #1b1b24;
    font-size: 13px;
    font-weight: 500;
}
.brand-logo-thumb {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    padding: 3px;
    background-color: #fff;
    border: 1px solid #eee;
}
.price-slider-range,
.price-range::-webkit-slider-thumb { background-color: var(--accent); }
.price-range::-webkit-slider-thumb {
    border-color: #fff;
    box-shadow: 0 0 0 1px var(--accent);
}
.price-range::-moz-range-thumb {
    background-color: var(--accent);
    border-color: #fff;
    box-shadow: 0 0 0 1px var(--accent);
}

.catalogue-toolbar {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 7px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.12);
    margin-bottom: 12px;
    padding: 18px 22px;
}
.toolbar-view-row {
    display: flex;
    gap: 22px;
    margin-bottom: 14px;
}
.view-toggle-bar { margin: 0; }
.view-toggle-btn {
    width: auto;
    height: auto;
    border: none;
    background: transparent;
    border-radius: 0;
    color: #c5c5c8;
    font-size: 17px;
}
.view-toggle-btn.active,
.view-toggle-btn:hover {
    background: transparent;
    border-color: transparent;
    color: #12121c;
}
.toolbar-controls-row {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) auto auto;
    align-items: center;
    gap: 28px;
}
.results-count {
    color: #0f0f18;
    font-size: 15px;
    font-weight: 700;
}
.sort-select-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.sort-select-wrap label {
    color: #0f0f18;
    font-size: 14px;
    white-space: nowrap;
}
.sort-select-wrap .filter-select {
    min-width: 218px;
    background: #fff;
    border-color: #e2e2e2;
    border-radius: 0;
    color: #111;
    padding: 11px 42px 11px 13px;
}
.availability-select-wrap .filter-select { min-width: 218px; }

.products-main .products-grid.reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 8px;
}
.products-main .products-grid.reference-grid .product-card-list {
    min-height: 342px;
    border-color: #ededed;
    border-radius: 7px;
    box-shadow: 0 2px 9px rgba(0,0,0,0.08);
}
.products-main .products-grid.reference-grid .product-card-list:hover {
    border-color: #e1d5e8;
}
.products-main .products-grid.reference-grid .product-card-img {
    width: 50%;
    height: auto;
    min-height: 342px;
    padding: 32px;
}
.products-main .products-grid.reference-grid .product-card-body {
    padding: 60px 24px 36px 18px;
    justify-content: flex-start;
}
.products-main .products-grid.reference-grid .product-card-body h3 {
    color: #050510;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    margin-bottom: 8px;
    text-transform: none;
}
.products-main .products-grid.reference-grid .product-specs {
    margin-bottom: 20px;
}
.products-main .products-grid.reference-grid .product-specs li {
    color: #262635;
    font-size: 12px;
    line-height: 1.35;
    padding: 2px 0;
}
.products-main .products-grid.reference-grid .spec-dot {
    width: 7px;
    height: 7px;
    background: #a84cf0;
}
.products-main .products-grid.reference-grid .card-current-price {
    color: var(--accent);
    font-size: 25px;
    font-weight: 900;
}
.products-main .products-grid.reference-grid .card-old-price {
    color: #4d4d55;
    font-size: 12px;
}
.products-main .products-grid.reference-grid .card-stock-badge {
    transform: skewX(-10deg);
    border-radius: 0;
    margin: 2px 0 12px;
    padding: 5px 12px;
    font-size: 10px;
    font-style: italic;
}
.card-stock-badge.in-stock { background-color: #00d675; color: #fff; }
.products-main .products-grid.reference-grid .card-stock-badge.out-of-stock {
    background: #777;
}
.products-main .products-grid.reference-grid .product-card-actions {
    gap: 7px;
    margin-top: 0;
}
.products-main .products-grid.reference-grid .card-action-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: #120020;
    color: #fff;
    font-size: 15px;
}
.products-main .products-grid.reference-grid .card-action-btn:hover {
    background: var(--accent);
}

@media (max-width: 1200px) {
    .products-main .products-grid.reference-grid { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
    .toolbar-controls-row { grid-template-columns: 1fr; gap: 12px; }
    .sort-select-wrap { justify-content: space-between; }
    .products-main .products-grid.reference-grid .product-card-list { flex-direction: column; }
    .products-main .products-grid.reference-grid .product-card-img {
        width: 100%;
        min-height: 250px;
    }
    .products-main .products-grid.reference-grid .product-card-body { padding: 22px; }
}

/* Catalogue view variants */
.products-main .products-grid.cols-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 8px;
}
.products-main .products-grid.cols-4 .product-card {
    border-color: #ededed;
    border-radius: 7px;
    box-shadow: 0 2px 9px rgba(0,0,0,0.1);
    text-align: center;
}
.products-main .products-grid.cols-4 .product-card:hover {
    border-color: #e1d5e8;
}
.products-main .products-grid.cols-4 .product-badges,
.products-main .products-grid.cols-4 .wishlist-btn,
.products-main .products-grid.cols-4 .product-cat,
.products-main .products-grid.cols-4 .product-rating,
.products-main .products-grid.cols-4 .add-to-cart {
    display: none;
}
.products-main .products-grid.cols-4 .product-img {
    height: 380px;
    border-radius: 7px 7px 0 0;
    padding: 26px;
}
.products-main .products-grid.cols-4 .product-info {
    padding: 12px 20px 18px;
}
.products-main .products-grid.cols-4 .product-info h4 {
    display: block;
    min-height: 44px;
    margin: 0 0 8px;
    color: #050510;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: none;
}
.products-main .products-grid.cols-4 .product-bottom-row {
    display: block;
}
.products-main .products-grid.cols-4 .product-price {
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.products-main .products-grid.cols-4 .product-price .current {
    color: var(--accent);
    font-size: 17px;
    font-weight: 900;
}
.products-main .products-grid.cols-4 .product-price .old {
    color: #4d4d55;
    font-size: 11px;
}

.products-main .products-grid.list-view.compact {
    gap: 14px;
}
.products-main .products-grid.list-view.compact .product-card-list-wide-list {
    min-height: 342px;
    border-color: #ededed;
    border-radius: 7px;
    box-shadow: 0 2px 9px rgba(0,0,0,0.08);
}
.products-main .products-grid.list-view.compact .product-card-list-wide-list .product-card-img {
    width: 34%;
    height: auto;
    min-height: 342px;
    padding: 34px;
}
.products-main .products-grid.list-view.compact .product-card-list-wide-list .product-card-body {
    max-width: 420px;
    padding: 62px 24px 36px 16px;
}
.products-main .products-grid.list-view.compact .product-card-list-wide-list .product-card-body h3 {
    color: #050510;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}
.products-main .products-grid.list-view.compact .product-card-list-wide-list .product-specs li {
    color: #262635;
    font-size: 12px;
    line-height: 1.35;
    padding: 2px 0;
}
.products-main .products-grid.list-view.compact .product-card-list-wide-list .spec-dot {
    width: 7px;
    height: 7px;
    background: #a84cf0;
}
.products-main .products-grid.list-view.compact .product-card-list-wide-list .card-current-price {
    color: var(--accent);
    font-size: 25px;
    font-weight: 900;
}
.products-main .products-grid.list-view.compact .product-card-list-wide-list .card-stock-badge {
    transform: skewX(-10deg);
    border-radius: 0;
    margin: 2px 0 12px;
    padding: 5px 12px;
    font-size: 10px;
    font-style: italic;
}
.products-main .products-grid.list-view.compact .product-card-list-wide-list .product-card-actions {
    gap: 7px;
    margin-top: 0;
}
.products-main .products-grid.list-view.compact .product-card-list-wide-list .card-action-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: #120020;
    color: #fff;
}

.products-main .products-grid.list-view:not(.compact) {
    gap: 12px;
}
.product-card-list-full-list {
    display: grid;
    grid-template-columns: 250px minmax(360px, 1fr) 190px 150px;
    align-items: center;
    min-height: 236px;
    border-color: #ededed;
    border-radius: 7px;
    box-shadow: 0 2px 9px rgba(0,0,0,0.08);
}
.product-card-list-full-list .product-card-img {
    width: 250px;
    height: 236px;
    padding: 26px 34px;
}
.product-card-list-full-list .product-card-body {
    padding: 26px 18px;
}
.product-card-list-full-list .product-card-body h3 {
    color: #050510;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 18px;
}
.product-card-list-full-list .product-specs {
    margin: 0;
}
.product-card-list-full-list .product-specs li {
    color: #303040;
    font-size: 14px;
    line-height: 1.35;
    padding: 5px 0;
}
.product-card-list-full-list .spec-dot {
    width: 8px;
    height: 8px;
    background: #a84cf0;
}
.product-card-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
}
.product-card-brand img {
    width: 78px;
    max-height: 76px;
    object-fit: contain;
}
.product-card-brand span:not(.full-stock-line) {
    color: #222;
    font-weight: 800;
    text-align: center;
}
.full-stock-line {
    display: block;
    width: 90px;
    height: 14px;
    border-radius: 999px;
    background: #88d83a;
}
.full-stock-line.out-of-stock {
    background: #777;
}
.product-card-brand small {
    color: #303040;
    font-size: 12px;
}
.product-card-buy {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    padding-right: 38px;
}
.product-card-buy .product-card-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    margin: 0;
}
.product-card-buy .card-current-price {
    color: var(--accent);
    font-size: 18px;
    font-weight: 900;
    white-space: nowrap;
}
.product-card-buy .card-old-price {
    color: #4d4d55;
    font-size: 11px;
    white-space: nowrap;
}
.qty-mini {
    display: grid;
    grid-template-columns: 36px 36px 36px;
    height: 37px;
    background: #f8f8f8;
}
.qty-mini button,
.qty-mini span {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #050510;
    font-size: 16px;
    font-weight: 700;
}
.product-card-buy .product-card-actions {
    gap: 7px;
    margin: 0;
}
.product-card-buy .card-action-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: #120020;
    color: #fff;
}

@media (max-width: 1280px) {
    .products-main .products-grid.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .products-main .products-grid.cols-4 .product-img { height: 320px; }
    .product-card-list-full-list {
        grid-template-columns: 220px minmax(300px, 1fr) 150px 140px;
    }
    .product-card-list-full-list .product-card-img {
        width: 220px;
    }
}

@media (max-width: 992px) {
    .products-main .products-grid.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .products-main .products-grid.list-view.compact .product-card-list-wide-list,
    .product-card-list-full-list {
        display: flex;
        flex-direction: column;
    }
    .products-main .products-grid.list-view.compact .product-card-list-wide-list .product-card-img,
    .product-card-list-full-list .product-card-img {
        width: 100%;
        min-height: 240px;
    }
    .products-main .products-grid.list-view.compact .product-card-list-wide-list .product-card-body,
    .product-card-list-full-list .product-card-body,
    .product-card-buy {
        max-width: none;
        width: 100%;
        padding: 22px;
        align-items: flex-start;
    }
}

/* Brand theme modes */
:root,
[data-theme="dark"] {
    --bg: #090909;
    --bg-alt: #111111;
    --bg-header: #101010;
    --bg-surface: #171717;
    --bg-surface-2: #1f1f1f;
    --bg-surface-3: #262626;
    --bg-surface-header: #141414;
    --border: #242424;
    --border-light: #323232;
    --border-strong: #3d3d3d;
    --text: #f6f6f6;
    --text-secondary: #c2c2c2;
    --text-tertiary: #9a9a9a;
    --text-quaternary: #707070;
    --accent: #d62222;
    --accent-hover: #b91c1c;
    --brand-nav: #130709;
    --brand-top: #0c0c0c;
    --brand-card-shadow: rgba(0,0,0,0.28);
}

[data-theme="light"] {
    --bg: #f5f3f1;
    --bg-alt: #ece8e4;
    --bg-header: #ffffff;
    --bg-surface: #ffffff;
    --bg-surface-2: #f6f1ee;
    --bg-surface-3: #ece5e1;
    --bg-surface-header: #faf7f5;
    --border: #e6dbd6;
    --border-light: #dacac4;
    --border-strong: #cbb9b2;
    --text: #171312;
    --text-secondary: #514743;
    --text-tertiary: #756862;
    --text-quaternary: #a29189;
    --accent: #d62222;
    --accent-hover: #b91c1c;
    --brand-nav: #1a0b0d;
    --brand-top: #ffffff;
    --brand-card-shadow: rgba(70,25,20,0.08);
}

body { background-color: var(--bg); color: var(--text); }
.top-bar {
    background: #080808;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: #cfcfcf;
    font-size: 12px;
    padding: 9px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-bar-left span {
    color: #d8d8d8;
    font-weight: 500;
}
.top-bar-left strong {
    color: var(--accent);
    font-weight: 700;
}
.top-bar-right a,
.top-bar-right a:hover,
.top-bar-right i { color: #d0d0d0; }
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 22px;
}
.top-bar-right a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.01em;
}
.top-bar-right a::before {
    content: none !important;
}
.top-bar-right a:nth-child(1),
.top-bar-right a:nth-child(2),
.top-bar-right a:nth-child(3) {
    font-size: 12px !important;
    line-height: 1.2 !important;
}
.header {
    background:
        linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0)),
        radial-gradient(circle at 0% 0%, rgba(214,34,34,0.16), transparent 32%),
        #0b0b0b;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 18px 0;
}
.header-inner {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) 220px minmax(320px, 1fr);
    align-items: center;
    gap: 28px;
}
.logo {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}
.header-logo-centered {
    justify-content: center;
    width: 100%;
}
.logo img {
    height: 54px;
    width: auto;
    display: block;
}
.header-logo-centered img {
    margin: 0 auto;
}
.search-bar {
    max-width: 430px;
    width: 100%;
}
.search-bar form {
    background: #ffffff;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}
.search-bar input {
    color: #121212;
    padding: 15px 18px;
    font-size: 15px;
    background: #fff;
}
.search-bar input::placeholder { color: #7b7b7b; }
.search-btn {
    background: var(--accent);
    color: #fff;
    width: 64px;
    font-size: 18px;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    justify-content: flex-end;
}
.header-action {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #f1f1f1;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    transition: color 0.2s ease;
    text-transform: none;
}
.header-action i {
    color: #f4f4f4;
    font-size: 19px;
}
.header-action span {
    line-height: 1;
}
.header-action:hover,
.header-action:hover i {
    color: var(--accent);
}
.theme-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: auto;
    padding: 0;
    border: none;
    border-radius: 4px;
    background: transparent;
    box-shadow: none;
}
.theme-toggle i {
    color: #ffcc33;
}
.theme-toggle span {
    display: none;
}
.main-nav {
    background:
        linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
        #111111;
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner { display: flex; align-items: center; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}
.nav-links li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #f2f2f2;
}
.nav-links li a::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 11px;
    height: 2px;
    background: transparent;
    transition: background-color 0.2s ease;
}
.nav-links li a:hover,
.nav-links li a.active {
    background: transparent;
    color: #fff;
}
.nav-links li a:hover::after,
.nav-links li a.active::after {
    background: var(--accent);
}
.nav-caret {
    font-size: 10px;
    color: #969696;
}
.has-mega-menu { position: relative; }
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #18181b;
    border: 1px solid var(--border);
    border-top: 2px solid var(--accent);
    padding: 30px 0;
    z-index: 1000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.has-mega-menu:hover .mega-menu { display: block; }
.mega-menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding: 0 20px;
}
.mega-menu-title {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.mega-menu-title:hover { color: var(--accent); }
.mega-menu-col ul { list-style: none; padding: 0; margin: 0; }
.mega-menu-col ul li a {
    display: block;
    padding: 5px 0;
    font-size: 13px;
    color: #aaa;
    transition: color 0.2s;
}
.mega-menu-col ul li a:hover { color: var(--accent); }
[data-theme="light"] .top-bar,
[data-theme="light"] .header,
[data-theme="light"] .main-nav {
    color-scheme: dark;
}
.breadcrumb {
    background: transparent;
}
.breadcrumb a,
.breadcrumb span {
    color: var(--text-secondary);
}
.breadcrumb span:last-child {
    color: var(--accent);
}
.filter-sidebar,
.catalogue-toolbar,
.product-card,
.product-card-list,
.products-main .products-grid.reference-grid .product-card-list,
.products-main .products-grid.list-view.compact .product-card-list-wide-list,
.product-card-list-full-list,
.products-main .products-grid.cols-4 .product-card {
    background: var(--bg-surface);
    border-color: var(--border);
    box-shadow: 0 8px 24px var(--brand-card-shadow);
}
.filter-header {
    background: var(--bg-surface-header);
}
.filter-group-title,
.results-count,
.sort-select-wrap label,
.products-main .products-grid.reference-grid .product-card-body h3,
.products-main .products-grid.cols-4 .product-info h4,
.product-card-list-full-list .product-card-body h3 {
    color: var(--text);
}
.filter-search,
.sort-select-wrap .filter-select,
.qty-mini {
    background: var(--bg-surface-2);
    border-color: var(--border-light);
    color: var(--text);
}
.filter-list-item,
.product-specs li,
.product-card-body .product-specs li,
.products-main .products-grid.reference-grid .product-specs li,
.products-main .products-grid.list-view.compact .product-card-list-wide-list .product-specs li,
.product-card-list-full-list .product-specs li,
.product-card-brand small {
    color: var(--text-secondary);
}
.view-toggle-btn.active,
.view-toggle-btn:hover {
    color: var(--accent);
}
.products-main .products-grid.reference-grid .spec-dot,
.products-main .products-grid.list-view.compact .product-card-list-wide-list .spec-dot,
.product-card-list-full-list .spec-dot {
    background: var(--accent);
}
.products-main .products-grid.reference-grid .card-action-btn,
.products-main .products-grid.list-view.compact .product-card-list-wide-list .card-action-btn,
.product-card-buy .card-action-btn {
    background: var(--brand-nav);
    color: #fff;
}
.products-main .products-grid.reference-grid .card-action-btn:hover,
.products-main .products-grid.list-view.compact .product-card-list-wide-list .card-action-btn:hover,
.product-card-buy .card-action-btn:hover {
    background: var(--accent);
}
.products-main .products-grid.reference-grid .card-action-btn.is-disabled,
.products-main .products-grid.reference-grid .card-action-btn:disabled,
.products-main .products-grid.list-view.compact .product-card-list-wide-list .card-action-btn.is-disabled,
.products-main .products-grid.list-view.compact .product-card-list-wide-list .card-action-btn:disabled,
.product-card-buy .card-action-btn.is-disabled,
.product-card-buy .card-action-btn:disabled {
    cursor: not-allowed;
    opacity: .5;
    background: var(--bg-surface-2);
    color: var(--text-quaternary);
}
.products-main .products-grid.cols-4 .product-img,
.product-card-img,
.product-card-list-full-list .product-card-img {
    background: #ffffff;
}
[data-theme="dark"] .catalogue-toolbar,
[data-theme="dark"] .filter-sidebar,
[data-theme="dark"] .product-card,
[data-theme="dark"] .product-card-list {
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
[data-theme="dark"] .products-main .products-grid.cols-4 .product-info h4,
[data-theme="dark"] .product-card-body h3,
[data-theme="dark"] .product-card-body h3 a,
[data-theme="dark"] .products-main .products-grid.reference-grid .product-card-body h3,
[data-theme="dark"] .products-main .products-grid.reference-grid .product-card-body h3 a,
[data-theme="dark"] .product-card-list-full-list .product-card-body h3,
[data-theme="dark"] .product-price .current,
[data-theme="dark"] .product-card-brand span:not(.full-stock-line) {
    color: #f6f6f6;
}
[data-theme="dark"] .products-main .products-grid.cols-4 .product-price .old,
[data-theme="dark"] .card-old-price,
[data-theme="dark"] .product-rating span {
    color: #9d9d9d;
}

@media (max-width: 1100px) {
    .header-inner {
        grid-template-columns: 1fr;
        justify-items: stretch;
        gap: 18px;
    }
    .logo {
        justify-content: center;
    }
    .search-bar {
        max-width: 100%;
    }
    .header-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    .top-bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .top-bar-right {
        flex-wrap: wrap;
        gap: 12px;
    }
    .top-bar-left span,
    .top-bar-right a {
        font-size: 11px;
    }
    .header-action {
        font-size: 12px;
    }
    .header-action:not(.theme-toggle) span {
        display: inline;
    }
    .nav-links {
        overflow-x: auto;
        white-space: nowrap;
        width: 100%;
        padding-bottom: 4px;
    }
}

body.search-open {
    overflow: hidden;
}

.header-search-trigger-form,
.header-search-trigger-form * {
    cursor: pointer;
}

.search-bar input[readonly] {
    cursor: pointer;
}

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    pointer-events: none;
}

.search-overlay.is-open {
    pointer-events: auto;
}

.search-overlay-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.is-open .search-overlay-backdrop {
    opacity: 1;
}

.search-drawer {
    position: relative;
    z-index: 1;
    width: min(500px, 100vw);
    height: 100%;
    background: #050505;
    border-right: 1px solid rgba(255,255,255,0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.search-overlay.is-open .search-drawer {
    transform: translateX(0);
}

.search-drawer-head {
    padding: 26px 38px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.search-drawer-form {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 18px;
}

.search-drawer-form > i,
.search-drawer-close {
    color: #f1f1f1;
}

.search-drawer-form > i {
    font-size: 21px;
}

.search-drawer-form input {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    outline: none;
}

.search-drawer-form input::placeholder {
    color: #e2e2e2;
}

.search-drawer-close {
    border: none;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
}

.search-drawer-body {
    padding: 26px 38px 42px;
    overflow-y: auto;
}

.search-drawer-body::-webkit-scrollbar {
    width: 8px;
}

.search-drawer-body::-webkit-scrollbar-track {
    background: transparent;
}

.search-drawer-body::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.38);
    border-radius: 999px;
}

.search-drawer-group + .search-drawer-group {
    margin-top: 28px;
}

.search-drawer-title {
    margin-bottom: 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.search-drawer-links {
    display: grid;
    gap: 8px;
}

.search-drawer-links a {
    display: block;
    padding: 3px 0;
}

.search-drawer-links a span {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.42;
}

.search-drawer-links a:hover span {
    color: var(--accent);
}

/* ── Mobile hamburger + off-canvas nav drawer ── */
.mobile-nav-toggle {
    display: none;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #fff;
    font-size: 19px;
    cursor: pointer;
    flex-shrink: 0;
}

.mnav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1300;
    pointer-events: none;
}
.mnav-overlay.is-open { pointer-events: auto; }
.mnav-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.62);
    opacity: 0;
    transition: opacity .3s ease;
}
.mnav-overlay.is-open .mnav-backdrop { opacity: 1; }
.mnav-drawer {
    position: relative;
    z-index: 1;
    width: min(320px, 84vw);
    height: 100%;
    background: #0a0a0a;
    border-right: 1px solid rgba(255,255,255,.1);
    transform: translateX(-100%);
    transition: transform .3s ease;
    display: flex;
    flex-direction: column;
}
.mnav-overlay.is-open .mnav-drawer { transform: translateX(0); }
.mnav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.mnav-logo img { height: 34px; width: auto; }
.mnav-close {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: none;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}
.mnav-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-shrink: 0;
}
.mnav-tab {
    flex: 1;
    padding: 13px 10px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: #999;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    cursor: pointer;
}
.mnav-tab.is-active {
    color: #fff;
    border-bottom-color: var(--accent);
}

.mnav-panel {
    display: none;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}
.mnav-panel.is-active { display: block; }

.mnav-links {
    list-style: none;
    padding: 10px 0;
}
.mnav-links li a {
    display: block;
    padding: 14px 22px;
    color: #f1f1f1;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.mnav-links li a:hover,
.mnav-links li a:active { color: var(--accent); }
.mnav-links li a.mnav-special { color: var(--accent); }

.mnav-cat-links li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.mnav-cat-links li a small {
    color: #888;
    font-size: 12px;
    font-weight: 600;
}
.mnav-foot {
    padding: 16px 22px 22px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.mnav-account {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d8d8d8;
    font-size: 14px;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0;
    width: 100%;
    text-align: left;
}
.mnav-account:hover { color: var(--accent); }
body.mnav-open { overflow: hidden; }

.hero-slider {
    height: 610px;
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.slide {
    align-items: stretch;
    background-image: linear-gradient(rgba(0,0,0,0.16), rgba(0,0,0,0.58)), var(--desktop-bg);
    background-size: cover;
    background-position: center;
}

.hero-slide-inner {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.slide-content {
    max-width: 640px;
    padding-left: 56px;
}

.slide-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: #f5f5f5;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.slide-label {
    display: none;
}

.slide-content h1 {
    font-size: clamp(52px, 6vw, 60px);
    line-height: 0.96;
    margin-bottom: 20px;
    letter-spacing: 0;
}

.slide-content h1 .highlight {
    color: var(--accent);
}

.slide-content p {
    max-width: 540px;
    font-size: 18px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 34px;
}

.hero-cta {
    padding: 16px 36px;
    border: none;
    border-radius: 0;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.hero-cta:hover {
    background: var(--accent-hover);
    color: #fff;
}

.slider-btn {
    display: none;
}

.slider-dots {
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    gap: 16px;
}

.dot {
    width: 48px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255,255,255,0.28);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.dot.active {
    transform: none;
    background: rgba(255,255,255,0.28);
}

.slideshow__progress-bar {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left center;
}

.dot.is-progressing .slideshow__progress-bar {
    animation: slideshowProgress 6000ms linear forwards;
}

.hero-slider.is-paused .dot.is-progressing .slideshow__progress-bar {
    animation-play-state: paused;
}

@keyframes slideshowProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@media (max-width: 900px) {
    .hero-slider {
        height: min(82vh, 680px);
        min-height: 560px;
    }
    .slide {
        background-image: linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.18) 42%, rgba(0,0,0,0.78) 100%), var(--mobile-bg);
        background-position: center top;
    }

    .slide-content {
        padding-left: 24px;
        max-width: 100%;
    }

    .slide-content h1 {
        font-size: 44px;
    }

    .slide-content p {
        font-size: 15px;
        max-width: 420px;
    }
}

@media (max-width: 600px) {
    .hero-slider { height: min(84vh, 640px); min-height: 540px; }
    .slide { background-image: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.2) 42%, rgba(0,0,0,0.82) 100%), var(--mobile-bg); background-position: center top; }
    .slide-content { padding-left: 20px; padding-right: 20px; padding-bottom: 70px; }
    .slide-content h1 {
        font-size: clamp(26px, 8vw, 34px);
        line-height: 1.05;
        word-break: break-word;
    }
    .slide-content p { font-size: 13px; max-width: 100%; margin-bottom: 22px; }
    .hero-cta { padding: 13px 24px; font-size: 12px; }
    .slider-dots { bottom: 26px; }
}

/* Vektra-style desktop header pass */
.top-bar {
    background: var(--accent) !important;
    border: 0 !important;
    color: #fff !important;
    height: 33px;
    padding: 0 !important;
}

.top-bar .container {
    max-width: 1400px;
}

.top-bar-inner {
    height: 33px;
    display: grid !important;
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    align-items: center;
    justify-items: center;
    gap: 0 !important;
}

.promo-arrow {
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}

.top-promo-slider {
    position: relative;
    height: 20px;
    overflow: hidden;
    flex: 1;
    width: 100%;
    justify-self: stretch;
}
.promo-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s, transform 0.4s;
}
.promo-slide.active {
    opacity: 1;
    transform: translateY(0);
}
.promo-slide i {
    margin-right: 6px;
}

.header {
    background: #000 !important;
    border-bottom: 1px solid #1d1d1d !important;
    padding: 0 !important;
}

.header .container {
    max-width: 1400px;
}

.header-inner {
    height: 108px;
    display: grid !important;
    grid-template-columns: 360px minmax(180px, 1fr) 360px !important;
    align-items: center;
    gap: 0 !important;
}

.search-bar {
    max-width: none !important;
    width: auto !important;
    justify-self: start;
}

.header-search-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    border: 0;
    background: transparent;
    color: #cfcfcf;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    cursor: pointer;
}

.header-search-link i {
    color: #f1f1f1;
    font-size: 18px;
}

.header-search-link:hover,
.header-search-link:hover i {
    color: #fff;
}

.header-logo-centered {
    justify-self: center;
    justify-content: center;
    width: auto !important;
}

.logo img,
.header-logo-centered img {
    height: 54px !important;
    width: auto;
    margin: 0 auto;
}

.header-actions {
    justify-self: end;
    justify-content: flex-end !important;
    gap: 28px !important;
}

.header-action {
    color: #d8d8d8 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    gap: 7px !important;
}

.header-action i {
    color: #d8d8d8 !important;
    font-size: 10px !important;
}

.cart-btn i {
    font-size: 19px !important;
}
.cart-btn .cart-label {
    display: none !important;
}
.cart-btn {
    flex-direction: row !important;
    align-items: center !important;
}

.hidden-theme-toggle {
    display: none !important;
}

.header-actions > a.header-action:first-of-type:has(.header-caret) {
    display: none !important;
}

@media (min-width: 1101px) {
    .cart-btn {
        padding-right: 23px;
    }

    .cart-count {
        top: 50% !important;
        right: 0 !important;
        transform: translateY(-50%);
        width: 18px !important;
        height: 18px !important;
        background: #e7e7e7 !important;
        color: #000 !important;
        font-size: 10px !important;
        font-weight: 800 !important;
    }
}

.main-nav {
    position: relative !important;
    top: auto !important;
    z-index: 100 !important;
    background: #000 !important;
    border-top: 0 !important;
    border-bottom: 1px solid #1d1d1d !important;
}

.main-nav .container {
    max-width: 1400px;
}

.nav-inner {
    height: 48px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #222;
}

.nav-links {
    display: flex !important;
    align-items: center !important;
    justify-content: center;
    gap: 0 !important;
    width: auto !important;
}

.nav-links li a {
    display: inline-flex !important;
    align-items: center;
    padding: 0 15px !important;
    height: 48px;
    color: #aaa !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
    text-transform: none !important;
    white-space: nowrap !important;
}

.nav-links li a::after,
.nav-links li a.active::after,
.nav-links li a:hover::after {
    display: none !important;
}

.nav-links li:first-child a::before {
    display: none !important;
    content: none !important;
}

.nav-links li a:hover {
    color: #fff !important;
}

.nav-links li a.nav-special {
    color: var(--accent) !important;
}

.nav-links li a.nav-special:hover {
    color: #ff4a4a !important;
}

.mega-menu {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    width: min(1180px, calc(100vw - 40px));
    top: 100%;
    background:
        linear-gradient(135deg, rgba(214,34,34,0.12), rgba(214,34,34,0) 34%),
        #070707 !important;
    border: 1px solid #242424 !important;
    border-top: 2px solid var(--accent) !important;
    border-radius: 0 0 8px 8px;
    padding: 0 !important;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0,0,0,0.62);
}

.has-mega-menu:hover .mega-menu {
    display: block;
}

.mega-menu-inner {
    max-width: none !important;
    display: grid !important;
    grid-template-columns: 1.45fr repeat(4, 1fr) !important;
    gap: 0 !important;
    padding: 28px !important;
    margin: 0 !important;
}

.mega-feature-card {
    min-height: 240px;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 !important;
    margin-right: 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    color: #fff !important;
    height: auto !important;
    white-space: normal !important;
    position: relative;
}
.mega-feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.mega-feature-card::after,
.mega-feature-card::before {
    display: none !important;
}

.mega-feature-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mega-feature-card strong {
    max-width: 230px;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    line-height: 1.06;
    text-transform: uppercase;
}

.mega-feature-card small {
    max-width: 250px;
    display: block;
    margin-top: 12px;
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    line-height: 1.45;
}

.mega-feature-link {
    margin-top: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mega-menu-col {
    padding: 2px 20px;
    border-left: 1px solid rgba(255,255,255,0.08);
}

.mega-menu-title {
    display: block !important;
    margin: 0 0 15px !important;
    padding: 0 0 11px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
}

.mega-menu-col ul {
    display: grid;
    gap: 2px;
}

.mega-menu-col ul li a {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    height: auto !important;
    padding: 8px 0 !important;
    color: #bdbdbd !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    transition: color 0.18s ease, transform 0.18s ease;
}

.mega-menu-col ul li a::after {
    content: '';
    display: block !important;
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.18s ease;
}

.mega-menu-col ul li a:hover {
    color: #fff !important;
    transform: translateX(3px);
}

.mega-menu-col ul li a:hover::after {
    width: 28px;
}

.mega-menu-col ul li a span {
    display: inline-flex;
    align-items: center;
    min-height: 18px;
    padding: 3px 7px;
    border-radius: 999px;
    background: rgba(214,34,34,0.16);
    color: #ff5c5c;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.mega-menu-highlight {
    background: rgba(255,255,255,0.025);
}

.mega-menu-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    padding: 15px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.035);
    color: #cfcfcf;
    font-size: 12px;
    font-weight: 700;
}

.mega-menu-bottom i {
    margin-right: 8px;
    color: var(--accent);
}

@media (max-width: 1100px) {
    .mega-menu {
        display: none !important;
    }
}

@media (max-width: 1100px) {
    .top-bar-inner {
        grid-template-columns: 28px minmax(0, 1fr) 28px;
    }

    .header-inner {
        height: auto;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        padding: 18px 0;
    }

    .search-bar,
    .header-logo-centered,
    .header-actions {
        justify-self: center;
    }

    .nav-links {
        justify-content: flex-start;
        overflow-x: auto;
        width: 100% !important;
    }

    .search-bar {
        display: flex !important;
        max-width: 44px !important;
        width: 44px !important;
        overflow: hidden;
    }
    .header-search-link span { display: none; }
    .header-search-link { gap: 0; }

    .header-actions { gap: 20px !important; }
    .theme-toggle {
        width: 32px; height: 32px;
        justify-content: center;
        background: rgba(255,255,255,.06);
        border-radius: 50%;
    }
    .theme-toggle i { font-size: 14px !important; }
    .cart-btn { min-height: 32px; }

    /* Compact single-row mobile header */
    .mobile-nav-toggle { display: flex; }
    .header-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 12px 0 !important;
        gap: 10px;
    }
    .mobile-nav-toggle { order: 1; }
    .header-logo-centered {
        order: 2;
        flex: 1;
        display: flex;
        justify-content: center;
    }
    .logo img, .header-logo-centered img { height: 32px !important; }
    .search-bar { order: 3; flex: 0 0 auto; max-width: 40px !important; width: 40px !important; }
    .header-actions {
        order: 4;
        flex: 0 0 auto;
        justify-content: flex-end !important;
        gap: 14px !important;
    }
    .header-actions .theme-toggle,
    .header-actions a.header-action:not(.cart-btn),
    .header-actions form,
    .header-actions button.header-action {
        display: none !important;
    }
    .cart-btn i { font-size: 18px; }
    .main-nav { display: none; }
}

/* Keep desktop mega menu aligned inside the visible shop layout */
@media (min-width: 1101px) {
    .has-mega-menu {
        position: static !important;
    }

    .main-nav {
        position: relative !important;
    }

    .mega-menu {
        left: 50% !important;
        right: auto !important;
        top: 100% !important;
        width: min(1180px, calc(100vw - 64px)) !important;
        max-width: calc(100vw - 64px) !important;
        transform: translateX(-50%) !important;
    }

    .mega-menu-inner {
        grid-template-columns: 1.1fr repeat(4, minmax(0, 1fr)) !important;
        padding: 26px !important;
    }

    .mega-feature-card {
        min-width: 0;
        margin-right: 20px !important;
        overflow: hidden;
    }

    .mega-feature-card strong {
        max-width: 100%;
        font-size: 20px;
        overflow-wrap: anywhere;
    }

    .mega-feature-card small {
        max-width: 100%;
    }

    .mega-menu-col {
        min-width: 0;
        padding: 2px 16px !important;
    }
}

/* Vektra-style product detail page */
.product-page {
    background: var(--bg);
    padding: 34px 0 70px;
}

.product-detail-vektrapc {
    max-width: 1380px;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    gap: 54px;
    align-items: start;
}

.product-gallery-vektrapc {
    position: sticky;
    top: 18px;
    min-width: 0;
}

.product-gallery-stage {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 610px;
    background: #fff;
    border: 1px solid #e8e2df;
    border-radius: 8px;
    overflow: hidden;
}

.product-main-frame {
    width: 100%;
    height: 100%;
    min-height: 610px;
    display: grid;
    place-items: center;
    padding: 46px;
    background: #fff;
}

.product-main-frame img {
    width: 100%;
    max-width: 640px;
    max-height: 520px;
    object-fit: contain;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e3ddda;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #171312;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.gallery-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.gallery-prev { left: 18px; }
.gallery-next { right: 18px; }

.product-thumbnails-vektrapc {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    padding: 2px 2px 10px;
}

.product-thumb-btn {
    width: 92px;
    height: 92px;
    flex: 0 0 92px;
    display: grid;
    place-items: center;
    border: 1px solid #e8e2df;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.product-thumb-btn img {
    width: 78px;
    height: 78px;
    object-fit: contain;
}

.product-thumb-btn.active,
.product-thumb-btn:hover {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.product-buy-panel {
    padding-top: 4px;
}

.product-brand-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    min-height: 46px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid #e8e2df;
    border-radius: 6px;
    background: #fff;
}

.product-brand-logo {
    max-width: 112px;
    max-height: 34px;
    object-fit: contain;
    filter: none !important;
    margin: 0 !important;
}

.product-buy-panel h1 {
    max-width: 620px;
    margin-bottom: 16px;
    color: var(--text);
    font-family: 'Orbitron', sans-serif;
    font-size: 30px;
    line-height: 1.16;
    text-transform: none;
}

.product-buy-panel .rating {
    margin-bottom: 18px;
}

.product-short-copy {
    max-width: 640px;
    margin-bottom: 22px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.75;
}

.product-buy-panel .price-box {
    margin: 22px 0;
    padding: 24px;
    border: 1px solid #e8e2df;
    border-radius: 8px;
    background: var(--bg-surface);
}

.product-buy-panel .price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
}

.product-buy-panel .price-row .current {
    color: var(--accent);
    font-size: 34px;
    font-weight: 900;
}

.product-buy-panel .price-row .old {
    color: var(--text-tertiary);
    font-size: 16px;
    text-decoration: line-through;
}

.product-buy-panel .save-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(214,34,34,0.12);
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
}

.price-tax,
.product-sku {
    color: var(--text-tertiary);
    font-size: 13px;
}

.product-highlights {
    display: grid;
    gap: 10px;
    margin: 18px 0 22px;
    padding: 0;
    list-style: none;
}

.product-highlights li {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
}

.product-highlights span {
    color: var(--text-tertiary);
    font-size: 13px;
}

.product-highlights strong {
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
}

.vektra-stock-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0 16px;
    color: #38a169;
    font-weight: 800;
}

.pickup-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 22px;
    padding: 17px 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-surface);
}

.pickup-box strong,
.pickup-box span {
    display: block;
}

.pickup-box strong {
    color: var(--text);
    font-size: 14px;
}

.pickup-box span {
    margin-top: 3px;
    color: var(--text-tertiary);
    font-size: 13px;
}

.pickup-box i {
    color: var(--accent);
    font-size: 22px;
}

.add-cart-form {
    flex: 1;
    display: flex;
}

.product-buy-panel .qty-row {
    align-items: stretch;
    gap: 12px;
}

.product-buy-panel .qty-control {
    border-radius: 4px;
}

.product-buy-panel .qty-control button,
.product-buy-panel .qty-control input {
    height: 50px;
}

.product-buy-panel .btn-add {
    min-height: 50px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.product-buy-panel .btn-add.disabled {
    width: 100%;
    opacity: 0.58;
    cursor: not-allowed;
}

.product-buy-panel .btn-wishlist-lg {
    width: 52px;
    height: 50px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-surface);
}

.product-buy-panel .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.product-buy-panel .trust-item {
    padding: 0;
    color: var(--text-secondary);
    font-size: 13px;
}

.product-tabs-vektrapc {
    max-width: 1380px;
    margin-top: 58px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-surface);
    overflow: hidden;
}

.tab-accordion {
    width: 100%;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    border: 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg-surface);
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    font-weight: 900;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
}

.tab-accordion.active {
    color: var(--accent);
}

.tab-accordion i {
    transition: transform 0.2s ease;
}

.tab-accordion.active i {
    transform: rotate(180deg);
}

.product-tabs-vektrapc .tab-content {
    display: none;
    padding: 28px 24px 34px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    line-height: 1.8;
}

.product-tabs-vektrapc .tab-content.active {
    display: block;
}

.spec-list-vektrapc {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
}

.spec-list-vektrapc div {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.spec-list-vektrapc dt {
    color: var(--text-tertiary);
    font-weight: 600;
}

.spec-list-vektrapc dd {
    color: var(--text);
    margin: 0;
    font-weight: 700;
}

@media (max-width: 980px) {
    .product-detail-vektrapc {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-gallery-vektrapc {
        position: relative;
        top: auto;
    }

    .product-gallery-stage,
    .product-main-frame {
        min-height: 420px;
    }

    .product-buy-panel h1 {
        font-size: 24px;
    }

    .spec-list-vektrapc {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE  — full redesign
═══════════════════════════════════════════════════════════ */

/* Breadcrumb */
.pd-breadcrumb {
    padding: 14px 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-tertiary);
}
.pd-breadcrumb a {
    color: var(--text-tertiary);
    transition: color .2s;
}
.pd-breadcrumb a:hover { color: var(--accent); }
.pd-breadcrumb i {
    font-size: 9px;
    margin: 0 7px;
    opacity: .5;
    vertical-align: middle;
}
.pd-breadcrumb span { color: var(--text); font-weight: 500; }

body.pd-page {
    background: var(--bg);
}

[data-theme="light"] body.pd-page {
    background: var(--bg);
}

/* ── HERO wrapper ── */
.pd-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 24px 28px;
    background: transparent;
    border-bottom: 1px solid var(--border);
}
.pd-hero > .pd-gallery,
.pd-hero > .pd-panel {
    min-width: 0;
}

/* ── Gallery column ── */
.pd-gallery {
    padding: 32px 28px 28px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
}

/* Gallery inner: main image on top, thumbs below */
.pd-gallery-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Vertical thumbnail strip — now HORIZONTAL at bottom */
.pd-thumbs-vert {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}
.pd-thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    border: 2px solid var(--border);
    background: #ffffff;
    padding: 5px;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color .2s, box-shadow .2s;
    overflow: hidden;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pd-thumb.is-active,
.pd-thumb:hover {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(226,39,39,.15);
}

/* Main stage */
.pd-stage {
    position: relative;
    flex: 1;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    cursor: zoom-in;
}
.pd-stage img {
    max-width: 100%;
    max-height: 420px;
    width: 100%;
    object-fit: contain;
    display: block;
    transition: opacity .18s ease, transform .18s ease;
}

/* Stage badge */
.pd-stage-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: .04em;
    z-index: 3;
}

/* Nav arrows */
.pd-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    background: var(--bg-surface);
    color: var(--text-secondary);
    font-size: 12px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 4;
    transition: all .2s;
    opacity: 0;
}
.pd-stage:hover .pd-nav { opacity: 1; }
.pd-nav:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.pd-nav-prev { left: 10px; }
.pd-nav-next { right: 10px; }

/* Zoom button — icon only, bottom right */
.pd-zoom {
    position: absolute;
    bottom: 14px; right: 14px;
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    background: var(--bg-surface);
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 4;
    transition: all .2s;
    opacity: 0;
}
.pd-stage:hover .pd-zoom { opacity: 1; }
.pd-zoom:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: scale(1.08); }
.pd-zoom i { font-size: 15px; }

/* Thumbnails (old horizontal — now replaced by vertical strip above) */
.pd-thumbs { display: none; }

/* Dot indicators */
.pd-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 4;
}
.pd-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--border-strong);
    cursor: pointer;
    transition: background .2s, transform .2s;
    padding: 0;
}
.pd-dot.is-active {
    background: var(--accent);
    transform: scale(1.3);
}

/* ── Purchase panel ── */
.pd-panel {
    padding: 36px 36px 36px 40px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Brand */
.pd-brand {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    margin-bottom: 12px;
    transition: color .2s;
}
.pd-brand:hover { color: var(--accent); }
.pd-brand img {
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
[data-theme="light"] .pd-brand img { filter: none; }

/* Title */
.pd-h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -.01em;
    color: var(--text);
    margin-bottom: 12px;
}

/* Stars */
.pd-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 14px;
}
.pd-stars i { color: #f5a623; font-size: 13px; }
.pd-stars-label {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-left: 6px;
}

/* Short description */
.pd-excerpt {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.pd-excerpt strong { color: var(--text); }

/* Divider */
.pd-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 0 20px;
}

/* Pricing */
.pd-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.pd-price-main {
    font-size: 30px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.pd-price-old {
    font-size: 15px;
    color: var(--text-quaternary);
    text-decoration: line-through;
}
.pd-discount-pill {
    background: rgba(226,39,39,.12);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    border: 1px solid rgba(226,39,39,.25);
}
.pd-price-note {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-bottom: 4px;
}
.pd-sku-line {
    font-size: 11px;
    color: var(--text-quaternary);
    margin-bottom: 16px;
}
.pd-sku-line strong { color: var(--text-tertiary); }

/* Availability */
.pd-availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}
.pd-avail-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.pd-availability.is-in  { color: #27ae60; }
.pd-availability.is-in  .pd-avail-dot { background: #27ae60; box-shadow: 0 0 0 3px rgba(39,174,96,.2); }
.pd-availability.is-out { color: #e74c3c; }
.pd-availability.is-out .pd-avail-dot { background: #e74c3c; }

/* CTA block */
.pd-cta-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

/* Qty + Add to cart inline row */
.pd-qty-addcart {
    display: flex;
    align-items: stretch;
    gap: 10px;
}
.pd-qty {
    display: flex;
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    overflow: hidden;
    height: 50px;
    flex-shrink: 0;
}
.pd-qty-btn {
    width: 42px; height: 50px;
    background: var(--bg-surface-2);
    border: none;
    color: var(--text);
    font-size: 20px;
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
}
.pd-qty-btn:hover { background: var(--accent); color: #fff; }
.pd-qty input {
    width: 46px;
    text-align: center;
    background: transparent;
    border: none;
    border-left: 1px solid var(--border-strong);
    border-right: 1px solid var(--border-strong);
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    outline: none;
}
.pd-qty-addcart #pdCartForm { flex: 1; }
.pd-qty-addcart .pd-btn-cart { width: 100%; height: 50px; }
.pd-qty-addcart .pd-btn-wish { flex-shrink: 0; width: 50px; height: 50px; align-self: auto; }

/* Buy now + WhatsApp inline row */
.pd-buy-row {
    display: flex;
    gap: 10px;
}
.pd-buy-row .pd-btn-buy,
.pd-buy-row .pd-btn-whatsapp { flex: 1; }

/* WhatsApp button */
.pd-btn-whatsapp {
    height: 46px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: inherit;
    transition: background .2s, transform .1s;
    text-decoration: none;
}
.pd-btn-whatsapp:hover { background: #1ebe57; transform: translateY(-1px); }
.pd-btn-whatsapp i { font-size: 18px; }
.pd-btn-request { min-width: 220px; background: #25d366; border-color: #25d366; color: #fff; }
.pd-price-main { overflow-wrap: anywhere; }

/* Buttons */
.pd-btn-cart {
    height: 50px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    gap: 10px;
    letter-spacing: .03em;
    transition: background .2s, transform .1s;
    font-family: inherit;
}
.pd-btn-cart:hover { background: var(--accent-hover); transform: translateY(-1px); }
.pd-btn-cart:active { transform: translateY(0); }
.pd-btn-cart.pd-btn-disabled {
    opacity: .45;
    cursor: not-allowed;
    pointer-events: none;
}

.pd-btn-buy {
    height: 46px;
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border-strong);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .2s, color .2s;
    font-family: inherit;
}
.pd-btn-buy:hover { border-color: var(--accent); color: var(--accent); }

.pd-btn-wish {
    align-self: flex-start;
    width: 46px; height: 46px;
    border-radius: 8px;
    border: 1.5px solid var(--border-strong);
    background: transparent;
    color: var(--text-secondary);
    font-size: 18px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
}
.pd-btn-wish:hover,
.pd-btn-wish.is-wished { border-color: var(--accent); color: var(--accent); }

/* Trust badges */
.pd-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 18px;
}
.pd-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.4;
}
.pd-trust-item i {
    font-size: 20px;
    color: #27ae60;
}
.pd-trust-item small { font-size: 10px; color: var(--text-tertiary); }

/* Share row */
.pd-share {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
}
/* Share row — no circles */
.pd-share {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.pd-sh {
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    border: none;
    font-size: 16px;
    color: var(--text-tertiary);
    transition: color .2s;
    padding: 2px;
}
.pd-sh:hover { color: var(--accent); }
.pd-sh.fb, .pd-sh.pi, .pd-sh.tw, .pd-sh.em { background: none; color: var(--text-tertiary); }

/* ── TABS ── */
.pd-tabs-section {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
}
.pd-tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--border);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 36px;
    overflow-x: auto;
    gap: 0;
}
.pd-tnav {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-tertiary);
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pd-tnav:hover { color: var(--text); }
.pd-tnav.is-active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}
.pd-tnav-count {
    background: var(--bg-surface-2);
    border: 1px solid var(--border);
    color: var(--text-tertiary);
    font-size: 10px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 10px;
}

.pd-tabs-body { }
.pd-tpanel { display: none; }
.pd-tpanel.is-active { display: block; }

.pd-tab-content {
    padding: 42px 36px;
    max-width: 1280px;
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--text-secondary);
}
.pd-tab-content > * {
    max-width: 1040px;
}
.pd-tab-content p { margin-bottom: 14px; }
.pd-tab-content strong, .pd-tab-content b { color: var(--text); }
.pd-tab-content h2 { font-family: 'Orbitron', sans-serif; font-size: 17px; color: var(--text); margin: 26px 0 12px; }
.pd-tab-content h3 { font-size: 15px; color: var(--text); margin: 20px 0 10px; font-weight: 700; }
.pd-tab-content ul, .pd-tab-content ol { padding-left: 22px; margin-bottom: 14px; }
.pd-tab-content li { margin-bottom: 6px; }
.pd-empty { color: var(--text-tertiary); font-style: italic; }

/* Specs table */
.pd-specs-tbl { width: 100%; border-collapse: collapse; }
.pd-specs-tbl tr { border-bottom: 1px solid var(--border); }
.pd-specs-tbl tr:last-child { border-bottom: none; }
.pd-specs-tbl th {
    width: 36%; padding: 12px 16px;
    background: var(--bg-surface-2);
    color: var(--text-tertiary);
    font-size: 13px; font-weight: 600;
    text-align: left;
}
.pd-specs-tbl td {
    padding: 12px 16px;
    color: var(--text);
    font-size: 13px;
    text-align: left;
}

/* Reviews */
.pd-review {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.pd-review:last-child { border-bottom: none; }
.pd-rev-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}
.pd-rev-name { font-size: 14px; font-weight: 700; color: var(--text); display: block; }
.pd-rev-date { font-size: 11px; color: var(--text-quaternary); }
.pd-rev-stars i { color: #f5a623; font-size: 12px; }
.pd-rev-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.pd-empty-reviews {
    text-align: center;
    padding: 48px 0;
    color: var(--text-tertiary);
}
.pd-empty-reviews i { font-size: 36px; margin-bottom: 12px; display: block; }

/* Info cards (delivery/warranty) */
.pd-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
}
.pd-info-card {
    background: var(--bg-surface-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px;
}
.pd-info-card i {
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}
.pd-info-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}
.pd-info-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ── Related products carousel ── */
.pd-related {
    padding: 52px 0 72px;
    border-top: 1px solid var(--border);
}
.pd-related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.pd-related-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--text);
}
.pd-rel-arrows {
    display: flex;
    gap: 8px;
}
.pd-rel-arrow {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    background: var(--bg-surface);
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
}
.pd-rel-arrow:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.pd-rel-arrow.is-disabled { opacity: .35; pointer-events: none; }

.pd-rel-track-wrap {
    overflow: hidden;
    margin: 0 -8px;
}
.pd-rel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 8px 8px;
}
.pd-rel-track::-webkit-scrollbar { display: none; }
.pd-rel-item {
    flex: 0 0 calc(20% - 16px); /* 5 cards visible */
    scroll-snap-align: start;
    min-width: 0;
}
.pd-related .product-img {
    padding: 0;
}
.pd-related .product-img > img:not(.product-img-hover) {
    width: 112%;
    height: 112%;
    max-width: none;
    object-fit: cover;
}
.pd-related .product-img-hover {
    padding: 0;
    object-fit: cover;
}

/* ── Zoom modal ── */
.pd-modal {
    display: none;
    position: fixed; inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
}
.pd-modal.is-open { display: flex; }
.pd-modal-bg {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.92);
}
.pd-modal-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 1;
    min-height: 0;
}
.pd-modal img {
    position: relative;
    max-width: 82vw;
    max-height: 74vh;
    object-fit: contain;
    border-radius: 8px;
    z-index: 2;
    transition: opacity .12s ease;
}
.pd-modal-close {
    position: fixed;
    top: 20px; right: 24px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 3;
    transition: background .2s;
}
.pd-modal-close:hover { background: var(--accent); border-color: var(--accent); }

.pd-modal-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 3;
    transition: background .2s;
}
.pd-modal-nav:hover { background: var(--accent); border-color: var(--accent); }
.pd-modal-prev { left: 24px; }
.pd-modal-next { right: 24px; }

.pd-modal-thumbs {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 10px;
    max-width: 90vw;
    overflow-x: auto;
    padding-bottom: 4px;
}
.pd-modal-thumb {
    width: 60px; height: 60px;
    flex-shrink: 0;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,.15);
    background: #fff;
    padding: 4px;
    cursor: pointer;
    overflow: hidden;
    transition: border-color .2s;
}
.pd-modal-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pd-modal-thumb.is-active,
.pd-modal-thumb:hover { border-color: var(--accent); }

/* ═══════════════════════════════════════════════
   PRODUCT PAGE — RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 960px) {
    .pd-hero { grid-template-columns: 1fr; }
    .pd-gallery { border-right: none; border-bottom: 1px solid var(--border); padding: 20px; }
    .pd-panel { padding: 24px 20px; }
    .pd-stage { min-height: 300px; }
    .pd-stage img { max-height: 300px; }
    .pd-trust { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .pd-info-grid { grid-template-columns: 1fr; gap: 12px; }
    .pd-tabs-nav { overflow-x: auto; }
    .pd-rel-item { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 600px) {
    /* Breadcrumb */
    .pd-breadcrumb { font-size: 11px; }

    /* Gallery */
    .pd-gallery { padding: 14px; }
    .pd-stage { min-height: 240px; }
    .pd-stage img { max-height: 240px; }
    .pd-thumbs-vert { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
    .pd-thumb { flex-shrink: 0; width: 54px; height: 54px; }

    /* Panel */
    .pd-panel { padding: 16px; }
    .pd-h1 { font-size: 15px; line-height: 1.3; }
    .pd-price-main { font-size: 22px; }
    .pd-price-old { font-size: 13px; }

    /* CTA */
    .pd-qty-addcart { flex-direction: column; gap: 8px; }
    .pd-qty-wrap { flex-direction: row; align-items: center; gap: 10px; }
    .pd-qty-addcart .pd-btn-cart { width: 100%; }
    .pd-btn-buy, .pd-btn-whatsapp { height: 44px; font-size: 13px; }
    .pd-btn-wish { width: 100%; height: 44px; border-radius: 8px; }

    /* Trust */
    .pd-trust { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 12px 0; }
    .pd-trust-item { font-size: 10px; }
    .pd-trust-item i { font-size: 17px; }

    /* Tabs */
    .pd-tabs-nav { padding: 0 8px; }
    .pd-tnav { padding: 12px 12px; font-size: 12px; }
    .pd-tab-content { padding: 18px 16px; font-size: 13px; }
    .pd-tab-content > * { max-width: none; }
    .pd-info-grid { grid-template-columns: 1fr; }

    /* Related */
    .pd-related { padding: 28px 0 44px; }
    .pd-related-header h2 { font-size: 14px; }
    .pd-rel-item { flex: 0 0 calc(50% - 10px); }

    /* Zoom modal */
    .pd-modal img { max-width: 96vw; max-height: 80vh; }
    .pd-modal-close { top: 12px; right: 12px; width: 32px; height: 32px; font-size: 14px; }
}
/* legacy pd- removed */

/* legacy removed */
.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 60px 20px;
}
.auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
}
.auth-card h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 6px;
}
.auth-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 30px;
}
.auth-field {
    margin-bottom: 18px;
}
.auth-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.auth-field input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-alt);
    color: var(--text);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}
.auth-field input:focus {
    border-color: var(--accent);
}
.auth-error {
    color: #e53e3e;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}
.auth-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.auth-check {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
}
.auth-submit {
    width: 100%;
    justify-content: center;
    padding: 14px;
}
.auth-switch {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-secondary);
}
.auth-switch a {
    color: var(--accent);
    font-weight: 600;
}

/* ── Sticky Theme FAB ────────────────────────────── */
.theme-fab {
    position: fixed;
    bottom: 28px;
    right: 22px;
    z-index: 9999;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: var(--bg-card, #1a1a1a);
    box-shadow: 0 4px 20px rgba(0,0,0,.45), 0 0 0 2px rgba(226,39,39,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, box-shadow .2s ease;
    overflow: hidden;
}
.theme-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(0,0,0,.55), 0 0 0 2px rgba(226,39,39,.5);
}
.theme-fab:active { transform: scale(.95); }

/* track + thumb (toggle pill inside button) */
.theme-fab-track {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: hidden;
}
.theme-fab-thumb {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 50%, #f0e7cc 50%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.theme-fab.is-light .theme-fab-thumb {
    transform: rotate(180deg);
}

/* icons */
.theme-fab-icon {
    position: relative;
    z-index: 1;
    font-size: 20px;
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
}
.theme-fab-moon { color: #e2d96e; opacity: 1; transform: scale(1); }
.theme-fab-sun  { color: #f59e0b; opacity: 0; transform: scale(.5) rotate(90deg); position: absolute; }

.theme-fab.is-light .theme-fab-moon { opacity: 0; transform: scale(.5) rotate(-90deg); }
.theme-fab.is-light .theme-fab-sun  { opacity: 1; transform: scale(1) rotate(0deg); }
.pd-video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 12px; }
.pd-video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Final mobile storefront polish */
@media (max-width: 768px) {
    html, body { overflow-x: hidden; }
    .container { padding: 0 14px; }
    .top-bar { padding: 7px 0; }
    .top-bar-inner { justify-content: center; text-align: center; }
    .top-bar-right { display: none; }
    .header { padding: 10px 0 12px; position: sticky; top: 0; z-index: 120; }
    .header-inner { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 10px 14px; }
    .logo img { height: 40px; }
    .header-actions { justify-content: flex-end; gap: 8px; min-width: 0; }
    .header-action { width: 38px; height: 38px; justify-content: center; border: 1px solid var(--border); border-radius: 8px; background-color: var(--bg-surface); }
    .header-action i { font-size: 16px; }
    .header-action span:not(.cart-count) { display: none !important; }
    .cart-count { top: -7px; right: -7px; }
    .search-bar { display: block; grid-column: 1 / -1; max-width: none; width: 100%; order: 3; }
    .search-bar input { min-height: 42px; padding: 11px 13px; font-size: 16px; }
    .search-btn { width: 48px; padding: 0; }
    .main-nav { position: sticky; top: 102px; z-index: 110; overflow: hidden; }
    .nav-inner { overflow-x: auto; scrollbar-width: none; padding: 0 0 0 14px; }
    .nav-inner::-webkit-scrollbar { display: none; }
    .nav-links { display: flex; flex-wrap: nowrap; min-width: max-content; }
    .nav-links li a { padding: 12px 14px; white-space: nowrap; font-size: 12px; }
    .hero-slider { height: min(84vh, 640px); min-height: 540px; }
    .slide { align-items: flex-end; background-image: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.2) 42%, rgba(0,0,0,0.82) 100%), var(--mobile-bg); background-position: center top; }
    .slide-content { padding: 0 26px 62px 18px; max-width: 100%; }
    .slide-label { font-size: 10px; padding: 5px 10px; margin-bottom: 10px; }
    .slide-kicker { font-size: 11px; margin-bottom: 10px; max-width: 340px; }
    .slide-content h1 { font-size: 28px; line-height: 1.04; margin-bottom: 8px; max-width: 360px; }
    .slide-content p { font-size: 13px; line-height: 1.45; margin-bottom: 14px; max-width: 340px; }
    .btn-primary { width: auto; min-width: 210px; justify-content: center; min-height: 42px; padding: 11px 18px; font-size: 12px; }
    .slider-btn { width: 36px; height: 36px; font-size: 13px; }
    .slider-btn.prev { left: 10px; }
    .slider-btn.next { right: 10px; }
    .slider-dots { bottom: 28px; }
    .categories, .products-section { padding: 42px 0; }
    .categories .container { display: flex; flex-direction: column; }
    .categories-strip-header { display: contents; }
    .categories-strip-header > div { order: 1; }
    .home-category-cards { order: 2; margin-top: 18px; }
    .category-view-all {
        order: 3;
        margin-top: 22px;
        align-self: center;
        width: 100%;
        justify-content: center;
        min-height: 46px;
        border-radius: 10px;
        background: var(--accent);
        border-color: var(--accent);
        color: #fff;
        font-weight: 800;
        box-shadow: 0 10px 24px rgba(226, 39, 39, .22);
    }
    .category-view-all:hover {
        background: var(--accent-hover);
        border-color: var(--accent-hover);
        color: #fff;
    }
    .home-category-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }
    .home-category-cards .category-showcase-card {
        height: 238px;
    }
    .promo-banners { padding-bottom: 42px; }
    .categories-header { margin-bottom: 24px; text-align: left; }
    .categories-header h2, .section-header h2 { font-size: 22px; line-height: 1.2; }
    .section-header { align-items: flex-start; gap: 12px; margin-bottom: 22px; }
    .view-all { white-space: nowrap; padding-top: 4px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-item { align-items: flex-start; gap: 10px; }
    .feature-item i { font-size: 21px; }
    .feature-item h4 { font-size: 13px; line-height: 1.25; }
    .feature-item p { font-size: 11px; line-height: 1.35; }
    .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .products-main .products-grid.cols-5,
    .products-main .products-grid.cols-4,
    .products-main .products-grid.cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .product-img { aspect-ratio: 1 / 0.92; height: auto; min-height: 0; }
    .products-section .product-card .product-img > img:not(.product-img-hover),
    .products-main .product-card .product-img > img:not(.product-img-hover) {
        transform: scale(1.1) !important;
    }
    .product-info h4 a { overflow-wrap: anywhere; }
    .banners-grid { grid-template-columns: 1fr; }
    .promo-banner { height: 150px; padding: 22px; }
    .banner-content h3 { font-size: 18px; }
    .newsletter-inner { flex-direction: column; text-align: center; }
    .newsletter-left { flex-direction: column; }
    .newsletter-form { flex-direction: column; width: 100%; }
    .newsletter-form input, .newsletter-form .btn-primary { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .footer-bottom-inner { flex-direction: column; gap: 10px; }
    .products-top-bar { flex-direction: column; align-items: stretch; gap: 12px; }
    .view-toggle-bar { overflow-x: auto; justify-content: flex-start; padding-bottom: 2px; scrollbar-width: none; }
    .view-toggle-bar::-webkit-scrollbar { display: none; }
    .sort-select-wrap .filter-select { width: 100%; }
    .filter-sidebar { width: 85vw; left: -85vw; }
    .filter-toggle-btn { position: sticky; top: 158px; z-index: 80; width: 100%; justify-content: center; margin-bottom: 14px; }
    .product-detail { gap: 22px; margin-top: 18px; }
    .gallery { position: static; }
    .main-img { padding: 16px; }
    .qty-row { flex-direction: column; }
    .btn-add { min-height: 44px; }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
    .hero-slider { height: min(82vh, 610px); min-height: 500px; }
    .slide-content { padding: 0 18px 58px 14px; }
    .slide-content h1 { font-size: 26px; max-width: 330px; }
    .slide-content p { max-width: 320px; }
    .products-grid,
    .products-main .products-grid.cols-5,
    .products-main .products-grid.cols-4,
    .products-main .products-grid.cols-3,
    .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .home-category-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 16px;
    }
    .home-category-cards .category-showcase-card {
        height: 154px;
        border-radius: 8px;
    }
    .home-category-cards .category-showcase-info {
        padding: 9px 8px;
    }
    .home-category-cards .category-showcase-info h4 {
        font-size: 10px;
        line-height: 1.18;
        margin-bottom: 3px;
    }
    .home-category-cards .category-showcase-info p {
        font-size: 9px;
    }
    .products-main .products-grid.list-view { display: flex; gap: 10px; }
    .product-card-list { display: grid; grid-template-columns: 112px minmax(0, 1fr); width: 100%; min-height: 132px; }
    .product-card-list .product-card-img { grid-row: 1 / span 2; width: 112px !important; height: 132px !important; min-height: 132px !important; padding: 10px; }
    .product-card-list .product-card-body { min-width: 0; padding: 10px; }
    .product-card-list .product-card-body h3 { font-size: 12px; line-height: 1.35; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .product-card-list .product-specs { margin-bottom: 8px; }
    .product-card-list .product-specs li { font-size: 11px; line-height: 1.35; padding: 2px 0; }
    .product-card-list .product-specs li:nth-child(n+3) { display: none; }
    .product-card-list .product-card-brand { display: none; }
    .product-card-list .product-card-buy { grid-column: 2; width: auto; padding: 0 10px 10px; border-left: 0; align-items: flex-start; }
    .product-card-list .product-card-pricing { margin-bottom: 6px; gap: 6px; flex-wrap: wrap; }
    .product-card-list .card-current-price { font-size: 14px; }
    .product-card-list .card-old-price { font-size: 11px; }
    .product-card-list .qty-mini { display: none; }
    .product-card-list .product-card-actions { gap: 6px; }
    .product-card-list .card-action-btn { width: 32px; height: 32px; font-size: 12px; }
    .categories-grid-icons,
    .categories-grid-showcase { grid-template-columns: 1fr; }
    .category-icon-card { padding: 16px; border-radius: 10px; }
    .category-icon-info ul li:nth-child(n+3) { display: none; }
    .product-card { border-radius: 10px; }
    .product-img { height: 142px; padding: 10px; border-radius: 10px 10px 0 0; }
    .product-info { padding: 10px; }
    .product-cat { font-size: 9px; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .product-info h4 { font-size: 12px; min-height: 34px; margin: 5px 0; line-height: 1.35; }
    .product-rating { margin-bottom: 6px; gap: 4px; }
    .stars i { font-size: 9px; }
    .product-rating span { font-size: 10px; }
    .product-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 7px;
    }
    .product-price { gap: 2px; flex-direction: column; align-items: flex-start; line-height: 1.15; }
    .product-price .current { font-size: 13px; }
    .product-price .old { font-size: 10px; }
    .add-to-cart { width: 34px; height: 34px; border-radius: 8px; align-self: flex-start; }
    .product-bottom-row form { display: inline-flex; }
    .wishlist-btn { width: 30px; height: 30px; top: 8px; right: 8px; }
    .badge { padding: 3px 7px; font-size: 9px; }
    .product-card-img { height: 200px; }
    .product-card .btn-primary,
    .promo-banner .btn-outline { width: auto; }
    .products-page { padding-top: 18px; }
    .products-main .products-grid.list-view { gap: 12px; }
    .product-card-list { border-radius: 10px; }
    .product-card-body { padding: 14px; }
    .brands-slider { overflow-x: auto; justify-content: flex-start; gap: 24px; padding-bottom: 4px; }
    .brands-carousel { overflow-x: auto; overflow-y: visible; padding: 14px 0 18px; scrollbar-width: none; }
    .brands-carousel::-webkit-scrollbar { display: none; }
    .brands-track { gap: 18px; padding: 0 12px; animation: none; }
    .brand-slide { width: 150px; height: 82px; padding: 14px 18px; }
    .brand-slide:hover { transform: none; }
    .brand-slide img { max-height: 44px; }
    .brand-item { flex: 0 0 auto; font-size: 16px; }
    .payment-methods, .footer-links { flex-wrap: wrap; justify-content: center; }
    .breadcrumb .container { white-space: nowrap; overflow-x: auto; }
}

/* Cleaner mobile boutique controls */
@media (max-width: 768px) {
    .products-page { padding-top: 12px; }
    .products-page > .container { padding: 0 12px; }
    .filter-toggle-btn {
        position: static;
        width: auto;
        min-height: 38px;
        margin: 0 0 10px;
        padding: 9px 14px;
        border-radius: 999px;
        border-color: var(--border-light);
        background: var(--bg-surface-2);
        font-size: 12px;
        letter-spacing: 0.02em;
    }
    .catalogue-toolbar {
        margin: 0 0 12px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }
    .mobile-toolbar-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0 0 8px;
    }
    .mobile-toolbar-actions .filter-toggle-btn {
        flex: 0 0 auto;
        margin: 0;
    }
    .toolbar-view-row {
        flex: 1;
        align-items: center;
        gap: 4px;
        margin: 0;
        padding: 0;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .toolbar-view-row::-webkit-scrollbar { display: none; }
    .view-toggle-btn {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        border: 1px solid var(--border-light);
        border-radius: 8px;
        background: var(--bg-surface);
        font-size: 14px;
    }
    .view-toggle-btn.active {
        background: rgba(226, 39, 39, 0.12);
        border-color: var(--accent);
        color: var(--accent);
    }
    .toolbar-controls-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        align-items: end;
        padding: 10px;
        border: 1px solid var(--border);
        border-radius: 10px;
        background: var(--bg-surface);
    }
    .toolbar-controls-row .results-count {
        grid-column: 1 / -1;
        font-size: 13px;
        font-weight: 800;
        color: var(--text);
    }
    .sort-select-wrap {
        display: block;
        min-width: 0;
    }
    .sort-select-wrap label {
        display: block;
        margin: 0 0 5px;
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--text-tertiary);
    }
    .sort-select-wrap .filter-select,
    .availability-select-wrap .filter-select {
        width: 100%;
        min-width: 0;
        height: 38px;
        padding: 0 30px 0 10px;
        border-radius: 8px;
        font-size: 12px;
        background: var(--bg-surface-2);
    }
    .sort-select-wrap .select-chevron {
        right: 10px;
        top: auto;
        bottom: 13px;
        transform: none;
    }
}

@media (max-width: 480px) {
    .products-main .products-grid.reference-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .products-main .products-grid.reference-grid .product-card-list {
        display: flex;
        flex-direction: column;
        min-height: 0;
        border-radius: 10px;
        overflow: hidden;
    }
    .products-main .products-grid.reference-grid .product-card-img {
        width: 100% !important;
        height: 132px !important;
        min-height: 132px !important;
        padding: 12px;
    }
    .products-main .products-grid.reference-grid .product-card-body {
        padding: 10px;
    }
    .products-main .products-grid.reference-grid .product-card-body h3 {
        min-height: 34px;
        margin-bottom: 6px;
        font-size: 12px;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .products-main .products-grid.reference-grid .product-specs {
        margin-bottom: 8px;
    }
    .products-main .products-grid.reference-grid .product-specs li {
        font-size: 10px;
        line-height: 1.35;
        padding: 1px 0;
    }
    .products-main .products-grid.reference-grid .product-specs li:nth-child(n+3) {
        display: none;
    }
    .products-main .products-grid.reference-grid .spec-dot {
        width: 6px;
        height: 6px;
    }
    .products-main .products-grid.reference-grid .card-current-price {
        font-size: 17px;
        line-height: 1.15;
    }
    .products-main .products-grid.reference-grid .card-stock-badge {
        margin: 4px 0 8px;
        padding: 4px 8px;
        font-size: 9px;
    }
    .products-main .products-grid.reference-grid .card-action-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* Mobile audit fixes for every catalogue mode */
@media (max-width: 480px) {
    .products-main .products-grid.cols-4 .product-card {
        min-width: 0;
        overflow: hidden;
    }
    .products-main .products-grid.cols-5 .product-img {
        width: 100% !important;
        max-width: 100%;
    }
    .products-main .products-grid.cols-4 .product-img {
        width: 100% !important;
        height: 142px !important;
        min-height: 142px !important;
        padding: 10px !important;
    }
    .products-main .products-grid.cols-4 .product-info {
        padding: 10px;
    }
    .products-main .products-grid.cols-4 .product-info h4 {
        min-height: 34px;
        font-size: 12px;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .products-main .products-grid.cols-4 .product-bottom-row,
    .products-main .products-grid.cols-5 .product-bottom-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 7px;
        margin-top: 6px;
    }
    .products-main .products-grid.cols-4 .product-price,
    .products-main .products-grid.cols-5 .product-price {
        min-width: 0;
    }
    .products-main .products-grid.cols-4 .product-price .current,
    .products-main .products-grid.cols-5 .product-price .current {
        display: block;
        font-size: 14px;
        line-height: 1.15;
        overflow-wrap: anywhere;
    }
    .products-main .products-grid.cols-4 .add-to-cart,
    .products-main .products-grid.cols-5 .add-to-cart {
        width: 32px;
        height: 32px;
        align-self: flex-start;
        border-radius: 8px;
    }
    .products-main .products-grid.cols-4 .product-bottom-row form,
    .products-main .products-grid.cols-5 .product-bottom-row form {
        display: inline-flex;
    }
    .products-main .products-grid.cols-4 .product-bottom-row.is-out-stock,
    .products-main .products-grid.cols-5 .product-bottom-row.is-out-stock,
    .products-grid .product-bottom-row.is-out-stock {
        display: flex;
    }
    .products-main .products-grid.cols-4 .product-bottom-row.is-out-stock .add-to-cart:not(.request-quote),
    .products-main .products-grid.cols-5 .product-bottom-row.is-out-stock .add-to-cart:not(.request-quote),
    .products-grid .product-bottom-row.is-out-stock .add-to-cart:not(.request-quote) {
        display: none;
    }
    .products-main .products-grid.cols-4 .product-bottom-row.is-out-stock .product-price,
    .products-main .products-grid.cols-5 .product-bottom-row.is-out-stock .product-price,
    .products-grid .product-bottom-row.is-out-stock .product-price {
        width: 100%;
    }
    .products-main .products-grid.cols-4 .wishlist-btn,
    .products-main .products-grid.cols-5 .wishlist-btn {
        width: 28px;
        height: 28px;
        top: 8px;
        right: 8px;
        background: rgba(0, 0, 0, .72);
    }

    .products-main .products-grid.list-view.compact .product-card-list-wide-list {
        display: grid !important;
        grid-template-columns: 112px minmax(0, 1fr);
        min-height: 0 !important;
        width: 100%;
        border-radius: 10px;
    }
    .products-main .products-grid.list-view.compact .product-card-list-wide-list .product-card-img {
        grid-row: 1 / span 2;
        width: 112px !important;
        height: 132px !important;
        min-height: 132px !important;
        padding: 10px !important;
    }
    .products-main .products-grid.list-view.compact .product-card-list-wide-list .product-card-body {
        width: auto;
        max-width: none;
        min-width: 0;
        padding: 10px;
    }
    .products-main .products-grid.list-view.compact .product-card-list-wide-list .product-card-body h3 {
        font-size: 12px;
        line-height: 1.35;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .products-main .products-grid.list-view.compact .product-card-list-wide-list .product-specs {
        margin-bottom: 8px;
    }
    .products-main .products-grid.list-view.compact .product-card-list-wide-list .product-specs li {
        font-size: 11px;
        line-height: 1.35;
        padding: 2px 0;
    }
    .products-main .products-grid.list-view.compact .product-card-list-wide-list .product-specs li:nth-child(n+3) {
        display: none;
    }
    .products-main .products-grid.list-view.compact .product-card-list-wide-list .card-current-price {
        font-size: 14px;
        line-height: 1.15;
    }
    .products-main .products-grid.list-view.compact .product-card-list-wide-list .card-stock-badge {
        margin: 4px 0 8px;
        padding: 4px 8px;
        font-size: 9px;
    }
    .products-main .products-grid.list-view.compact .product-card-list-wide-list .card-action-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* Mobile header polish */
@media (max-width: 768px) {
    .top-bar {
        height: 28px !important;
        padding: 0 !important;
        overflow: hidden;
    }
    .top-bar .container {
        padding: 0 10px;
    }
    .top-bar-inner {
        display: grid !important;
        grid-template-columns: 28px minmax(0, 1fr) 28px !important;
        height: 28px !important;
        min-height: 28px;
        gap: 4px;
        align-items: center;
    }
    .promo-arrow {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    .top-promo-slider {
        grid-column: 2;
        width: 100%;
        height: 28px;
        min-width: 0;
    }
    .promo-slide {
        justify-content: center;
        color: #fff;
        font-size: 11px;
        font-weight: 800;
        line-height: 28px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .promo-slide i {
        display: none;
    }

    .header {
        padding: 0 !important;
        background: #050505 !important;
        border-bottom: 1px solid rgba(255,255,255,0.08) !important;
        position: sticky;
        top: 0;
        z-index: 120;
    }
    .header .container {
        padding: 0 12px;
    }
    .header-inner {
        display: grid !important;
        grid-template-columns: 42px minmax(0, 1fr) 42px 42px !important;
        height: 64px !important;
        padding: 0 12px !important;
        gap: 8px !important;
        align-items: center !important;
    }
    .mobile-nav-toggle,
    .header-search-link,
    .cart-btn {
        width: 40px !important;
        height: 40px !important;
        min-height: 40px !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255,255,255,0.1) !important;
        background: #151515 !important;
        color: #fff !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
    }
    .mobile-nav-toggle {
        grid-column: 1;
        grid-row: 1;
        order: initial;
    }
    .mobile-nav-toggle i,
    .header-search-link i,
    .cart-btn i {
        font-size: 18px !important;
        color: #fff !important;
    }
    .header-logo-centered {
        grid-column: 2;
        grid-row: 1;
        width: 100% !important;
        height: 64px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 0;
        order: initial;
    }
    .logo img,
    .header-logo-centered img {
        height: 38px !important;
        width: auto !important;
        max-width: 112px;
        object-fit: contain;
    }
    .search-bar {
        grid-column: 3 !important;
        grid-row: 1;
        order: initial !important;
        width: 42px !important;
        max-width: 42px !important;
        height: 42px;
        display: flex !important;
        justify-content: center;
        align-items: center;
        justify-self: end;
    }
    .header-search-link {
        gap: 0 !important;
    }
    .header-search-link span {
        display: none !important;
    }
    .header-actions {
        grid-column: 4;
        grid-row: 1;
        order: initial !important;
        width: 42px;
        min-width: 42px;
        gap: 0 !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
    }
    .header-actions .theme-toggle,
    .header-actions a.header-action:not(.cart-btn),
    .header-actions form,
    .header-actions button.header-action {
        display: none !important;
    }
    .cart-btn .cart-label,
    .cart-btn span:not(.cart-count) {
        display: none !important;
    }
    .cart-count {
        display: none !important;
    }
}
/* ─────────────────────────────────────────────────── */
/* Public info pages */
.sd-page-hero {
    padding: 56px 0 38px;
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-surface-2));
    border-bottom: 1px solid var(--border);
}
.sd-page-kicker {
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
}
.sd-page-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.1;
    margin-bottom: 14px;
}
.sd-page-hero p {
    max-width: 760px;
    color: var(--text-secondary);
    font-size: 16px;
}
.sd-info-page {
    padding: 38px 0 70px;
    background: var(--bg);
}
.sd-info-grid,
.sd-brand-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.sd-info-card,
.sd-brand-card,
.sd-page-cta,
.sd-empty-state {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 8px;
}
.sd-info-card { padding: 24px; }
.sd-info-card i {
    color: var(--accent);
    font-size: 26px;
    margin-bottom: 18px;
}
.sd-info-card h2 {
    font-size: 18px;
    margin-bottom: 8px;
}
.sd-info-card p,
.sd-empty-state p,
.sd-page-cta p { color: var(--text-secondary); }
.sd-page-cta {
    margin-top: 22px;
    padding: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}
.sd-page-cta h2 { font-size: 20px; margin-bottom: 4px; }
.sd-page-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.sd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 13px;
}
.sd-btn-primary { background: var(--accent); color: #fff; }
.sd-btn-outline { border: 1px solid var(--border-strong); color: var(--text); }
.sd-brand-card {
    min-height: 150px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 9px;
    transition: border-color .2s, transform .2s;
}
.sd-brand-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}
.sd-brand-card img {
    max-width: 92px;
    max-height: 42px;
    object-fit: contain;
}
.sd-brand-card span {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface-2);
    color: var(--accent);
    font-weight: 900;
}
.sd-brand-card small { color: var(--text-tertiary); }
.sd-empty-state {
    padding: 42px 20px;
    text-align: center;
}
.sd-empty-state i {
    color: var(--accent);
    font-size: 34px;
    margin-bottom: 12px;
}
@media (max-width: 900px) {
    .sd-info-grid,
    .sd-brand-grid { grid-template-columns: 1fr; }
    .sd-page-cta { align-items: flex-start; flex-direction: column; }
}

/* Side cart drawer */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 1400;
    visibility: hidden;
    pointer-events: none;
}
.cart-drawer-overlay.is-open {
    visibility: visible;
    pointer-events: auto;
}
.cart-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.62);
    opacity: 0;
    transition: opacity .22s ease;
}
.cart-drawer-overlay.is-open .cart-drawer-backdrop { opacity: 1; }
.cart-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: min(430px, 100vw);
    height: 100%;
    background: var(--bg-surface);
    border-left: 1px solid var(--border);
    box-shadow: -18px 0 44px rgba(0,0,0,.42);
    transform: translateX(100%);
    transition: transform .24s ease;
    display: grid;
    grid-template-rows: auto 1fr auto;
}
.cart-drawer-overlay.is-open .cart-drawer { transform: translateX(0); }
.cart-drawer-head {
    padding: 22px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-drawer-kicker {
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}
.cart-drawer-head h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    margin-top: 4px;
}
.cart-drawer-close,
.cart-drawer-remove {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-surface-2);
    color: var(--text);
    cursor: pointer;
}
.cart-drawer-body {
    overflow-y: auto;
    padding: 18px;
}
.cart-drawer-item {
    display: grid;
    grid-template-columns: 76px 1fr 36px;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.cart-drawer-img {
    width: 76px;
    height: 76px;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}
.cart-drawer-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cart-drawer-info a {
    display: block;
    color: var(--text);
    font-weight: 800;
    font-size: 13px;
    line-height: 1.35;
    margin-bottom: 6px;
}
.cart-drawer-info span,
.cart-drawer-empty p { color: var(--text-secondary); font-size: 13px; }
.cart-drawer-info strong {
    display: block;
    color: var(--accent);
    margin-top: 5px;
}
.cart-drawer-empty {
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}
.cart-drawer-empty i { color: var(--accent); font-size: 42px; }
.cart-drawer-empty a,
.cart-drawer-checkout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
    padding: 0 18px;
    text-transform: uppercase;
}
.cart-drawer-foot {
    padding: 18px 22px 22px;
    border-top: 1px solid var(--border);
}
.cart-drawer-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    color: var(--text-secondary);
}
.cart-drawer-total strong { color: var(--text); font-size: 18px; }
.cart-drawer-checkout,
.cart-drawer-view { width: 100%; }
.cart-drawer-checkout.is-disabled { opacity: .45; pointer-events: none; }
.cart-drawer-view {
    display: block;
    text-align: center;
    color: var(--text-secondary);
    margin-top: 12px;
    font-weight: 800;
}
body.cart-drawer-open { overflow: hidden; }

/* Vektra-inspired contact page */
.contact-hero-vk,
.contact-visit-vk,
.contact-partner-vk {
    background: #050505;
    border-bottom: 1px solid var(--border);
}
.contact-hero-vk { padding: 72px 0 54px; }
.contact-hero-grid,
.contact-split {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 46px;
    align-items: center;
}
.contact-split { grid-template-columns: 460px 1fr; padding: 54px 20px; }
.contact-split.reverse { grid-template-columns: 1fr 430px; }
.contact-eyebrow {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.contact-copy h1,
.contact-panel h2,
.contact-message-panel h2 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    line-height: 1.08;
}
.contact-copy h1 { font-size: clamp(38px, 6vw, 74px); margin: 12px 0 22px; }
.contact-copy p,
.contact-panel p,
.contact-message-panel p {
    color: var(--text-secondary);
    max-width: 760px;
    margin-bottom: 14px;
}
.contact-card-stack {
    display: grid;
    gap: 12px;
}
.contact-info-tile,
.contact-panel,
.contact-message-panel,
.contact-visual-panel {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 8px;
}
.contact-info-tile {
    padding: 20px;
    display: grid;
    gap: 5px;
}
.contact-info-tile i,
.contact-panel li i { color: var(--accent); }
.contact-info-tile span,
.contact-info-tile small { color: var(--text-tertiary); }
.contact-info-tile strong { font-size: 18px; }
.contact-visual-panel {
    min-height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(226,39,39,.18), transparent 55%), var(--bg-surface);
}
.contact-visual-panel img { max-width: 220px; }
.contact-panel,
.contact-message-panel { padding: 32px; }
.contact-panel h2,
.contact-message-panel h2 { font-size: 30px; margin: 10px 0 14px; }
.contact-panel ul {
    display: grid;
    gap: 10px;
    margin: 18px 0 24px;
}
.contact-panel li {
    display: flex;
    gap: 10px;
    color: var(--text-secondary);
}
.contact-primary-btn,
.contact-select-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 20px;
    background: var(--accent);
    color: #fff;
    border-radius: 6px;
    font-weight: 900;
    text-transform: uppercase;
}
.contact-select-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-top: 20px;
}
.contact-select-row select {
    min-height: 46px;
    background: var(--bg-surface-2);
    color: var(--text);
    border: 1px solid var(--border-strong);
    border-radius: 6px;
    padding: 0 12px;
}

/* Boxed product tabs */
.pd-tabs-section {
    background: #050505;
    margin-top: 34px;
}
.pd-tabs-nav {
    gap: 6px;
    align-items: flex-end;
    border-bottom-color: var(--border-light);
    padding: 0 20px;
}
.pd-tnav {
    border: 1px solid var(--border-light);
    border-bottom: none;
    background: #5f5f5f;
    color: #fff;
    min-height: 40px;
    padding: 0 16px;
    margin-bottom: -1px;
}
.pd-tnav.is-active {
    background: #050505;
    border-color: var(--border-light);
    color: #fff;
}
.pd-tnav.is-active::after { display: none; }

@media (max-width: 900px) {
    .contact-hero-grid,
    .contact-split,
    .contact-split.reverse { grid-template-columns: 1fr; }
    .contact-hero-vk { padding: 42px 0; }
    .contact-split { padding: 34px 20px; }
    .contact-select-row { grid-template-columns: 1fr; }
    .pd-tabs-section { margin-top: 20px; }
    .pd-tabs-nav { padding: 0 10px; }
    .pd-tnav { flex: 0 0 auto; }
}

/* Vektra-like French contact page */
.contact-vektralike {
    background: #000;
    color: #fff;
    padding: 48px 0 76px;
}
.contact-vektralike h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    text-align: center;
    margin: 0 0 72px;
    text-transform: uppercase;
}
.contact-main-card {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    border: 1px solid var(--accent);
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    background: #151515;
}
.contact-main-copy {
    padding: clamp(28px, 5vw, 58px);
}
.contact-main-copy h2,
.contact-under-grid h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 26px;
}
.contact-main-copy p {
    color: #aaa;
    line-height: 1.75;
    margin-bottom: 18px;
    max-width: 520px;
}
.contact-lines {
    margin-top: 30px;
}
.contact-line {
    border-bottom: 1px solid #2c2c2c;
    padding: 15px 0;
}
.contact-line span {
    display: block;
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}
.contact-line strong {
    display: block;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    line-height: 1.6;
}
.contact-main-image {
    min-height: 620px;
    background: #060606;
}
.contact-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.contact-under-grid {
    max-width: 1120px;
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.contact-under-grid article {
    background: #151515;
    border: 1px solid #262626;
    border-radius: 10px;
    padding: 24px;
}
.contact-under-grid h2 {
    font-size: 18px;
    margin-bottom: 12px;
}
.contact-under-grid p,
.contact-under-grid li {
    color: #aaa;
    line-height: 1.65;
}
.contact-under-grid ul {
    margin: 14px 0 20px;
    padding-left: 18px;
}
.contact-under-grid a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    margin-top: 16px;
    background: var(--accent);
    color: #fff;
    border-radius: 5px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
}
.contact-under-grid select {
    width: 100%;
    min-height: 42px;
    background: #080808;
    color: #fff;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 0 12px;
    margin-top: 10px;
}

@media (max-width: 900px) {
    .contact-vektralike { padding: 34px 0 54px; }
    .contact-vektralike h1 { margin-bottom: 34px; }
    .contact-main-card,
    .contact-under-grid { grid-template-columns: 1fr; }
    .contact-main-image { min-height: 320px; }
}

/* Keep product tabs readable when light theme is active */
body.pd-page .pd-tabs-section {
    background: #050505 !important;
    color: #fff !important;
}
body.pd-page .pd-tabs-nav {
    width: min(1280px, 100%);
    box-sizing: border-box;
    overflow-x: auto;
    scrollbar-width: none;
}
body.pd-page .pd-tabs-nav::-webkit-scrollbar {
    display: none;
}
body.pd-page .pd-tab-content,
body.pd-page .pd-tab-content p,
body.pd-page .pd-tab-content li,
body.pd-page .pd-specs-tbl td,
body.pd-page .pd-info-card p,
body.pd-page .pd-empty,
body.pd-page .pd-rev-text {
    color: #d8d8d8 !important;
}
body.pd-page .pd-tab-content h2,
body.pd-page .pd-tab-content h3,
body.pd-page .pd-tab-content strong,
body.pd-page .pd-tab-content b,
body.pd-page .pd-info-card h4,
body.pd-page .pd-specs-tbl th {
    color: #fff !important;
}
body.pd-page .pd-info-card,
body.pd-page .pd-review,
body.pd-page .pd-empty-reviews {
    background: #151515 !important;
    border-color: #262626 !important;
}

[data-theme="light"] body.pd-page .pd-tabs-section {
    background: #fff !important;
    color: #111118 !important;
}
[data-theme="light"] body.pd-page .pd-tabs-nav {
    border-bottom-color: #dcdce0 !important;
}
[data-theme="light"] body.pd-page .pd-tnav {
    background: #ebe9e7 !important;
    border-color: #d0d0d5 !important;
    color: #22222a !important;
}
[data-theme="light"] body.pd-page .pd-tnav.is-active {
    background: #fff !important;
    color: #111118 !important;
}
[data-theme="light"] body.pd-page .pd-tab-content,
[data-theme="light"] body.pd-page .pd-tab-content p,
[data-theme="light"] body.pd-page .pd-tab-content li,
[data-theme="light"] body.pd-page .pd-specs-tbl td,
[data-theme="light"] body.pd-page .pd-info-card p,
[data-theme="light"] body.pd-page .pd-empty,
[data-theme="light"] body.pd-page .pd-rev-text {
    color: #444450 !important;
}
[data-theme="light"] body.pd-page .pd-tab-content h2,
[data-theme="light"] body.pd-page .pd-tab-content h3,
[data-theme="light"] body.pd-page .pd-tab-content strong,
[data-theme="light"] body.pd-page .pd-tab-content b,
[data-theme="light"] body.pd-page .pd-info-card h4,
[data-theme="light"] body.pd-page .pd-specs-tbl th {
    color: #111118 !important;
}
[data-theme="light"] body.pd-page .pd-info-card,
[data-theme="light"] body.pd-page .pd-review,
[data-theme="light"] body.pd-page .pd-empty-reviews {
    background: #fff !important;
    border-color: #e4e4e8 !important;
}

/* Header icon-only actions */
.header-actions {
    gap: 10px !important;
}
.header-action {
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
}
.header-action span:not(.cart-count) {
    display: none !important;
}
.header-action i {
    font-size: 18px !important;
}
.cart-btn {
    position: relative;
}

/* Clean light product page surface */
[data-theme="light"] body.pd-page {
    background: var(--bg) !important;
}
[data-theme="light"] body.pd-page .pd-gallery,
[data-theme="light"] body.pd-page .pd-panel {
    border-color: #e5e7eb !important;
    box-shadow: 0 18px 45px rgba(17, 24, 39, .08) !important;
}

/* Accessories landing page */
.accessories-hero,
.accessories-categories,
.accessories-featured,
.accessories-products {
    background: var(--bg);
}
.accessories-hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0 46px;
    border-bottom: 1px solid var(--border);
}
.accessories-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 38%, rgba(37, 99, 235, .22), transparent 30%),
        radial-gradient(circle at 28% 22%, rgba(14, 165, 233, .14), transparent 24%);
    pointer-events: none;
}
.accessories-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 36px;
}
.accessories-hero-copy h1 {
    max-width: 660px;
    margin: 8px 0 14px;
    color: var(--text);
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(34px, 4.3vw, 64px);
    line-height: 1.02;
}
.accessories-hero-copy p {
    max-width: 560px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.75;
}
.accessories-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.accessories-hero-stage {
    position: relative;
    min-height: 390px;
}
.accessories-hero-stage::before {
    content: '';
    position: absolute;
    inset: 10% 4% 0;
    border: 1px solid rgba(59, 130, 246, .28);
    background: linear-gradient(135deg, rgba(8, 18, 34, .92), rgba(12, 24, 44, .72));
    box-shadow: 0 28px 90px rgba(14, 165, 233, .15);
    border-radius: 16px;
}
.accessories-hero-stage img {
    position: absolute;
    max-width: 58%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 34px rgba(0,0,0,.42));
}
.accessories-hero-stage img:nth-child(1) { top: 2%; right: 0; max-width: 72%; }
.accessories-hero-stage img:nth-child(2) { left: 0; bottom: 4%; max-width: 58%; }
.accessories-hero-stage img:nth-child(3) { right: 8%; bottom: 0; max-width: 42%; }
.accessories-benefits {
    padding: 22px 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
}
.accessories-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.accessories-benefits-grid div {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    column-gap: 12px;
}
.accessories-benefits-grid i {
    grid-row: 1 / span 2;
    color: #38bdf8;
    font-size: 24px;
}
.accessories-benefits-grid strong {
    color: var(--text);
    font-size: 14px;
}
.accessories-benefits-grid span {
    color: var(--text-tertiary);
    font-size: 12px;
}
.accessories-categories,
.accessories-featured,
.accessories-products {
    padding: 62px 0;
}
.accessories-section-head {
    align-items: flex-end;
    margin-bottom: 28px;
}
.accessory-tile-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}
.accessory-tile {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: linear-gradient(180deg, #111927, #080c12);
    padding: 14px;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.accessory-tile:hover {
    transform: translateY(-4px);
    border-color: #38bdf8;
    box-shadow: 0 18px 44px rgba(14, 165, 233, .14);
}
.accessory-tile-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 55% 24%, rgba(56, 189, 248, .24), transparent 35%),
        linear-gradient(180deg, transparent 35%, rgba(0,0,0,.78) 100%);
}
.accessory-tile img {
    position: absolute;
    left: 50%;
    top: 12px;
    width: 112%;
    max-width: none;
    height: 170px;
    object-fit: contain;
    transform: translateX(-50%);
    filter: drop-shadow(0 18px 26px rgba(0,0,0,.48));
}
.accessory-tile div {
    position: relative;
    z-index: 2;
}
.accessory-tile h3 {
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 5px;
}
.accessory-tile p {
    color: rgba(255,255,255,.72);
    font-size: 12px;
    line-height: 1.35;
    margin-bottom: 6px;
}
.accessory-tile small {
    color: #7dd3fc;
    font-size: 11px;
    font-weight: 700;
}
.accessories-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}
.accessories-sort label {
    color: var(--text-secondary);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
}
.accessories-sort select {
    min-width: 190px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    background: var(--bg-surface);
    color: var(--text);
    font-weight: 700;
    outline: none;
}

@media (max-width: 1024px) {
    .accessories-hero-inner { grid-template-columns: 1fr; }
    .accessories-hero-stage { min-height: 340px; }
    .accessory-tile-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .accessories-benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .accessories-hero { padding: 42px 0 30px; }
    .accessories-hero-copy h1 { font-size: 30px; }
    .accessories-hero-copy p { font-size: 14px; }
    .accessories-hero-stage { min-height: 260px; }
    .accessories-hero-stage::before { inset: 12% 0 0; border-radius: 12px; }
    .accessories-hero-stage img:nth-child(1) { max-width: 76%; top: 0; right: -5%; }
    .accessories-hero-stage img:nth-child(2) { max-width: 58%; left: -4%; bottom: 5%; }
    .accessories-hero-stage img:nth-child(3) { max-width: 43%; right: 4%; bottom: 2%; }
    .accessories-benefits { padding: 18px 0; }
    .accessories-benefits-grid { gap: 14px; }
    .accessories-benefits-grid div { grid-template-columns: 30px minmax(0, 1fr); }
    .accessories-benefits-grid i { font-size: 20px; }
    .accessories-benefits-grid strong { font-size: 12px; }
    .accessories-benefits-grid span { font-size: 11px; }
    .accessories-categories,
    .accessories-featured,
    .accessories-products { padding: 42px 0; }
    .accessories-section-head { align-items: flex-start; gap: 14px; }
    .accessory-tile-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
    .accessory-tile { min-height: 168px; padding: 9px; border-radius: 10px; }
    .accessory-tile img { top: 8px; height: 96px; width: 118%; }
    .accessory-tile h3 { font-size: 11px; }
    .accessory-tile p { display: none; }
    .accessory-tile small { font-size: 10px; }
    .accessories-sort { width: 100%; justify-content: space-between; }
    .accessories-sort select { min-width: 0; flex: 1; }
}

/* About page */
.about-hero-sd,
.about-story-sd,
.about-pillars-sd,
.about-catalog-sd,
.about-map-sd,
.about-final-sd {
    background: var(--bg);
}
.about-hero-sd {
    padding: 70px 0 56px;
    background: linear-gradient(135deg, var(--bg), var(--bg-surface));
    border-bottom: 1px solid var(--border);
}
.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
    gap: 42px;
    align-items: center;
}
.about-kicker {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.about-hero-copy h1,
.about-story-grid h2,
.about-section-head h2,
.about-map-copy h2,
.about-final-sd h2 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}
.about-hero-copy h1 {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.05;
    margin: 12px 0 18px;
}
.about-hero-copy p,
.about-story-text p,
.about-map-copy p,
.about-final-sd p {
    color: var(--text-secondary);
    line-height: 1.75;
}
.about-hero-media {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}
.about-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}
.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.about-actions a,
.about-final-sd a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 6px;
    font-weight: 900;
    background: var(--accent);
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
}
.about-actions a:nth-child(2) {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-strong);
}
.about-story-sd,
.about-pillars-sd,
.about-catalog-sd,
.about-map-sd,
.about-final-sd {
    padding: 54px 0;
    border-bottom: 1px solid var(--border);
}
.about-story-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 36px;
}
.about-section-head {
    max-width: 760px;
    margin-bottom: 24px;
}
.about-pillars-grid,
.about-catalog-grid {
    display: grid;
    gap: 18px;
}
.about-pillars-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.about-catalog-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}
.about-pillars-grid article,
.about-catalog-grid a,
.about-address-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 22px;
}
.about-pillars-grid i {
    color: var(--accent);
    font-size: 28px;
    margin-bottom: 14px;
}
.about-pillars-grid p,
.about-catalog-grid span {
    color: var(--text-secondary);
    line-height: 1.65;
}
.about-catalog-grid a {
    text-align: center;
    font-weight: 900;
    color: var(--text);
}
.about-map-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 28px;
    align-items: stretch;
}
.about-address-card {
    display: flex;
    gap: 14px;
    margin: 18px 0;
}
.about-address-card i {
    color: var(--accent);
    font-size: 24px;
}
.about-address-card strong,
.about-address-card span {
    display: block;
}
.about-map-frame {
    min-height: 420px;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-surface);
}
.about-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.about-final-sd {
    text-align: center;
}
.about-final-sd p {
    max-width: 760px;
    margin: 12px auto 22px;
}
@media (max-width: 900px) {
    .about-hero-sd { padding: 44px 0; }
    .about-hero-grid,
    .about-story-grid,
    .about-pillars-grid,
    .about-map-grid {
        grid-template-columns: 1fr;
    }
    .about-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .about-hero-media img {
        min-height: 260px;
    }
}
