/*
Theme Name: PowerBank Tactical
Theme URI: https://khudozhnik-otvertka.com
Author: Khystyna Horbenko
Author URI: https://khudozhnik-otvertka.com
Description: Тактичні павербанки — WordPress тема з кастомними товарами, кошиком, Telegram-замовленнями та інтеграцією Нової Пошти.
Version: 1.0.0
License: Proprietary
Text Domain: powerbank-tactical
*/

/* ═══════════════════════════════════
   DESIGN TOKENS — PowerBank Tactical
   Source: Figma GRatO20uSmG2ge2O1KBIRk
═══════════════════════════════════ */
:root {
  /* Colors */
  --accent:        #ff3b00;
  --accent2:       #ff4d00;
  --glow:          rgba(255, 59, 0, 0.6);
  --glow-sm:       rgba(255, 59, 0, 0.25);
  --glow-dim:      rgba(255, 59, 0, 0.1);
  --dark:          #19181b;
  --darker:        #0e0d10;
  --bg:            #080808;
  --card-bg:       rgba(167, 162, 162, 0.18);
  --white:         #fefefe;
  --muted:         rgba(255, 255, 255, 0.52);
  --border:        rgba(255, 59, 0, 0.22);
  --border-subtle: rgba(255, 255, 255, 0.07);

  /* Typography */
  --f-display: 'Montserrat', sans-serif;
  --f-title:   'Bebas Neue', sans-serif;
  --f-body:    'Montserrat', sans-serif;
  --f-ui:      'Montserrat', sans-serif;

  /* Layout */
  --max-w:     1440px;
  --header-h:  80px;
  --radius:    4px;
  --radius-lg: 10px;

  /* Shadows */
  --shadow-card:   0 4px 4px rgba(0,0,0,.25);
  --shadow-btn:    0 0 14px rgba(255,106,0,.3), 0 0 6px 1px rgba(255,59,0,.8);
  --shadow-btn-in: inset 0 0 12px rgba(255,0,0,.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--f-body);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; }
input, select, textarea { font-family: inherit; }

/* === Scroll offset під fixed header для anchor-переходів === */
#hero, #reviews, #about, #site-footer {
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.catalog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap !important;
  margin-bottom: 32px;
}

/* ═══════════════ HEADER ═══════════════ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 200; 
  height: 90px;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(14,13,16,.97);
  box-shadow: 0 4px 32px rgba(255,59,0,.18);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 48px; height: 100%;
  display: flex; align-items: center; gap: 40px;
}

/* Logo */
.site-logo { flex-shrink: 0; display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 80px; height: 80px; border-radius: 50%;
 
  display: flex; align-items: center; justify-content: center;
  
  flex-shrink: 0;
}
.logo-text { line-height: 1; }
.logo-main { font-family: var(--f-display); font-size: 20px; color: var(--white); letter-spacing: 2px; 
  text-transform: uppercase; display: block; margin-bottom: 4px; }
.logo-sub  { font-family: var(--f-title); font-size: 14px; color: var(--accent); letter-spacing: 4px; text-transform: uppercase; display: block; }

/* Nav */
.site-nav { flex: 1; display: flex; justify-content: center; }
.nav-list  { display: flex; gap: 2px; }
.nav-list a {
  font-family: 'Montserrat', sans-serif; font-size: 14px; letter-spacing: 1px; font-weight: 600;
  color: var(--white); padding: 6px 16px; border-radius: 3px;
  position: relative; transition: color .2s; white-space: nowrap;
}
.nav-list a::after {
  content: ''; position: absolute; bottom: 2px; left: 16px; right: 16px;
  height: 2px; background: var(--accent); box-shadow: 0 0 8px var(--glow);
  transform: scaleX(0); transition: transform .25s ease;
}
.nav-list a:hover, .nav-list a.active { color: var(--accent); }
.nav-list a:hover::after, .nav-list a.active::after { transform: scaleX(1); }

/* Right area */
.header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Language switcher */
.lang-switcher { display: flex; gap: 0; }
.lang-btn {
  font-family: var(--f-ui); font-size: 12px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--muted);
  background: none; border: 1px solid var(--border-subtle);
  padding: 6px 10px; transition: color .2s, border-color .2s;
}
.lang-btn:first-child { border-radius: 3px 0 0 3px; }
.lang-btn:last-child  { border-radius: 0 3px 3px 0; border-left: none; }
.lang-btn.active { color: var(--accent); border-color: var(--border); }
.lang-btn:hover  { color: var(--white); }

