/* ========== VARIABLES ========== */
:root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --dark-3: #222222;
    --dark-4: #2a2a2a;
    --border: #333333;
    --border-light: #3a3a3a;
    --orange: #FF6B00;
    --orange-dark: #cc5500;
    --orange-light: #ff8c3a;
    --orange-glow: rgba(255, 107, 0, 0.15);
    --text: #f0f0f0;
    --text-muted: #888888;
    --text-dim: #555555;
    --white: #ffffff;
    --green: #22c55e;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.5);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.6);
    --shadow-orange: 0 4px 20px rgba(255, 107, 0, 0.3);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 24px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text);
    background: var(--black);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Barlow Condensed', system-ui, sans-serif; font-weight: 700; line-height: 1.2; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollLine { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(16px); opacity: 0; } }

/* ========== HEADER ========== */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}
.header-container {
    max-width: 640px; margin: 0 auto; padding: 10px 16px;
    display: flex; justify-content: space-between; align-items: center;
}
.logo-wrapper { display: flex; align-items: center; gap: 6px; }
.logo-text { font-family: 'Barlow Condensed', system-ui, sans-serif; font-size: 22px; font-weight: 800; letter-spacing: 1px; color: var(--white); }
.logo-text span { color: var(--orange); }
.logo-dot { font-size: 11px; color: var(--text-muted); }
.header-buttons { display: flex; gap: 8px; }
.header-btn {
    background: var(--dark-3); border: 1px solid var(--border); color: var(--text);
    padding: 8px 14px; border-radius: var(--radius-md); font-weight: 600; font-size: 12px;
    transition: var(--transition); display: flex; align-items: center; gap: 6px;
}
.header-btn.primary { background: var(--orange); border-color: var(--orange); color: var(--white); }
.header-btn:active { opacity: 0.85; }
.badge {
    background: var(--white); color: var(--orange); border-radius: 50%;
    min-width: 18px; height: 18px; display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 700;
}
.header-btn.primary .badge { background: var(--dark); color: var(--orange); }

/* ========== HERO ========== */
.hero {
    min-height: 100vh; min-height: 100dvh;
    background:
        linear-gradient(180deg, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.45) 40%, rgba(10,10,10,0.88) 100%),
        url('images/hero.jpg') center/cover no-repeat;
    position: relative; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 100px 16px 60px;
}
.hero-content {
    position: relative; z-index: 10; max-width: 540px; width: 100%;
    animation: fadeUp 0.8s ease-out;
}
.hero-badge-top {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--orange-glow); border: 1px solid rgba(255,107,0,0.3);
    padding: 6px 16px; border-radius: var(--radius-xl);
    font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 20px; color: var(--orange-light);
}
.hero-title { font-size: 52px; font-weight: 900; color: var(--white); margin-bottom: 8px; letter-spacing: 2px; text-transform: uppercase; line-height: 1; }
.hero-title span { color: var(--orange); }
.hero-subtitle { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 28px; font-weight: 400; }
.hero-features { display: flex; justify-content: center; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-feature { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); padding: 7px 13px; border-radius: var(--radius-xl); font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.9); }
.hero-cta { margin-bottom: 28px; }
.hero-btn {
    background: var(--orange); color: var(--white); padding: 16px 36px;
    border-radius: var(--radius-md); font-size: 15px; font-weight: 700; letter-spacing: 0.5px;
    transition: var(--transition); display: inline-flex; align-items: center; gap: 10px;
    box-shadow: var(--shadow-orange); text-transform: uppercase;
}
.hero-btn:active { transform: scale(0.97); background: var(--orange-dark); }
.hero-brands { background: rgba(255,255,255,0.06); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 16px 20px; }
.brands-label { font-size: 9px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.brands-list { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.brand-tag { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: 1px; }
.scroll-indicator { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); width: 20px; height: 32px; border: 2px solid rgba(255,255,255,0.3); border-radius: 10px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-line { width: 2px; height: 6px; background: var(--orange); border-radius: 1px; animation: scrollLine 1.5s infinite; }

/* ========== CONTAINER ========== */
.container { max-width: 640px; margin: 0 auto; padding: 0 16px; }
.section-header { text-align: center; margin-bottom: 24px; }
.section-label { display: inline-block; color: var(--orange); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 8px; }
.section-title { font-size: 28px; color: var(--white); }

/* ========== KATEGORIEN ========== */
.categories-section { padding: 40px 0 24px; background: var(--dark); border-top: 1px solid var(--border); }
.categories-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }

.category-card { background: var(--dark-2); border: 2px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; transition: var(--transition); }
.category-card.active, .category-card:active { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange); }
.category-card.featured { /* одинаковые */ }

.category-img-wrapper { width: 100%; height: 130px; background: var(--dark-3); overflow: hidden; position: relative; }
.category-card.featured .category-img-wrapper { height: 130px; }
.category-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.category-card:hover .category-img-wrapper img, .category-card.active .category-img-wrapper img { transform: scale(1.05); }
.category-card.active .category-img-wrapper::after { content: ''; position: absolute; inset: 0; background: rgba(255,107,0,0.15); }
.category-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 44px; background: linear-gradient(135deg, var(--dark-3), var(--dark-4)); }

.category-footer { padding: 10px 12px; display: flex; align-items: center; justify-content: space-between; background: var(--dark-2); border-top: 1px solid var(--border); transition: var(--transition); }
.category-card.active .category-footer { background: var(--orange); border-top-color: var(--orange); }
.category-name { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.25s; }
.category-card.active .category-name { color: var(--white); }
.category-arrow { font-size: 16px; color: var(--text-dim); transition: var(--transition); }
.category-card.active .category-arrow { color: var(--white); }

/* ========== BACK BUTTON ========== */
.back-to-categories { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 90; }
.back-cat-btn { background: var(--dark-2); color: var(--text); padding: 10px 20px; border-radius: var(--radius-xl); font-size: 12px; font-weight: 600; box-shadow: var(--shadow-lg); border: 1px solid var(--border); display: flex; align-items: center; gap: 6px; }