/* Cart */
.cart-btn {
  position: relative; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-subtle); border-radius: var(--radius); color: var(--white);
  transition: color .2s, border-color .2s, box-shadow .2s;
  background: none;
}
.cart-btn:hover { color: var(--accent); border-color: var(--border); box-shadow: 0 0 14px var(--glow); }
.cart-count {
  position: absolute; top: -7px; right: -7px;
  background: var(--accent); color: #fff;
  font-family: var(--f-ui); font-size: 10px; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* CTA button */
.btn-header {
  font-family: var(--f-ui); font-size: 13px; font-weight: 600;
  color: var(--white); background: var(--accent);
  border: 1px solid var(--accent); border-radius: var(--radius); padding: 10px 20px;
  box-shadow: var(--shadow-btn); transition: background .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-header:hover { background: #ff5520; box-shadow: 0 0 20px rgba(255,106,0,.5); }

/* Burger */
.burger-btn {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 44px; height: 44px; background: none;
  border: 1px solid var(--border-subtle); border-radius: var(--radius);
  transition: border-color .2s;
}
.burger-btn:hover { border-color: var(--accent); }
.burger-btn span {
  display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.burger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(14,13,16,.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 24px 20px 32px;
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity .3s, transform .3s; height: 100vh;
}
.mobile-nav.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-nav-list li a {
  font-family: 'Montserrat', sans-serif; font-size: 24px; letter-spacing: 1px; font-weight: 600; color: var(--white);
  display: block; padding: 10px 0; border-bottom: 1px solid var(--border-subtle);
  transition: color .2s, padding-left .2s;
}
.mobile-nav-list li a:hover { color: var(--accent); padding-left: 8px; }
.mobile-nav-bottom { margin-top: 24px; display: flex; gap: 12px; align-items: center; }
.mobile-cta {
  display: inline-block; font-family: var(--f-ui); font-size: 15px; font-weight: 600;
  color: var(--white); background: var(--accent); border-radius: var(--radius); padding: 8px 20px;

}

/* Header spacer */
.header-spacer { height: var(--header-h); }

/* ═══ RESPONSIVE ═══ */
/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1100px) {
  .header-inner { padding: 0 24px; gap: 20px; }
  .nav-list a { font-size: 13px; padding: 8px 10px; }
}
 
@media (max-width: 860px) {
  :root { --header-h: 64px; }
  .site-nav    { display: none; }
  .btn-header  { display: none; }
  .lang-switcher { display: none; }
  .burger-btn  { display: flex; }
  .mobile-nav  { display: block; }
  .header-inner { padding: 0 16px; gap: 10px; display: flex; width: 100%; justify-content: space-between;}
  .logo-icon { width: 60px; height: 60px; }
  .logo-main { font-size: 17px; }
  .logo-sub  { font-size: 14px; font-weight: 500px; letter-spacing: 2px; }
  .mobile-nav-list li a {font-size: 18px;}

}
 
@media (max-width: 400px) {
  
  .logo-main { font-size: 15px; }
}
/* ═══════════════════════════════════
   MAIN STYLES — Shared utilities + sections
═══════════════════════════════════ */

/* ── Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }
.page-banner {
  background: url('../img/banner.png') center/cover no-repeat;
  position: relative; overflow: hidden;
  height: 100vh; 
}
.banner-mob{display: none;}
.page-banner-inner { max-width: var(--max-w); margin: 0 auto; padding: 68px 48px; 
  position: relative; z-index: 1; }
.btn-orange {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f-ui); font-size: 20px; font-weight: 500; color: var(--white);
  background: var(--accent); border: 1px solid var(--accent); border-radius: var(--radius);
  padding: 8px 50px; 
  transition: background .2s, box-shadow .2s, transform .15s;
  cursor: pointer; white-space: nowrap;
}
.btn-orange:hover { background: #ff5520; box-shadow: 0 0 24px rgba(255,106,0,.55); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-ui); font-size: 16px; font-weight: 600; color: var(--white);
  background: transparent; border: 1px solid var(--accent); border-radius: var(--radius);
  padding: 13px 32px; transition: background .2s; cursor: pointer;
}
.btn-outline:hover { background: rgba(255,59,0,.12); }

.section-title {
  font-family: var(--f-display); font-weight: 800; font-style: italic; font-size: clamp(32px, 5vw, 80px);
  text-transform: uppercase; line-height: .95;
}
.section-title .accent { color: var(--accent); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden; min-height: 100vh;
  display: flex; align-items: center;
  background: #000;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 80% at 72% 60%, rgba(180,50,0,.32) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 18% 80%, rgba(255,59,0,.1) 0%, transparent 55%),
    linear-gradient(160deg, #0a0a0a 0%, #1a0800 50%, #0a0a0a 100%);
}
.banner-eyebrow {
  font-family: var(--f-title); font-size: 14px; letter-spacing: 5px;
  color: var(--accent); text-transform: uppercase; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.hero-bg-lines {
  position: absolute; inset: 0; z-index: 1; opacity: .12;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,59,0,.04) 40px, rgba(255,59,0,.04) 41px),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,59,0,.04) 40px, rgba(255,59,0,.04) 41px);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--max-w); margin: 0 auto; padding: 100px 48px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.hero-eyebrow {
  font-family: var(--f-title); font-size: 15px; letter-spacing: 5px;
  color: var(--accent); text-transform: uppercase; margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--accent); box-shadow: 0 0 8px var(--glow); }
.hero-title {
  font-family: var(--f-display); font-size: clamp(52px, 7vw, 110px);
  text-transform: uppercase; line-height: .88; color: var(--white); margin-bottom: 28px;
}
.hero-title .line2 { color: var(--accent2); display: block; }
.hero-desc {
  font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 480px; margin-bottom: 36px;
}
.hero-desc strong { color: var(--white); font-weight: 600; }
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-trust { font-family: var(--f-ui); font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.hero-trust svg { color: var(--accent); }

/* Hero product visual */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-glow-ring {
  position: absolute; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(ellipse,rgba(255,59,0,.16)  0%, transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow { 0%,100%{opacity:.6;transform:scale(1)} 50%{opacity:1;transform:scale(1.05)} }
.hero-card {
  position: relative; z-index: 1;
  width: 320px; background: var(--card-bg);
  border: 2px solid var(--accent); border-radius: var(--radius-lg);
  backdrop-filter: blur(20px); box-shadow: var(--shadow-card), 0 0 40px rgba(255,59,0,.2);
  overflow: hidden; cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.hero-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card), 0 20px 50px rgba(255,59,0,.3); }



/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.product-card {
  position: relative; background: var(--card-bg);
  border: 2px solid var(--accent); border-radius: var(--radius-lg);
  overflow: hidden; backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card); cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.card-img {
  width: 100%;  overflow: hidden;
  background: linear-gradient(160deg, #1e1a1a 0%, #2a2020 100%);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.card-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.card-img-inner { width: 100%; height: 420px; border-radius: 2px; 
  background: linear-gradient(160deg, #2a2a2a 0%, #3d3030 40%, #2a2020 100%); 
  box-shadow: 0 8px 30px rgba(0,0,0,.6); display: flex; align-items: center; justify-content: center; }
.card-emblem { width: 64px; height: 64px; }
.card-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: rgba(177,11,5,.85); border: 1px solid var(--accent);
  border-radius: var(--radius); padding: 4px 12px;
  font-family: var(--f-ui); font-size: 13px; font-weight: 700; font-style: italic;
  box-shadow: 0 0 8px rgba(255,59,0,.5);
}
.card-sep { height: 1px; background: var(--dark); margin: 0 8px 10px; }
.card-body { padding: 0 14px 16px; }
.card-name { font-family: var(--f-display); font-size: 16px; letter-spacing: 1px; text-transform: uppercase; overflow-wrap: break-word; margin-bottom: 6px; }
.card-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 6px; margin-bottom: 12px; }
.card-cap   { font-family: var(--f-ui); font-size: 13px; color: rgba(255,255,255,.72); }
.card-price { font-family: var(--f-display); font-size: 22px; color: var(--accent2); white-space: nowrap; }
.card-add {
  width: 100%; background: var(--accent); border: 1px solid var(--accent);
  border-radius: var(--radius); color: var(--white);
  font-family: var(--f-ui); font-size: 14px; font-weight: 600;
  padding: 11px; 
  transition: background .2s, box-shadow .2s;
}
.card-add:hover { background: #ff5520; box-shadow: 0 0 20px rgba(255,106,0,.5); }

/* ── FILTER TABS ── */
.filter-tabs { display: flex; gap: 0; margin-bottom: 36px; flex-wrap: wrap; }
.filter-tab {
  font-family: var(--f-ui); font-size: 16px; font-weight: 500; color: var(--white);
  background: var(--dark); border: none; padding: 14px 24px; cursor: pointer;
  transition: background .2s, color .2s; white-space: nowrap; position: relative;
}
.filter-tab::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--accent); transform: scaleX(0); transition: transform .2s;
}
.filter-tab:hover { background: rgba(255,59,0,.08); }
.filter-tab.active { background: rgba(255,59,0,.2); }
.filter-tab.active::after { transform: scaleX(1); }

/* ── SECTION GENERAL ── */
.section-header { margin-bottom: 36px; }
.section-center { text-align: center; margin-top: 44px; }

/* ── HOW TO ORDER ── */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 56px; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 60px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}
.step { position: relative; z-index: 1; padding: 0 20px; border-right: 1px solid var(--border-subtle); }
.step:last-child { border-right: none; }
.step-number {
  font-family: 'Alumni Sans', var(--f-display);
  font-size: 120px; font-weight: 700; font-style: italic;
  color: var(--accent); line-height: .85; margin-bottom: -10px;
  text-shadow: 0 0 40px rgba(255,59,0,.25);
}
.step-title { font-family: var(--f-body); font-size: 19px; font-weight: 700; color: var(--accent); margin-bottom: 8px; }
.step-desc  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: rgba(42,42,42,.5); border: 1px solid var(--border-subtle);
  border-radius: 8px; padding: 22px; backdrop-filter: blur(10px);
  transition: border-color .2s, box-shadow .2s;
}
.review-card:hover { border-color: var(--border); box-shadow: 0 0 20px var(--glow-sm); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--glow-dim); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 15px; color: var(--accent); flex-shrink: 0;
}
.review-name { font-family: var(--f-ui); font-size: 14px; font-weight: 600; }
.review-date { font-size: 11px; color: var(--muted); margin-top: 1px; }
.review-stars { display: flex; gap: 2px; margin-bottom: 10px; color: var(--accent); font-size: 13px; }
.review-text { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.65; }

/* ── SWIPER (mobile) ── */
.swiper { width: 100%; overflow: hidden; }
.swiper-wrapper { display: flex; }
.swiper-slide { flex-shrink: 0; }
.swiper-pagination { text-align: center; margin-top: 16px; }
.swiper-pagination-bullet {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--muted); margin: 0 4px; cursor: pointer; transition: background .2s, width .2s;
}
.swiper-pagination-bullet-active { background: var(--accent); width: 20px; border-radius: 4px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-inner { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 80px 20px 60px; }
  .hero-content { order: 2; }
  .hero-visual  { order: 1; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-glow-ring { width: 320px; height: 320px; }
  .hero-card { width: 260px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-grid::before { display: none; }
  .step { border-right: none; border-bottom: 1px solid var(--border-subtle); padding: 0 0 28px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .container, .features-inner { padding-left: 20px; padding-right: 20px; }
  .features-strip{padding-top: 40px;}

  .feature-icon{width: 55px;}
  .feature-name{font-size: 16px;}
    .card-meta{flex-direction: column;}
  .card-add{font-size: 12px; padding: 8px 5px;}
}
@media (max-width: 580px) {
  /* Mobile: 2 cards per row via swiper */
  .products-grid { display: none; }
  .products-swiper-wrap { display: block !important; }
  .products-swiper-wrap .swiper-slide { width: calc(50% - 6px); }
  .steps-grid { grid-template-columns: 1fr; }
}
@media (min-width: 581px) {
  .products-swiper-wrap { display: none; }
}
@media (max-width: 860px) {
  .page-banner {
    background: url('../img/banner-mob.png') no-repeat;
    height: 100vh;
  }
  .page-banner-inner {
    padding: 40px 20px 10px 20px;
    display: flex;
    flex-direction: column;
   
    height: 100%;
  }
  .banner-eyebrow{ display: flex; 
    margin-bottom: 5px; font-size: 12px;
    font-family: 'Montserrat';
    font-size: 12px;
    line-height: 120%;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .banner-desc{display: none;}
  .banner-mob{display: flex;}
  .promo{ font-family: 'Montserrat';font-style: normal;font-weight: 600;font-size: 12px;line-height: 120%;color: #FFFFFF; text-transform: uppercase; }
  .text{font-family: 'Montserrat';font-style: normal;font-weight: 600;font-size: 13px;line-height: 120%;color: #FFFFFF; text-transform: uppercase;}
  .banner-mob.text {
    margin-top: auto;
    padding-bottom: 20px;
  }
  .banner-actions {
    display: none !important;
  }
  .btn-orange{
    display: block;
    width: 80%;
    margin-bottom: 0 auto;
  }
  .mob-cta-wrap {display: flex;justify-content: center; text-align: center;}

  .card-name-prefix {
    display: block;
  }
  .filter-tab{
    font-size: 12px !important;
    padding: 8px 10px !important;
  }

.mob-cta-wrap .btn-orange {
  width: 100%;
  max-width: 360px;
  justify-content: center;
}
.section-hits .section-center {
  display: flex;
  justify-content: center;
}

.section-hits .section-center .btn-orange {
  width: 100%;
  max-width: 360px;
}

.section-engraving .section-center {
  display: flex;
  justify-content: center;
}

.section-engraving .section-center .btn-orange {
  width: 100%;
  max-width: 360px;
}
}
/* ═══════════════ FOOTER ═══════════════ */
.site-footer {
  background: var(--darker);
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
/* ✅ No orange line - removed */
.site-footer::before { display: none; }
/* Subtle top shadow instead */
.site-footer::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent 0%, var(--border) 20%, var(--border) 80%, transparent 100%);
  pointer-events: none;
}

.footer-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 60px 48px 48px;
  display: flex; gap: 56px; justify-content: space-between; 

}

/* Brand */
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-tagline { font-size: 14px; color: var(--muted); line-height: 1.75; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 40px; height: 40px; border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: color .2s, border-color .2s, box-shadow .2s;
}
.social-link:hover { color: var(--accent); border-color: var(--accent); box-shadow: 0 0 12px var(--glow); }

/* Headings */
.footer-heading {
  font-family: var(--f-display); font-size: 14px; letter-spacing: 2px;
  color: var(--white); text-transform: uppercase; margin-bottom: 20px;
  padding-bottom: 10px; position: relative;
}
.footer-heading::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px; background: var(--accent); box-shadow: 0 0 6px var(--glow);
}

/* ✅ Manager — round floating buttons on RIGHT side */
.footer-manager-wrap {
  display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 450px;
}
.footer-manager{width: 100%; max-width: 450px;}
.footer-manager-desc {
  font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 4px;
}
.manager-btns {
  display: flex; flex-direction: column; gap: 10px;
}
.manager-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-subtle);
  border-radius: 40px;
  color: var(--white);
  font-family: var(--f-ui); font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .15s;
}
.manager-btn:hover { background: rgba(255,59,0,.1); border-color: var(--border); transform: translateX(3px); }
.manager-btn .btn-icon {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.manager-btn.telegram .btn-icon { background: rgba(41,168,235,.18); color: #29a8eb; }
.manager-btn.telegram:hover { border-color: rgba(41,168,235,.4); }
.manager-btn.instagram .btn-icon { background: rgba(225,48,108,.18); color: #e1306c; }
.manager-btn.instagram:hover { border-color: rgba(225,48,108,.4); }

/* Contacts */
.footer-contacts { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; }
.footer-contact-item svg { color: var(--accent); flex-shrink: 0; }
.footer-contact-item a { font-size: 14px; color: var(--muted); transition: color .2s; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.footer-badge {
  font-family: var(--f-ui); font-size: 11px; font-weight: 600;
  padding: 4px 12px; border: 1px solid var(--border); border-radius: 3px;
  color: var(--muted); background: var(--glow-dim);
}

/* Guarantee strip */
.footer-guarantee {
  max-width: var(--max-w); margin: 0 auto; padding: 48px 48px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 14px;
}
.guarantee-item {
  background: rgba(255,59,0,.05); border: 1px solid var(--border); border-radius: 6px;
  padding: 14px 16px; display: flex; align-items: center; gap: 12px;
}
.guarantee-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--glow-dim); border: 1px solid var(--border); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.guarantee-title { font-family: var(--f-ui); font-size: 12px; font-weight: 700; color: var(--white); }
.guarantee-sub   { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* Bottom bar */
.footer-bottom { border-top: 1px solid var(--border-subtle); }
.footer-bottom-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 18px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.footer-copy  { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,.25); transition: color .2s; }
.footer-links a:hover { color: var(--accent); }

/* ═══ RESPONSIVE ═══ */

/* ═══ RESPONSIVE ═══ */
@media (max-width: 960px) {
  .footer-inner { flex-wrap: wrap; gap: 36px; padding: 40px 24px 32px; }
  .footer-inner > div { flex: 1 1 calc(50% - 18px); min-width: 220px; }
  .footer-guarantee { grid-template-columns: repeat(2,1fr); padding: 32px 24px; }
}
@media (max-width: 640px) {
  .footer-inner { flex-direction: column; gap: 32px; padding: 40px 20px 32px; }
  .footer-inner > div { flex: 1 1 100%; }
  .footer-tagline { max-width: 100%; }
  .footer-guarantee { grid-template-columns: 1fr 1fr; padding: 0 20px 36px; }
  .footer-bottom-inner { padding: 16px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-links { flex-wrap: wrap; gap: 12px; }
  .manager-btn { font-size: 14px; }
}
@media (max-width: 400px) {
  .footer-guarantee { grid-template-columns: 1fr; }
}

1 .select-wrap::after
.manager-btn.viber:hover {
  background: linear-gradient(135deg, #9066bb, #6d2f9b);
  box-shadow: 0 4px 16px rgba(123,81,157,.45);
}

/* ══ MOBILE: lang switcher always visible in mobile menu ══ */
@media (max-width: 860px) {
  .lang-switcher--mobile {
    display: flex !important;
    gap: 8px;
    margin-bottom: 12px;
  }
}


/* ═══════════════════════════════════
   INLINE STYLES
   Extracted from HTML <style> blocks and style= attributes
═══════════════════════════════════ */

/* ════════════════════════════
   INDEX PAGE — BANNER
════════════════════════════ */




.banner-title { font-family: var(--f-display); font-size: clamp(38px, 7vw, 96px); text-transform: uppercase; line-height: .9; color: var(--white); margin-bottom: 24px; }
.banner-title .accent { color: var(--accent2); display: block; }
.banner-desc { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 580px; margin-bottom: 36px; }
.banner-desc strong { color: var(--white); }
.banner-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.banner-trust { font-family: var(--f-ui); font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.banner-trust svg { color: var(--accent); }

/* ════════════════════════════
   INDEX PAGE — SECTIONS
════════════════════════════ */
.section-hits      { padding: 100px 0; background: linear-gradient(180deg, #080808 0%, #120400 50%, #080808 100%); }
.section-engraving { padding: 100px 0; background: linear-gradient(180deg, #080808 0%, #0f0500 60%, #080808 100%); }
.section-how       { padding: 100px 0; background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-reviews   { padding: 100px 0; background: #080808; }

/* ════════════════════════════
   INDEX PAGE — PRODUCT CARDS (override)


════════════════════════════ */

.hits-desktop { display: block; }
.hits-mobile  { display: none; }
.review-card {
  height: 100%;
  box-sizing: border-box;
}

.pb-track {
  align-items: stretch;
}

.reviews-swiper .pb-track .review-card-wrap {
  display: flex;
}


.step-top {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 16px;
}
.step-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: rgba(255,59,0,.08);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: background .2s, box-shadow .2s;
}
.step:hover .step-icon {
  background: rgba(255,59,0,.15);
  box-shadow: 0 0 20px rgba(255,59,0,.2);
}

.steps-grid {
  position: relative;
}
.steps-grid::before {
  display: none;
}


@media (max-width: 860px) {
.section-hits      { padding: 60px 0; background: linear-gradient(180deg, #080808 0%, #120400 50%, #080808 100%); }
.section-engraving { padding: 60px 0; background: linear-gradient(180deg, #080808 0%, #0f0500 60%, #080808 100%); }
.section-how       { padding: 60px 0; background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-reviews   { padding: 60px 0; background: #080808; }
.banner-title{ margin-bottom: 5px; font-weight: 600 !important;}
}

@media (max-width: 580px) {
  .hits-desktop { display: none; }
  .hits-mobile  { display: block; }
  .hits-mobile .pb-track .product-card { width: calc(50vw - 28px); }
}
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }


/* ════════════════════════════
   INDEX PAGE — FILTER TABS (override)
════════════════════════════ */
.filter-tabs { display: flex; gap: 0; margin-bottom: 32px; flex-wrap: wrap; }
.filter-tab { font-family: var(--f-ui); font-size: 15px; font-weight: 500; color: var(--white); background: var(--dark); border: none; padding: 13px 22px; cursor: pointer; transition: background .2s; white-space: nowrap; position: relative; }
.filter-tab::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform .2s; }
.filter-tab:hover { background: rgba(255,59,0,.08); }
.filter-tab.active { background: rgba(255,59,0,.2); }
.filter-tab.active::after { transform: scaleX(1); }

/* ════════════════════════════
   INDEX PAGE — CUSTOM SWIPER
════════════════════════════ */
.pb-swiper { overflow: hidden; position: relative; }
.pb-track { display: flex; transition: transform .38s ease; will-change: transform; gap: 20px; }
.pb-track .product-card { flex-shrink: 0; }
.swiper-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.swiper-btns { display: flex; gap: 10px; flex-shrink: 0; }
.swiper-btn { width: 44px; height: 44px; background: none; border: 1px solid var(--border); border-radius: 50%; color: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s, border-color .2s; }
.swiper-btn:hover { background: rgba(255,59,0,.1); border-color: var(--accent); }
.swiper-btn:disabled { opacity: .35; cursor: default; }
.swiper-dots { display: flex; gap: 6px; justify-content: center; margin-top: 20px; }
.swiper-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); cursor: pointer; transition: background .2s, width .2s; border: none; }
.swiper-dot.active { background: var(--accent); width: 20px; border-radius: 4px; }
.hits-desktop { display: block; }
.hits-mobile  { display: none; }

/* ════════════════════════════
   INDEX PAGE — STEPS (override)
════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 48px; }
.step { padding: 0 20px; border-right: 1px solid var(--border-subtle); }
.step:last-child { border-right: none; }
.step-number { font-family: 'Alumni Sans', var(--f-display); font-size: 110px; font-weight: 700; font-style: italic; color: var(--accent); line-height: .85; margin-bottom: -8px; text-shadow: 0 0 40px rgba(255,59,0,.25); }
.step-title { font-size: 18px; font-weight: 700; color: var(--accent); margin-bottom: 8px; }
.step-desc  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ════════════════════════════
   INDEX PAGE — REVIEWS (override)
════════════════════════════ */
.review-card { background: rgba(42,42,42,.5); border: 1px solid var(--border-subtle); border-radius: 8px; padding: 22px; backdrop-filter: blur(10px); transition: border-color .2s; height: 100%; box-sizing: border-box; }
.review-card:hover { border-color: var(--border); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--glow-dim); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--f-display); font-size: 15px; color: var(--accent); flex-shrink: 0; }
.review-avatar-img { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--border); object-fit: cover; flex-shrink: 0; }
.review-name { font-family: var(--f-ui); font-size: 14px; font-weight: 600; }
.review-date { font-size: 11px; color: var(--muted); margin-top: 1px; }
.review-stars { color: var(--accent); font-size: 13px; margin-bottom: 10px; }
.review-text { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.65; }
.review-photo { margin-top: 12px; }
.review-photo img { width: 100%; max-height: 200px; object-fit: cover; border-radius: 6px; border: 1px solid var(--border-subtle); }
.reviews-swiper .pb-track .review-card-wrap { flex-shrink: 0; }

/* ════════════════════════════
   INDEX PAGE — SECTION SPACING (from style= attributes)
════════════════════════════ */
.section-hits .section-header   { margin-bottom: 28px; }
.section-hits .section-center,
.section-engraving .section-center { margin-top: 36px; }
.section-reviews .swiper-nav    { margin-bottom: 28px; }
#eng-swiper                     { margin-top: 24px; }

/* Section heading styles (from style= attributes) */
.section-heading {
  font-family: var(--f-body);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(28px, 4vw, 52px);
  text-transform: uppercase;
}
.section-heading--sm {
  font-family: var(--f-body);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(24px, 3.5vw, 52px);
  text-transform: uppercase;
  line-height: 1.1;
}
.section-subheading {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}

/* ════════════════════════════
   INDEX PAGE — RESPONSIVE
════════════════════════════ */
@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .step { border-right: none; border-bottom: 1px solid var(--border-subtle); padding: 0 0 28px; }
  .features-inner { grid-template-columns: 1fr; padding: 0 20px; gap: 30px;}
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  
}
@media (max-width: 580px) {
  .hits-desktop { display: none; }
  .hits-mobile  { display: block; }
  .hits-mobile .pb-track .product-card { width: calc(50vw - 28px); }
  .steps-grid { grid-template-columns: 1fr; }
  .products-grid { display: none; }
  .card-name{font-size: 12px !important; margin-bottom: 2px !important;}
}

/* ════════════════════════════
   CART PAGE STYLES
════════════════════════════ */
.cart-page { padding: 60px 0 80px; background: linear-gradient(180deg,#080808 0%,#120400 50%,#080808 100%); min-height: 70vh; }
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.cart-empty { text-align: center; padding: 80px 20px; }
.cart-empty-icon  { font-size: 72px; margin-bottom: 20px; }
.cart-empty-title { font-family: var(--f-display); font-size: 28px; text-transform: uppercase; margin-bottom: 12px; }
.cart-empty-text  { color: var(--muted); margin-bottom: 28px; }
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: flex; align-items: center; gap: 20px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px 20px; backdrop-filter: blur(10px);
}
.cart-item-img {
  width: 80px; height: 100px; flex-shrink: 0;
  background: linear-gradient(160deg,#1e1a1a,#2a2020); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; border: 1px solid var(--border);
}
.cart-item-info  { flex: 1; }
.cart-item-name  { font-family: var(--f-display); font-size: 18px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.cart-item-cap   { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.cart-item-price { font-family: var(--f-display); font-size: 22px; color: var(--accent2); }

.qty-ctrl { display: flex; align-items: center; }
.qty-btn  { width: 32px; height: 32px; background: var(--dark); border: 1px solid var(--border); color: var(--white); font-size: 16px; cursor: pointer; transition: background .2s; }
.qty-btn:first-child { border-radius: 3px 0 0 3px; }
.qty-btn:last-child  { border-radius: 0 3px 3px 0; }
.qty-btn:hover { background: rgba(255,59,0,.12); }

.remove-btn { background: none; border: none; color: var(--muted); font-size: 18px; cursor: pointer; transition: color .2s; padding: 4px; }
.remove-btn:hover { color: var(--accent); }
.cart-summary {
  background: var(--dark); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; position: sticky; top: calc(var(--header-h) + 20px);
}
.summary-title { font-family: var(--f-display); font-size: 18px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border-subtle); font-size: 14px; color: var(--muted); }
.summary-row:last-of-type { border-bottom: none; }
.summary-row.total { font-family: var(--f-display); font-size: 20px; color: var(--white); padding-top: 16px; margin-top: 4px; border-top: 1px solid var(--border); }
.summary-row.total span:last-child { color: var(--accent2); }
.summary-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

.btn-checkout:hover { background: #ff5520; }
.btn-continue { width: 100%; padding: 14px; font-family: var(--f-ui); font-size: 15px; font-weight: 600; color: var(--muted); background: none; border: 1px solid var(--border-subtle); border-radius: var(--radius); cursor: pointer; transition: border-color .2s, color .2s; }
.btn-continue:hover { border-color: var(--border); color: var(--white); }
.checkout-section { display: none; margin-top: 32px; }
.checkout-section.show { display: block; }
.checkout-title { font-family: var(--f-display); font-size: 22px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.form-section-label { font-family: var(--f-display); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border-subtle); }
.form-field { margin-bottom: 12px; }
.form-input, .form-select { width: 100%; padding: 13px 15px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); color: var(--white); font-family: var(--f-ui); font-size: 15px; transition: border-color .2s; }
.form-input:focus, .form-select:focus { outline: none; border-color: var(--accent); }
.form-input::placeholder { color: rgba(255,255,255,.3); }
.select-wrap { position: relative; }
.select-wrap::after { content: '▾'; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.form-select { appearance: none; }
.form-select option { background: var(--darker); }
.btn-pay { width: 100%; padding: 18px; font-family: var(--f-ui); font-size: 18px; font-weight: 700; color: var(--white); background: var(--accent); border: 1px solid var(--accent); border-radius: var(--radius); box-shadow: var(--shadow-btn); cursor: pointer; margin-top: 8px; transition: background .2s, transform .15s; }
.btn-pay:hover { background: #ff5520; transform: translateY(-1px); }
.order-done { display: none; text-align: center; padding: 60px 20px; }
.order-done.show { display: block; }
.done-icon  { font-size: 72px; margin-bottom: 20px; }
.done-title { font-family: var(--f-display); font-size: 32px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
.done-text  { font-size: 15px; color: var(--muted); max-width: 480px; margin: 0 auto 28px; line-height: 1.7; }

/* Cart inline style= replacements */
.cart-page-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 5vw, 56px);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 36px;
}
.form-section-label--mt { margin-top: 24px; }
.form-input--resize { resize: vertical; }
#checkout-items-summary { margin-bottom: 20px; }
.checkout-total-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--f-display);
  font-size: 20px;
}
#co-total { color: var(--accent2); }
.checkout-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
}
.summary-item-name { color: var(--muted); }

@media (max-width: 860px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .checkout-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 580px) {
  .cart-item { flex-wrap: wrap; }
  .cart-item-actions { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
}

/* ════════════════════════════
   CATALOG PAGE STYLES
════════════════════════════ */
.catalog-hero {
  padding: 60px 0 48px;
  background: linear-gradient(180deg, #080808 0%, #120400 100%);
  border-bottom: 1px solid var(--border);
}
.catalog-page { padding: 60px 0 80px; background: #080808; min-height: 60vh; }
.catalog-hero-desc {
  font-size: 15px;
  color: var(--muted);
  margin-top: 12px;
}
.catalog-page .filter-tabs { margin-bottom: 32px; }
.products-swiper-wrap { display: none; }
@media (max-width: 580px) {
  .products-grid { display: none !important; }
  .products-swiper-wrap { display: block !important; padding: 0 12px; }
}

/* ════════════════════════════
   ORDER PAGE
════════════════════════════ */
#file-input { display: none; }

/* ════════════════════════════
   LEGAL PAGES STYLES
════════════════════════════ */
.legal-page { padding: 60px 0 80px; background: #080808; min-height: 70vh; }
.legal-inner { max-width: 860px; margin: 0 auto; padding: 0 48px; }
.legal-title { font-family: var(--f-display); font-size: clamp(28px,5vw,52px); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.legal-date  { font-size: 13px; color: var(--muted); margin-bottom: 40px; }
.legal-inner h2 { font-family: var(--f-display); font-size: 20px; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); margin: 36px 0 14px; }
.legal-inner p  { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 14px; }
.legal-inner ul { margin: 0 0 14px 20px; }
.legal-inner ul li { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 6px; }
.legal-inner a  { color: var(--accent); }
.legal-inner a:hover { text-decoration: underline; }
.legal-nav  { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.legal-nav a { font-family: var(--f-ui); font-size: 13px; font-weight: 600; color: var(--muted); padding: 6px 16px; border: 1px solid var(--border-subtle); border-radius: 3px; transition: color .2s, border-color .2s; }
.legal-nav a:hover, .legal-nav a.active { color: var(--accent); border-color: var(--border); }
/* Returns info cards */
.info-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 24px 0; }
.info-card { background: rgba(255,59,0,.06); border: 1px solid var(--border); border-radius: 8px; padding: 20px; }
.info-card-icon  { font-size: 28px; margin-bottom: 10px; }
.info-card-title { font-family: var(--f-display); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--white); margin-bottom: 6px; }
.info-card-text  { font-size: 13px; color: var(--muted); line-height: 1.6; }
@media (max-width: 640px) { .info-cards { grid-template-columns: 1fr; } .legal-inner { padding: 0 20px; } }
@media (max-width: 580px) { .legal-inner { padding: 0 20px; } }

/* ════════════════════════════
   UTILITIES
════════════════════════════ */
.is-hidden { display: none; }
.text-white { color: var(--white); }
.site-logo { text-decoration: none; }
.btn-add--success { background: #2a8a2a !important; border-color: #2a8a2a !important; }
.field-error { border-color: #ff3b00 !important; }


/* ═══════════════════════════════════
   PRODUCT PAGE STYLES
═══════════════════════════════════ */

/* ── Product Page Layout ── */
.product-page {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #080808 0%, #120400 50%, #080808 100%);
}
.product-layout {
  max-width: var(--max-w); margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}

/* ── Gallery ── */
.product-gallery { position: sticky; top: calc(var(--header-h) + 20px); }
.gallery-main {
  width: 100%; aspect-ratio: 1;
  background: var(--card-bg); border: 2px solid var(--accent);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative; margin-bottom: 12px;
  box-shadow: var(--shadow-card), 0 0 30px rgba(255,59,0,.15);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; }
.gallery-thumb {
  width: 72px; height: 72px; flex-shrink: 0;
  background: var(--card-bg); border: 2px solid transparent;
  border-radius: 6px; overflow: hidden; cursor: pointer;
  transition: border-color .2s; display: flex; align-items: center; justify-content: center;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--accent); }
.gallery-thumb:hover { border-color: var(--glow-sm); }

/* ── Хлібні крихти (окремий рядок над секцією товару) ── */
.product-page > .container > .product-breadcrumb {
  max-width: var(--max-w);
  margin: 0 auto 28px;
  padding: 0 48px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.product-page > .container > .product-breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color .2s ease;
}
.product-page > .container > .product-breadcrumb a:hover {
  color: var(--accent);
}
.product-page > .container > .product-breadcrumb .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.25);
}
.product-page > .container > .product-breadcrumb .breadcrumb-current {
  color: rgba(255, 255, 255, 0.6);
}

/* ── Product Info ── */
.product-title { font-family: var(--f-display); font-size: clamp(28px, 4vw, 32px); text-transform: uppercase;  margin-bottom: 8px; }
.product-subtitle { font-size: 20px; color: var(--muted); margin-bottom: 20px; }
.product-status {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,180,0,.12); border: 1px solid rgba(0,180,0,.3);
  border-radius: 3px; padding: 4px 12px; margin-bottom: 20px;
  font-family: var(--f-ui); font-size: 13px; font-weight: 600; color: #4caf50;
}
.product-status.out { background: rgba(255,59,0,.1); border-color: var(--border); color: var(--accent); }
.product-price-wrap { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
.product-price { font-family: var(--f-display); font-size: clamp(28px, 4vw, 38px); font-weight: 600; color: var(--accent2); }
.product-price-old { font-size: 20px; color: var(--muted); text-decoration: line-through; }

/* Qty */
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.qty-label { font-family: var(--f-ui); font-size: 14px; color: var(--muted); }
.qty-ctrl { display: flex; align-items: center; gap: 0; }
.qty-btn {
  width: 36px; height: 36px; background: var(--dark);
  border: 1px solid var(--border); color: var(--white);
  font-size: 18px; transition: background .2s;
}
.qty-btn:first-child { border-radius: 3px 0 0 3px; }
.qty-btn:last-child  { border-radius: 0 3px 3px 0; }
.qty-btn:hover { background: rgba(255,59,0,.12); }
.qty-val {
  width: 44px; height: 36px; text-align: center;
  background: var(--dark); border: 1px solid var(--border); border-left: none; border-right: none;
  color: var(--white); font-family: var(--f-ui); font-size: 16px; font-weight: 600;
}

/* Actions */
.product-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.btn-add-cart {
  font-family: var(--f-ui); font-size: 17px; font-weight: 600; color: var(--white);
  background: var(--accent); border: 1px solid var(--accent); border-radius: var(--radius);
  padding: 16px; box-shadow: var(--shadow-btn);
  transition: background .2s, transform .15s;
}
.btn-add-cart:hover { background: #ff5520; transform: translateY(-1px); }
.btn-engrave {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f-ui); font-size: 15px; font-weight: 600; color: var(--white);
  background: transparent; border: 1px solid var(--accent); border-radius: var(--radius);
  padding: 14px; transition: background .2s;
}
.btn-engrave:hover { background: rgba(255,59,0,.12); }

/* Features list */
.product-features { border-top: 1px solid var(--border-subtle); padding-top: 24px; }
.product-feature { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border-subtle); }
.product-feature:last-child { border-bottom: none; }
.product-feature svg { color: var(--accent); flex-shrink: 0; }
.product-feature span { font-size: 14px; color: var(--muted); }

/* ── Modal / Overlay ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
  padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--darker); border: 1px solid var(--border);
  border-radius: 12px; max-width: 900px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(20px); transition: transform .3s;
  box-shadow: 0 0 60px rgba(255,59,0,.2);
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; background: var(--dark); border: 1px solid var(--border-subtle);
  border-radius: 50%; color: var(--white); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s; z-index: 1;
}
.modal-close:hover { background: var(--accent); border-color: var(--accent); }
.modal-inner { position: relative; padding: 40px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 860px) {
  .product-layout { grid-template-columns: 1fr; gap: 36px; padding: 0 20px; }
  .product-page > .container > .product-breadcrumb { padding: 0 20px; margin-bottom: 20px; font-size: 14px; }
  .product-gallery { position: static; }
}

@media (max-width: 600px) {
  .product-oos-text {
    font-size: 12px;
    letter-spacing: 0.02em;
    line-height: 1.4;
  }
  .product-oos-block {
    gap: 10px;
    margin-bottom: 24px;
  }
  .product-oos-ig {
    min-height: 52px;
  }
  .product-oos-ig .oos-ig-icon { width: 52px; }
  .product-oos-ig .oos-ig-icon svg { width: 18px; height: 18px; }
  .product-oos-ig .oos-ig-label {
    padding: 0 14px;
    font-size: 15px;
    letter-spacing: 0.08em;
  }
  .product-oos-ig .oos-ig-arrow { width: 46px; }
  .product-oos-ig .oos-ig-arrow svg { width: 17px; height: 17px; }
}

/* ═══════════════════════════════════
   ORDER FORM STYLES — Замовлення з гравіюванням
═══════════════════════════════════ */

.order-section {
  padding: 72px 0 80px;
  background: linear-gradient(180deg, #080808 0%, #0f0500 60%, #080808 100%);
}
.order-header { max-width: var(--max-w); margin: 0 auto; padding: 0 48px 48px; }
.order-main-title {
  font-family: var(--f-display); font-size: clamp(28px, 4vw, 52px);
  text-transform: uppercase; letter-spacing: 2px; display: flex; align-items: center; gap: 14px;
}
.order-main-title .star { color: var(--accent); font-size: .8em; }
.order-price-note { font-size: 16px; color: var(--muted); margin-top: 8px; }
.order-price-note strong { color: var(--accent); font-weight: 700; }

.order-layout {
  max-width: var(--max-w); margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start;
}

/* ── Left: Engraving form ── */

.order-col-title { font-family: var(--f-ui); font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }

/* Radio groups */
.radio-group { margin-bottom: 20px; }
.radio-option {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border: 1px solid var(--border-subtle); border-radius: var(--radius);
  cursor: pointer; margin-bottom: 8px; transition: border-color .2s, background .2s;
}
.radio-option:hover { border-color: var(--border); background: rgba(255,59,0,.04); }
.radio-option input[type="radio"] {
  width: 18px; height: 18px; accent-color: var(--accent); flex-shrink: 0; margin-top: 2px;
}
.radio-label { font-family: var(--f-ui); font-size: 15px; font-weight: 500; color: var(--white); }
.radio-sub   { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* File upload */
.file-upload-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-ui); font-size: 14px; font-weight: 600; color: var(--white);
  background: var(--accent); border: 1px solid var(--accent); border-radius: var(--radius);
  padding: 10px 20px; cursor: pointer; box-shadow: var(--shadow-btn);
  transition: background .2s; margin-top: 8px;
}
.file-upload-btn:hover { background: #ff5520; }
.file-name { font-size: 13px; color: var(--muted); margin-top: 6px; margin-left: 4px; }

/* Text input area */
.engraving-text {
  width: 100%; min-height: 100px; resize: vertical;
  background: rgba(255,255,255,.05); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); color: var(--white);
  font-family: var(--f-ui); font-size: 14px; padding: 12px 14px; margin-top: 8px;
  transition: border-color .2s;
}
.engraving-text:focus { outline: none; border-color: var(--border); }
.engraving-text::placeholder { color: rgba(255,255,255,.3); }

/* Subsection toggle */
.subsection { display: none; margin-top: 10px; padding-left: 30px; }
.subsection.visible { display: block; }

/* ── Right: Contact + Delivery ── */
.order-col-right {}
.form-section-title {
  font-family: var(--f-display); font-size: 16px; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 16px; color: var(--white);
}

/* Form fields */
.form-field { margin-bottom: 12px; }
.form-input, .form-select {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); color: var(--white);
  font-family: var(--f-ui); font-size: 15px;
  transition: border-color .2s, background .2s;
}
.form-input:focus, .form-select:focus { outline: none; border-color: var(--accent); background: rgba(255,59,0,.04); }
.form-input::placeholder { color: rgba(255,255,255,.3); }
.form-select { appearance: none; cursor: pointer; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾'; position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--muted); pointer-events: none; font-size: 14px;
}
.form-select option { background: var(--darker); color: var(--white); }

.form-divider { margin: 20px 0; }
.form-section-title + .form-field { margin-top: 0; }

/* Submit */
.btn-submit {
  width: 100%; padding: 18px;
  font-family: var(--f-ui); font-size: 18px; font-weight: 700; color: var(--white);
  background: var(--accent); border: 1px solid var(--accent); border-radius: var(--radius);
  box-shadow: var(--shadow-btn); cursor: pointer; margin-top: 8px;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-submit:hover { background: #ff5520; transform: translateY(-1px); box-shadow: 0 0 24px rgba(255,106,0,.55); }

/* Success state */
.order-success {
  display: none; text-align: center; padding: 48px 24px;
}
.order-success.show { display: block; }
.success-icon { font-size: 64px; margin-bottom: 16px; }
.success-title { font-family: var(--f-display); font-size: 28px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.success-text  { font-size: 15px; color: var(--muted); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 860px) {
  .order-layout { grid-template-columns: 1fr; gap: 36px; padding: 0 20px; }
  .order-header { padding: 0 20px 36px; }
}
/* ══ HERO SLIDER ══ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease, transform .9s ease;
  transform: scale(1.04);
  z-index: 0;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* ══ HERO BG через CSS background (для desktop и mobile) ══
   Задайте свои изображения ниже:
   --hero-bg-desktop: url('img/banner.png');
   --hero-bg-mobile: url('img/banner-mobile.png');
*/
:root {
  --hero-bg-desktop: url('img/banner.png');
  --hero-bg-mobile: url('img/banner-mobile.png');
  --hero-bg-desktop-2: url('img/banner-2.png');
  --hero-bg-mobile-2: url('img/banner-mob.png');
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: var(--hero-bg-desktop);
}
.hero-slide[data-slide="0"] .hero-slide-bg { background-image: var(--hero-bg-desktop); }
.hero-slide[data-slide="1"] .hero-slide-bg { background-image: var(--hero-bg-desktop-2); }
.hero-slide[data-slide="2"] .hero-slide-bg { background-image: var(--hero-bg-desktop); }

@media (max-width: 768px) {
  .hero-slide[data-slide="0"] .hero-slide-bg { background-image: var(--hero-bg-mobile); }
  .hero-slide[data-slide="1"] .hero-slide-bg { background-image: var(--hero-bg-mobile-2); }
  .hero-slide[data-slide="2"] .hero-slide-bg { background-image: var(--hero-bg-mobile); }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.3) 60%, rgba(0,0,0,.15) 100%);
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-slide-eyebrow {
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.hero-slide-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(38px, 7vw, 68px);
  text-transform: uppercase;
  line-height: .9;
  color: var(--white);
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(0,0,0,.55), 0 0 60px rgba(0,0,0,.3);
}
.hero-slide-title .accent { color: var(--accent2); display: block; }
.hero-slide-desc {
  font-family: var(--f-ui);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 36px;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.hero-slide-desc strong { color: var(--white); }
.hero-slide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ══ SECTION REVEAL ANIMATIONS ══ */
.section-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.section-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
.section-reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.section-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.section-reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.section-reveal-scale {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .7s ease, transform .7s ease;
}
.section-reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.stagger-children.visible > *:nth-child(1) { transition-delay: .05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: .12s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: .19s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: .26s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: .33s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: .40s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: .47s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: .54s; }
.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ══ STRIKETHROUGH PRICE ══ */
.card-prices {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;      /* було nowrap — ціни випирали на мобільних */
}
.card-old-price {
  font-family: var(--f-ui);
  font-size: 15px;
  color: rgba(255,255,255,.38);
  text-decoration: line-through;
  text-decoration-color: rgba(255,80,30,.6);
  text-decoration-thickness: 2px;
}
.card-new-price {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600 !important;
  font-style: normal;
  color: var(--accent2);
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(255,77,0,.25);
}

/* ══ HITS — Static 4-card grid (no swiper) ══ */
.hits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 900px) {
  .hits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-slider {
    height: 630px;
  }
  .hits-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .card-img img {
    width: 100%;
    max-width: 100%;
    height: 340px;
    object-fit: cover;
  }
  .card-old-price {
    font-size: 12px;
  }
  .card-new-price {
    font-size: 15px;
  }
}

/* ══ BRIGHT SWIPER ARROWS (for engraving & reviews) ══ */
.swiper-btn-bright {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2.5px solid var(--accent);
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 0 0 0 rgba(255,59,0,0);
  flex-shrink: 0;
}
.swiper-btn-bright:hover {
  background: var(--accent2, #ff5a1f);
  border-color: var(--accent2, #ff5a1f);
  transform: scale(1.1);
  box-shadow: 0 0 18px rgba(255,59,0,.45);
}
.swiper-btn-bright:active { transform: scale(.94); }
.swiper-btn-bright svg {
  width: 22px; height: 22px;
  stroke: #fff; stroke-width: 2.8; fill: none;
}

/* ══ LIVE VIEWERS WIDGET ══ */
.live-viewers {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  background: rgba(18,16,20,.88);
  border: 1px solid rgba(255,59,0,.2);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0,0,0,.5), 0 0 12px rgba(255,59,0,.08);
  animation: viewerSlideIn .6s cubic-bezier(.22,1,.36,1) both;
  animation-delay: 2s;
  font-family: var(--f-ui);
}
@keyframes viewerSlideIn {
  from { opacity: 0; transform: translateY(24px) scale(.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc40;
  box-shadow: 0 0 6px #2ecc40;
  animation: livePulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.75); }
}
.live-viewers-text {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  line-height: 1.3;
}
.live-viewers-count {
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
}


/* ══ MOBILE LANG SWITCHER — visible on mobile ══ */
.lang-switcher--mobile {
  display: flex;
}

@media (max-width: 860px) {
  .hero-slide-content {
    padding: 40px 20px  0 20px;
    justify-content: flex-start;
  }
  .hero-slide-eyebrow{
    font-size: 12px;
  }
  .about-stats{
    flex-direction: column !important;
  }
  
  .hero-slide-desc {
    display: block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none !important;
    color: #FFFFFF;
    max-width: 100%;
    
    
  }
  .hero-slide-title {
    font-size: 28px;
    margin-bottom: 4px !important;
  }
  .hero-slide-eyebrow { font-size: 14px; font-weight: 500 !important; color: #fff;  letter-spacing: 0; margin-bottom: 2px; }
  
  .hero-slide-actions .btn-orange {
    display: block !important;
    width: auto;
    font-size: 14px;
    font-weight: 400;
    padding: 6px 20px;
    margin: 0 auto;
    border-radius: 2px;
    
  }

  .hero-slide-actions {
    margin-top: auto;
    padding-bottom: 20px;
  }
  .live-viewers {
    left: 12px;
    bottom: 12px;
    padding: 8px 12px;
  }
  .live-viewers-text { font-size: 11px; }
  .swiper-btn-bright {
    width: 42px;
    height: 42px;
  }
  .swiper-btn-bright svg { width: 18px; height: 18px; }
}

/* ══ SECTION: ПРО НАС ══ */
.section-about {
  padding: 80px 0;
  background: var(--bg, #0d0b0f);
}
.about-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 32px;
}
.about-text p {
  font-family: var(--f-ui);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted, rgba(255,255,255,.6));
  margin-bottom: 16px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-stat-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-stat-number {
  font-family: var(--f-display, 'Bebas Neue', sans-serif);
  font-size: 36px;
  color: var(--accent, #ff3b00);
  line-height: 1;
}
.about-stat-label {
  font-family: var(--f-ui);
  font-size: 13px;
  color: var(--muted, rgba(255,255,255,.6));
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .about-stat-item {
    flex: 1 1 calc(50% - 6px);
    min-width: 140px;
    padding: 18px 16px;
  }
  .about-stat-number { font-size: 28px; }
  .section-about { padding: 48px 0; }
}

/* ══ SECTION: КОНТАКТИ ══ */
.section-contacts {
  padding: 80px 0;
  background: rgba(255,255,255,.02);
}
.contacts-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 32px;
}

.contacts-subtitle {
  font-family: var(--f-title, 'Russo One', sans-serif);
  font-size: 18px;
  color: var(--white, #fff);
  margin-bottom: 12px;
}
.contacts-desc {
  font-family: var(--f-ui);
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted, rgba(255,255,255,.6));
  margin-bottom: 20px;
}
.contacts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contacts-list li {
  font-family: var(--f-ui);
  font-size: 15px;
  color: var(--muted, rgba(255,255,255,.6));
  display: flex;
  align-items: center;
  gap: 10px;
}
.contacts-list a {
  color: var(--white, #fff);
  text-decoration: none;
  transition: color .2s;
}
.contacts-list a:hover {
  color: var(--accent, #ff3b00);
}
.contacts-messengers {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
/* ══ CARD FLEX LAYOUT (equal height cards) ══ */
.pb-filterable {
  display: block;      /* було flex — ламало ширину карточки */
  height: 100%;
  min-width: 0;        /* захист від overflow через min-content */
}
.pb-filterable > .product-card {
  width: 100%;         /* карточка заповнює всю ширину grid-комірки */
  height: 100%;
}
.product-card {
  display: flex;
  flex-direction: column;
}
.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-add {
  margin-top: auto;
}

@media (max-width: 768px) {
  .card-img img {
    max-width: none;
    height: 180px;
  }
  .contacts-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .section-contacts { padding: 48px 0; }

  /* === Mobile: зменшуємо падінг контейнера === */
  .container { padding: 0 16px; }

  .card-badge{
    top: 4px;
    right: 4px;
    font-size: 10px;
    padding: 4px 8px;
    font-weight: 500;
  }

 }



/* ══ CART PAGE ══ */
.cart-page { padding: 120px 0 60px; min-height: 80vh; }
.cart-page-title { font-family: var(--f-display); font-size: 28px; margin-bottom: 32px; }
.cart-empty { text-align: center; padding: 60px 0; }
.cart-empty-icon { font-size: 48px; margin-bottom: 12px; }
.cart-empty-title { font-family: var(--f-display); font-size: 22px; margin-bottom: 8px; }
.cart-empty-text { color: var(--muted); margin-bottom: 24px; }
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; }
@media(max-width:768px){ .cart-layout { grid-template-columns: 1fr; } }

.cart-item { display: flex; align-items: center; gap: 16px; padding: 16px; border-bottom: 1px solid var(--border-subtle); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: var(--f-ui); font-weight: 600; font-size: 14px; }
.cart-item-price { color: var(--accent); font-family: var(--f-display); font-size: 16px; margin-top: 4px; }
.cart-item-actions { display: flex; align-items: center; gap: 20px; text-align: center; }
.qty-ctrl { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.qty-btn { width: 32px; height: 32px; background: transparent; color: var(--white); border: none; font-size: 16px; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: rgba(255,59,0,.15); }
.qty-val { width: 36px; height: 32px; text-align: center; line-height: 32px; background: transparent; border: none; color: var(--white); font-size: 14px; font-weight: 600; padding: 0; }
.qty-val::-webkit-inner-spin-button, .qty-val::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.remove-btn { background: none; color: rgba(255,255,255,.4); font-size: 18px; padding: 4px; }
.remove-btn:hover { color: #ff4444; }
.cart-summary { background: var(--card-bg); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 24px; height: fit-content; position: sticky; top: 100px; }
.summary-title { font-family: var(--f-display); font-size: 18px; margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); padding: 8px 0; border-bottom: 1px solid var(--border-subtle); }
.summary-row.total { color: var(--white); font-weight: 700; font-size: 18px; border: none; margin-top: 8px; }
.summary-btns { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.btn-checkout { width: 100%; padding: 14px; background: var(--accent); color: #fff; border-radius: 8px; font-weight: 600; font-size: 14px; text-transform: uppercase; }
.btn-checkout:hover { background: var(--accent2); }
.btn-continue { width: 100%; padding: 12px; background: transparent; color: var(--muted); border: 1px solid var(--border-subtle); border-radius: 8px; font-size: 13px; }
.checkout-section { display: none; margin-top: 40px; }
.checkout-section.show { display: block; }
.checkout-title { font-family: var(--f-display); font-size: 22px; margin-bottom: 24px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media(max-width:768px){ .checkout-grid { grid-template-columns: 1fr; } }
.form-section-label { font-family: var(--f-title); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.form-section-label--mt { margin-top: 24px; }
.checkout-total-row { display: flex; justify-content: space-between; font-family: var(--f-display); font-size: 20px; padding: 16px 0; border-top: 1px solid var(--border); margin-top: 16px; }
.btn-pay { width: 100%; padding: 16px; background: var(--accent); color: #fff; border-radius: 8px; font-weight: 700; font-size: 15px; text-transform: uppercase; margin-top: 12px; }
.btn-pay:hover { background: var(--accent2); }
.btn-pay:disabled { opacity: .6; cursor: not-allowed; }
.checkout-note { font-size: 12px; color: var(--muted); margin-top: 8px; text-align: center; }
.summary-item { display: flex; justify-content: space-between; font-size: 13px; padding: 6px 0; color: var(--muted); }
.order-done { display: none; text-align: center; padding: 60px 0; }
.done-icon { font-size: 48px; margin-bottom: 12px; }
.done-title { font-family: var(--f-display); font-size: 24px; margin-bottom: 12px; }
.done-text { color: var(--muted); margin-bottom: 24px; }
.is-hidden { display: none !important; }

/* Payment options */
.pay-option-group { display: flex; flex-direction: column; gap: 10px; margin: 16px 0 20px; }
.pay-option { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 2px solid rgba(255,255,255,.1); border-radius: 10px; cursor: pointer; transition: border-color .2s, background .2s; }
.pay-option:hover { border-color: rgba(255,59,0,.3); background: rgba(255,59,0,.04); }
.pay-option.selected { border-color: var(--accent); background: rgba(255,59,0,.08); }
.pay-option input[type="radio"] { accent-color: var(--accent); width: 18px; height: 18px; flex-shrink: 0; }
.pay-option-info { flex: 1; }
.pay-option-title { font-family: var(--f-ui); font-size: 14px; font-weight: 600; color: var(--white); }
.pay-option-desc { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }
.pay-option-price { font-family: var(--f-display); font-size: 15px; color: var(--accent); white-space: nowrap; }
.field-error { border-color: #ff4444 !important; }
.field-error-msg { color: #ff4444; font-size: 12px; margin-top: 4px; display: none; }
.field-error-msg.show { display: block; }
.postpay-note { background: rgba(255,165,0,.1); border: 1px solid rgba(255,165,0,.2); border-radius: 8px; padding: 10px 14px; font-size: 12px; color: rgba(255,255,255,.7); margin-bottom: 16px; display: none; }
.postpay-note.show { display: block; }

/* ══ CARD STOCK BADGE ══ */
.card-stock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
}
.card-stock.in-stock { color: #4caf50; }
.card-stock.out-of-stock { color: #ff5722; }

/* ══ HERO SLIDER ARROWS ══ */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover {
  background: rgba(255,59,0,.6);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.1);
}
.hero-arrow:active {
  transform: translateY(-50%) scale(.94);
}
.hero-arrow svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
}
.hero-arrow--prev { left: 24px; }
.hero-arrow--next { right: 24px; }

@media (max-width: 860px) {
  .hero-arrow {
    display: none;
  }
}


/* ══ Disabled add-to-cart buttons (out of stock) ══ */
.card-add--disabled,
.btn-add-cart--disabled,
.btn-add--disabled {
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.45) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  cursor: not-allowed !important;
  pointer-events: none;
  box-shadow: none !important;
  opacity: 0.85;
}
.card-add--disabled:hover,
.btn-add-cart--disabled:hover,
.btn-add--disabled:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  transform: none !important;
}

/* ══ Блок передзамовлення Instagram (сторінка товару) ══ */
.product-oos-block {
  margin-top: 16px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-oos-text {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  text-align: left;
  text-transform: uppercase;
}

/* Кнопка Instagram — темний тактичний стиль (як на макеті) */
.product-oos-ig {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 460px;
  padding: 0;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  background: #131313;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.18s ease;
  cursor: pointer;
  overflow: hidden;
  min-height: 60px;
}
.product-oos-ig:hover {
  border-color: var(--accent, #ff4d00);
  background: #181312;
  color: #fff;
  transform: translateY(-1px);
}
.product-oos-ig:active { transform: translateY(0); }

.product-oos-ig .oos-ig-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  flex-shrink: 0;
  color: var(--accent, #ff4d00);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  align-self: stretch;
}
.product-oos-ig .oos-ig-label {
  flex: 1;
  padding: 0 22px;
  font-family: var(--f-display, inherit);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-oos-ig .oos-ig-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.22s ease, color 0.22s ease;
}
.product-oos-ig:hover .oos-ig-arrow {
  transform: translateX(4px);
  color: var(--accent, #ff4d00);
}
.product-oos-ig svg { flex-shrink: 0; }

/* ══ Вирівнювання карток у сітці: однакова висота, кнопки знизу ══ */
.hits-grid .product-card,
.products-grid .product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.hits-grid .product-card .card-body,
.products-grid .product-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
/* Кнопка тиснеться до низу карточки — однакова лінія в усіх картках */
.hits-grid .product-card .card-add,
.products-grid .product-card .card-add {
  margin-top: auto;
}
/* Сітка має тягнути картки на повну висоту рядка */
.hits-grid,
.products-grid {
  align-items: stretch;
}

/* Картка товару — клікабельна (data-url + JS-обробник) */
.product-card[data-url] { cursor: pointer; }
.product-card[data-url]:focus-visible {
  outline: 2px solid var(--accent, #ff4d00);
  outline-offset: 3px;
}