/* ========== PRODUKTE ========== */
.products-section { padding: 20px 0 40px; background: var(--dark); }
.products-list { display: flex; flex-direction: column; gap: 14px; }
.product-card { background: var(--dark-2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; animation: fadeUp 0.4s ease-out both; }
.product-image-wrapper { width: 110px; min-width: 110px; height: 130px; overflow: hidden; background: var(--dark-3); position: relative; flex-shrink: 0; }
.product-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.product-card:hover .product-image { transform: scale(1.04); }
.badge-label { position: absolute; top: 6px; left: 0; background: var(--orange); color: var(--white); padding: 3px 8px; font-size: 9px; font-weight: 700; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.stock-badge { position: absolute; bottom: 6px; left: 6px; background: rgba(10,10,10,0.85); color: var(--green); padding: 3px 6px; border-radius: var(--radius-sm); font-size: 9px; font-weight: 600; }
.product-img-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; background: var(--dark-3); color: var(--text-muted); font-size: 10px; }

.product-info { flex: 1; padding: 12px; display: flex; flex-direction: column; justify-content: space-between; min-width: 0; }
.product-brand { font-size: 9px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 2px; }
.product-name { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 3px; line-height: 1.3; }
.product-details { font-size: 10px; color: var(--text-muted); margin-bottom: 6px; }
.product-price { font-size: 18px; font-weight: 800; color: var(--orange); margin-bottom: 4px; font-family: 'Barlow Condensed', system-ui, sans-serif; }
.product-total { background: var(--orange-glow); border: 1px solid rgba(255,107,0,0.2); color: var(--orange-light); padding: 5px 10px; border-radius: var(--radius-sm); font-size: 11px; font-weight: 600; text-align: center; margin-bottom: 8px; }
.quantity-control { display: flex; align-items: center; background: var(--dark-3); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 8px; width: fit-content; border: 1px solid var(--border); }
.qty-btn { width: 34px; height: 34px; background: var(--dark-4); color: var(--text); font-size: 18px; font-weight: 700; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; }
.qty-btn:active { background: var(--orange); color: var(--white); }
.qty-display { min-width: 44px; text-align: center; font-size: 13px; font-weight: 700; color: var(--white); padding: 0 6px; }
.add-to-cart-btn { width: 100%; background: var(--orange); color: var(--white); padding: 9px 12px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 6px; }
.add-to-cart-btn:active { background: var(--orange-dark); transform: scale(0.98); }

/* ========== FEATURES ========== */
.features-section { padding: 40px 0; background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.feature-card { background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px 14px; text-align: center; }
.feature-icon-box { width: 44px; height: 44px; background: var(--orange-glow); border: 1px solid rgba(255,107,0,0.3); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-size: 22px; }
.feature-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.feature-text { font-size: 11px; color: var(--text-muted); line-height: 1.4; }

/* ========== BRANDS ========== */
.brands-section { padding: 40px 0; background: var(--dark); }
.brands-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.brand-card { background: var(--dark-2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px 10px; text-align: center; }
.brand-logo { font-size: 11px; font-weight: 900; color: var(--white); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.brand-desc { font-size: 9px; color: var(--text-muted); }

/* ========== STATS ========== */
.stats-section { padding: 28px 0; background: var(--orange); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.stat-card { text-align: center; padding: 8px 4px; }
.stat-card .stat-number { font-size: 26px; font-weight: 900; color: var(--white); font-family: 'Barlow Condensed', system-ui, sans-serif; margin-bottom: 2px; }
.stat-card .stat-text { font-size: 9px; color: rgba(255,255,255,0.85); font-weight: 500; text-transform: uppercase; }

/* ========== FOOTER ========== */
.footer { background: var(--dark-2); border-top: 1px solid var(--border); padding: 32px 0 20px; }
.footer-brand { margin-bottom: 24px; }
.footer-logo-text { font-size: 24px; font-weight: 900; letter-spacing: 1px; margin-bottom: 8px; font-family: 'Barlow Condensed', system-ui, sans-serif; }
.footer-logo-text span { color: var(--orange); }
.footer-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.footer-contact { margin-bottom: 20px; }
.footer-contact h4 { font-size: 13px; color: var(--white); margin-bottom: 10px; }
.footer-contact p { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 16px; text-align: center; }
.footer-bottom p { font-size: 11px; color: var(--text-dim); }

/* ========== OVERLAY & SIDEBAR ========== */
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 150; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.overlay.active { opacity: 1; visibility: visible; }
.sidebar { position: fixed; top: 0; right: -100%; width: 100%; max-width: 400px; height: 100%; background: var(--dark-2); border-left: 1px solid var(--border); z-index: 200; transition: right 0.3s ease; display: flex; flex-direction: column; box-shadow: -4px 0 30px rgba(0,0,0,0.5); }
.sidebar.active { right: 0; }
.sidebar-header { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.sidebar-header h3 { font-size: 20px; color: var(--white); }
.close-btn { background: var(--dark-3); color: var(--text-muted); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); }
.sidebar-content { flex: 1; overflow-y: auto; padding: 16px; -webkit-overflow-scrolling: touch; }
.empty-cart { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-cart svg { margin-bottom: 16px; opacity: 0.3; }
.empty-cart p { font-size: 14px; }

/* ========== CART ITEM ========== */
.cart-item { display: flex; gap: 12px; padding: 12px; background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 10px; }
.cart-item-image { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-brand { font-size: 9px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.cart-item-name { font-size: 12px; font-weight: 600; color: var(--white); margin-bottom: 4px; line-height: 1.3; }
.cart-item-price { font-size: 14px; font-weight: 800; color: var(--orange); margin-bottom: 8px; }
.cart-item-controls { display: flex; align-items: center; gap: 8px; }
.cart-qty-btn { width: 26px; height: 26px; background: var(--dark-4); color: var(--text); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.cart-qty-btn:active { background: var(--orange); border-color: var(--orange); color: var(--white); }
.cart-item-controls span { font-size: 13px; font-weight: 700; color: var(--white); min-width: 20px; text-align: center; }
.cart-remove-btn { background: none; font-size: 14px; margin-left: auto; padding: 4px; cursor: pointer; }
.sidebar-footer { padding: 16px; border-top: 1px solid var(--border); flex-shrink: 0; }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 14px; color: var(--text-muted); }
.cart-total strong { font-size: 20px; font-weight: 800; color: var(--orange); font-family: 'Barlow Condensed', system-ui, sans-serif; }
.checkout-btn { width: 100%; background: var(--orange); color: var(--white); padding: 14px; border-radius: var(--radius-md); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.checkout-btn:active { background: var(--orange-dark); }

/* ========== MODAL ========== */
.modal { position: fixed; inset: 0; z-index: 300; background: var(--dark); overflow-y: auto; -webkit-overflow-scrolling: touch; display: none; }
.modal.active { display: block; }
.modal-content { width: 100%; max-width: 600px; margin: 0 auto; min-height: 100%; padding-bottom: 40px; background: var(--dark); }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; background: var(--dark-2); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10; }
.modal-header h3 { font-size: 18px; color: var(--white); }

/* ========== FORM ========== */
.modal-content form { padding: 20px 16px 0; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.form-group input, .form-group textarea { width: 100%; background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 12px 14px; font-size: 15px; color: var(--white); font-family: inherit; outline: none; -webkit-appearance: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--orange); background: var(--dark-4); }
.form-group textarea { resize: none; }
.order-summary { background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px; margin-bottom: 16px; }
.order-summary h4 { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.checkout-item { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid var(--border); }
.checkout-item:last-child { border-bottom: none; }
.checkout-item-name { font-size: 12px; color: var(--text); flex: 1; }
.checkout-item-price { font-size: 13px; font-weight: 700; color: var(--orange); }
.checkout-total { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; font-size: 13px; color: var(--text-muted); }
.checkout-total-value { font-size: 20px; font-weight: 800; color: var(--orange); font-family: 'Barlow Condensed', system-ui, sans-serif; }
.submit-btn { width: 100%; background: var(--orange); color: var(--white); padding: 15px; border-radius: var(--radius-md); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); }
.submit-btn:active { background: var(--orange-dark); transform: scale(0.98); }
.submit-btn:disabled { opacity: 0.6; }

/* ========== POPUP / TOAST ========== */
.added-popup { position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--dark-2); border: 1px solid var(--border); border-left: 3px solid var(--orange); border-radius: var(--radius-md); padding: 12px 16px; display: flex; align-items: center; gap: 12px; z-index: 400; max-width: 320px; width: calc(100% - 32px); box-shadow: var(--shadow-lg); opacity: 0; transition: all 0.3s ease; pointer-events: none; }
.added-popup.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.added-popup-icon { font-size: 20px; flex-shrink: 0; }
.added-popup-text strong { display: block; font-size: 13px; color: var(--white); margin-bottom: 2px; }
.added-popup-text span { font-size: 11px; color: var(--text-muted); }
.toast { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--dark-3); border: 1px solid var(--border); color: var(--white); padding: 12px 20px; border-radius: var(--radius-xl); font-size: 13px; font-weight: 600; z-index: 500; opacity: 0; transition: all 0.3s ease; white-space: nowrap; pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ========== ORDERS DROPDOWN ========== */
.orders-btn { background: rgba(255,107,0,0.15) !important; border-color: rgba(255,107,0,0.4) !important; color: var(--orange) !important; font-weight: 700 !important; font-size: 12px !important; }
.orders-dropdown { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #1a1208; border-bottom: 2px solid rgba(255,107,0,0.4); z-index: 99; padding: 12px 16px; }
.orders-dropdown.open { display: block; }
.order-drop-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 10px 14px; margin-bottom: 6px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.order-drop-item:last-child { margin-bottom: 0; }
.order-drop-num { font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0; }
.order-drop-info { font-size: 11px; color: #888; flex: 1; padding: 0 8px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.order-drop-status { background: rgba(255,107,0,0.15); border: 1px solid rgba(255,107,0,0.3); color: #FF6B00; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 100px; white-space: nowrap; flex-shrink: 0; }

/* ========== ZOOM HINT ========== */
.zoom-hint { position: absolute; bottom: 6px; right: 6px; background: rgba(0,0,0,0.6); color: #fff; font-size: 14px; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; pointer-events: none; opacity: 0; transition: opacity 0.2s; }
.product-image-wrapper:hover .zoom-hint { opacity: 1; }

/* ========== ЛАЙТБОКС ========== */
#lightbox { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
#lightbox.lb-show { opacity: 1; }
.lb-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.92); backdrop-filter: blur(8px); }
.lb-container { position: relative; z-index: 1; max-width: 95vw; max-height: 95vh; display: flex; flex-direction: column; align-items: center; gap: 12px; transform: scale(0.9); transition: transform 0.3s ease; }
#lightbox.lb-show .lb-container { transform: scale(1); }
.lb-img { max-width: 92vw; max-height: 80vh; border-radius: 16px; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,0.8); }
.lb-name { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 600; text-align: center; font-family: 'Inter', system-ui, sans-serif; padding: 0 20px; }
.lb-close { position: absolute; top: -16px; right: -16px; width: 40px; height: 40px; background: #FF6B00; color: #fff; border: none; border-radius: 50%; font-size: 16px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(255,107,0,0.5); z-index: 2; }
.lb-close:active { transform: scale(0.9); }

/* ========== INFO BLOCK ========== */
.info-block { background: var(--dark); border-top: 1px solid var(--border); display: none; }
.info-block.visible { display: block; }
.info-toggle { width: 100%; background: linear-gradient(135deg, #1a1208, #221808); border: none; border-bottom: 1px solid rgba(255,107,0,0.3); color: var(--white); padding: 16px 20px; display: flex; align-items: center; gap: 10px; cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 600; text-align: left; }
.info-toggle:active { opacity: 0.85; }
.info-toggle-arrow { margin-left: auto; font-size: 20px; color: var(--orange); transition: transform 0.3s ease; flex-shrink: 0; }
.info-toggle-arrow.open { transform: rotate(90deg); }
.info-content { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1); padding: 0 16px; }
.info-content.open { max-height: 2000px; padding: 20px 16px; }
.info-intro { background: rgba(255,107,0,0.06); border: 1px solid rgba(255,107,0,0.2); border-radius: 12px; padding: 14px 16px; font-size: 14px; color: var(--text); line-height: 1.6; margin-bottom: 20px; }
.info-intro strong { color: var(--orange); }
.info-section-title { font-size: 13px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.info-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.info-compare-card { background: #161616; border: 1px solid #2a2a2a; border-radius: 14px; padding: 14px 12px; }
.info-compare-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; padding-bottom: 8px; border-bottom: 1px solid #2a2a2a; }
.info-compare-header.entry { border-bottom-color: rgba(34,197,94,0.3); }
.info-compare-header.premium { border-bottom-color: rgba(255,107,0,0.3); }
.info-compare-emoji { font-size: 22px; flex-shrink: 0; }
.info-compare-label { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.info-compare-price { font-family: 'Barlow Condensed', system-ui; font-size: 16px; font-weight: 900; color: var(--orange); }
.info-compare-models { font-size: 9px; color: #666; margin-bottom: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.info-compare-list { list-style: none; margin-bottom: 10px; }
.info-compare-list li { font-size: 11px; color: var(--text); padding: 3px 0; line-height: 1.4; }
.info-compare-ideal { font-size: 10px; color: #666; font-style: italic; line-height: 1.4; }
.info-box { background: #161616; border: 1px solid #2a2a2a; border-radius: 14px; padding: 16px; margin-bottom: 20px; }
.info-box-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.info-box-item { background: rgba(255,255,255,0.04); border: 1px solid #333; border-radius: 8px; padding: 8px 10px; font-size: 12px; font-weight: 600; color: var(--text); }
.info-box-note { font-size: 11px; color: #666; line-height: 1.4; margin: 0; }
.info-durability { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.info-dur-item { background: #161616; border: 1px solid #2a2a2a; border-radius: 12px; padding: 12px 14px; display: flex; align-items: center; gap: 12px; }
.info-dur-icon { font-size: 24px; flex-shrink: 0; }
.info-dur-title { font-size: 12px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.info-dur-text { font-size: 11px; color: var(--text-muted); line-height: 1.4; }
.info-dur-text strong { color: var(--green); }
.info-cta { width: 100%; background: var(--orange); color: var(--white); border: none; padding: 14px; border-radius: 12px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; letter-spacing: 0.5px; }
.info-cta:active { opacity: 0.85; }

/* ========== COPY BTN ========== */
.copy-btn { background: #222; border: 1px solid #333; color: #888; padding: 8px 14px; border-radius: 8px; font-size: 12px; font-weight: 600; cursor: pointer; flex-shrink: 0; transition: all 0.2s; white-space: nowrap; font-family: inherit; }
.copy-btn.copied { background: #FF6B00; border-color: #FF6B00; color: #fff; }