:root{
  --bg: #eef2f6;
  --surface: #ffffff;
  --surface-2: #f7f9fc;
  --text: #0b1a2f;
  --muted: #5b6b80;
  --line: #d7e0ea;
  --accent: #F28F26;
  --accent-hover: #c6161d;
  --link: #2b63ff;
  --header-bg: #142942;
  --shadow: 0 10px 22px rgba(15, 23, 42, .08);
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1120px;
  --focus: 0 0 0 3px rgba(43, 99, 255, .25);
}

*{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Roboto, ui-sans-serif, system-ui, -apple-system, Segoe UI, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-weight: 400;
  font-size: 17px;
  overflow-x: hidden;
}

@media (max-width: 420px){
  body{ font-size: 16px; }
}

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

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 12px;
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: 10px;
  z-index: 1000;
  outline: none;
  box-shadow: var(--shadow);
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(0,0,0,.15);
  padding-left:10px;
  padding-right: 10px;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 8px;
  gap: 14px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color: #ffffff;
}
.brand img{
  border-radius: 8px;
}
.brand-text{
  font-size: 18px;
  letter-spacing: .04em;
  font-family: "Roboto Condensed", Roboto, ui-sans-serif, system-ui;
  font-weight: 700;
  text-transform: uppercase;
}

.nav{
  display:flex;
  gap: 6px;
}
.nav-link{
  text-decoration:none;
  color: rgba(255,255,255,.88);
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}
.nav-link:hover,
.nav-link:focus-visible{
  color: #ffffff;
  background: rgba(255,255,255,.10);
  outline: none;
}

/* Mobile hamburger */
.hamburger{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  cursor:pointer;
}
.hamburger:focus-visible{ outline: none; box-shadow: var(--focus); }
.hamburger-lines{
  display:block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 99px;
  margin: 0 auto;
  position: relative;
}
.hamburger-lines::before,
.hamburger-lines::after{
  content:"";
  position:absolute;
  left:0;
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 99px;
}
.hamburger-lines::before{ top: -6px; }
.hamburger-lines::after{ top: 6px; }

.mobile-menu{
  position: absolute;
  left: 16px;
  right: 16px;
  top: 62px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--shadow);
}
.mobile-link{
  display:block;
  padding: 12px 12px;
  border-radius: 12px;
  text-decoration:none;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}
.mobile-link:hover{ background: var(--surface-2); }
.mobile-link:focus-visible{ outline: none; box-shadow: var(--focus); }
.mobile-link.apk{
  margin-top: 8px;
  border: 1px solid rgba(227,27,35,.25);
  background: rgba(227,27,35,.06);
  color: #7a0f12;
}

@media (max-width: 860px){
  .nav{ display:none; }
  .hamburger{ display:inline-grid; place-items:center; }
  .site-header .container{ position: relative; }
}

/* Lock scroll when menu open */
body.menu-open{ overflow:hidden; }

/* Breadcrumbs */
.breadcrumbs{
  list-style:none;
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 0 8px;
  margin:0;
  color: var(--muted);
  font-size: 13px;
}
.breadcrumbs li+li:before{
  content:"/";
  margin-right: 8px;
  color: #8da0b5;
}
.breadcrumbs a{
  color: inherit;
  text-decoration:none;
}
.breadcrumbs a:hover{ text-decoration:underline; }

/* Hero layout */
.hero{ padding: 10px 0 20px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items:start;
}

/* Desktop: keep promo + media visually aligned */
@media (min-width: 980px){
  .hero-grid.equalize{
    align-items: stretch;
  }
  .hero-grid.equalize .media,
  .hero-grid.equalize .promo-card{
    height: var(--heroEqualH);
    transition: height .25s ease;
    will-change: height;
  }

  section.media, .promo-card{height: 550px; margin-top:20px}
  .slider{height: 515px;}
}

/* Prevent horizontal overflow inside CSS grids (tables, long content) */
.hero-grid > *,
.content-grid > *{
  min-width: 0;
}

/* Mobile order => promo first, slider second */
.promo{ order: 1; }
.media{ order: 2; }

@media (min-width: 980px){
  .hero-grid{
    grid-template-columns: 1.1fr .9fr;
    gap: 20px;
  }
  /* Desktop order => slider left, promo right */
  .media{ order: 1; }
  .promo{ order: 2; }
}

.media{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  display:flex;
  flex-direction: column;
  min-width: 0;
}

.media-top{ flex: 0 0 auto; }

.media-body{
  margin-top: 12px;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  position: relative;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.media-body p{ margin: 0; }

.media-body.is-clamped::after{
  content: "…";
  position:absolute;
  right: 0;
  bottom: 0;
  padding: 0 6px 2px 10px;
  background: var(--surface);
  color: #7b8da3;
  font-size: 22px;
  line-height: 1;
}

.media-toggle{
  margin-top: 12px;
  align-self: flex-start;
  border: 1px solid rgba(20, 41, 66, .18);
  background: #ffffff;
  color: #143252;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap: 10px;
}

.media-toggle:hover{ background: var(--surface-2); }
.media-toggle:focus-visible{ outline: none; box-shadow: var(--focus); }

.media-toggle__icon{
  width: 18px;
  height: 18px;
  opacity: .9;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%236d7e95" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
  transition: transform .18s ease;
}

.media-toggle[aria-expanded="true"] .media-toggle__icon{ transform: rotate(180deg); }

/* Slider */
.slider{
  position: relative;
  overflow:hidden;
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid var(--line);
  background: #fff;
}
.slides{
  display:flex;
  transition: transform .35s ease;
  will-change: transform;
}
.slide{ min-width: 100%; margin:0; }
.slide img{
  width:100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.slider-btn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .14);
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 18px rgba(15, 23, 42, .12);
  cursor:pointer;
  display:grid;
  place-items:center;
}
.slider-btn span{
  font-size: 26px;
  line-height: 1;
  color: #1b2a40;
  font-weight: 500;
}
.slider-btn:hover{ background: #fff; }
.slider-btn:focus-visible{ outline: none; box-shadow: var(--focus); }
.slider-btn.prev{ left: 12px; }
.slider-btn.next{ right: 12px; }

.dots{
  position:absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display:flex;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 999px;
}
.dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: #c6d1de;
  cursor:pointer;
}
.dot[aria-selected="true"]{ background: var(--accent); }

/* Feature strip */
.feature-strip{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.feature{
  padding: 12px 12px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.feature-kicker{
  display:block;
  font-size: 12px;
  color: var(--link);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.feature-text{
  display:block;
  font-size: 14px;
  color: var(--muted);
  margin-top: 2px;
}

/* Promo card */
.promo-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display:flex;
  flex-direction: column;
  min-width: 0;
}

@media (min-width: 980px){
  .promo-card{ position: sticky; top: 88px; }
}

.promo-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.liked{
  margin:0;
  color: var(--muted);
  font-size: 14px;
}
.liked-number{ font-weight: 700; color: var(--text); }
.price{
  margin:0;
  display:flex;
  align-items:baseline;
  gap: 6px;
  color: var(--text);
}
.currency{ font-size: 15px; color: var(--muted); }
.amount{ font-size: 32px; font-weight: 700; letter-spacing: .2px; }

.category{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .16em;
  color: #38506a;
  text-transform: uppercase;
  font-weight: 700;
}

.title{
  margin: 0 0 12px;
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 800;
  line-height: 1.15;
}

.desc{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 17px;
}

.rating{
  display:flex;
  align-items:center;
  gap: 10px;
  margin: 10px 0 16px;
}
.badge{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(20, 41, 66, .18);
  background: rgba(20, 41, 66, .06);
  color: #143252;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}




.stars{
  letter-spacing: 2px;
  color: #1b2a40;
  font-size: 16px;
}
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip: rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.actions{
  display:flex;
  gap: 12px;
  margin-top: 8px;
}
.btn{
  flex:1;
  text-decoration:none;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding: 13px 14px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid transparent;
}
.btn.primary{
  background: var(--accent);
  color: #ffffff;
}
.btn.primary:hover{ background: var(--accent-hover); }
.btn.ghost{
  background: #ffffff;
  border-color: rgba(20, 41, 66, .18);
  color: #143252;
}
.btn.ghost:hover{ background: var(--surface-2); }
.btn:focus-visible{ outline: none; box-shadow: var(--focus); }

.fineprint{
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.muted{ margin:0; color: #6d7e95; font-size: 14px; }

/* FAQ (Fonbet-like, screenshot-inspired) */
.faq{
  padding: 6px 0 40px;
}

.faq-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
}

.faq-head h2{
  margin: 0;
  font-size: 28px;
  font-weight: 800;
}

.faq-list{
  margin-top: 10px;
}

.faq-item{
  border-top: 1px solid var(--line);
}

.faq-item:first-child{ border-top: 0; }

.faq-item summary{
  list-style: none;
  cursor: pointer;
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker{ display:none; }

.faq-item summary:focus-visible{
  outline: none;
  box-shadow: var(--focus);
  border-radius: 12px;
}

/* Left icon */
.faq-item summary::before{
  content:"";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
  background: rgba(43, 99, 255, .08);
  border: 1px solid rgba(43, 99, 255, .18);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%232b63ff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="9"/><path d="M9.09 9a3 3 0 1 1 5.82 1c0 2-3 2-3 4"/><line x1="12" y1="17" x2="12.01" y2="17"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
}

.faq-question{ flex: 1; }

.faq-chevron{
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-left: auto;
  opacity: .9;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%236d7e95" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  transition: transform .18s ease;
}

.faq-item[open] .faq-chevron{ transform: rotate(180deg); }

.faq-answer{
  padding: 0 0 18px 40px;
}

.faq-answer p{
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

@media (max-width: 520px){
  .faq-card{ padding: 12px 16px; }
  .faq-item summary{ font-size: 16px; padding: 16px 0; }
  .faq-answer{ padding-left: 40px; }
}

/* Content */
.content{ padding: 10px 0 34px; }
.content h2{
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 800;
}

.content p{ margin: 0 0 14px; color: var(--muted); }

.content-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 30px;
  box-shadow: var(--shadow);
}

.content-head p{ margin: 8px 0 0; color: var(--muted); }

.chip{
  display:inline-block;
  margin-left: 8px;
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #10306a;
  background: rgba(43, 99, 255, .08);
  border: 1px solid rgba(43, 99, 255, .18);
  font-weight: 700;
}

.inline-pill{
  display:inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(20, 41, 66, .06);
  border: 1px solid rgba(20, 41, 66, .12);
  font-size: 13px;
  color: #142942;
}

.content-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}

@media (min-width: 980px){
  .content-grid{
    /* Keep editorial flow like the original: blocks go under the lists (not as a right sidebar) */
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.prose h3, .prose h4{
  margin: 18px 0 10px;
  font-weight: 800;
  color: var(--text);
}
.prose h3{ font-size: 22px; }
.prose h4{ font-size: 18px; }

.prose p{ margin: 0 0 12px; color: var(--muted); font-size: 17px; }

/* Pretty lists – updated markers (match provided examples) */
.pretty-ul, .pretty-ol{
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.pretty-ul li, .pretty-ol li{
  position: relative;
  padding-left: 26px;
  margin: 12px 0;
  color: var(--muted);
  font-size: 17px;
}

/* UL: small blue dot */
.pretty-ul li::before{
  content:"";
  position:absolute;
  left: 6px;
  top: .72em;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--link);
}

/* OL: blue number + dot */
.pretty-ol{ counter-reset: step; }
.pretty-ol li{ padding-left: 34px; }
.pretty-ol li::before{
  counter-increment: step;
  content: counter(step) ".";
  position:absolute;
  left: 0;
  top: 0;
  color: var(--link);
  font-weight: 800;
}

/* How-to blocks */
.howto-lead{
  margin-top: -4px;
  color: var(--muted);
}

.howto-list{
  display:flex;
  flex-direction: column;
  gap: 14px;
  margin: 10px 0 6px;
}

.howto-step{
  display:grid;
  grid-template-columns: auto 1fr 160px;
  gap: 14px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.howto-num{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--link);
  color: #fff;
  display:grid;
  place-items:center;
  font-weight: 800;
  font-size: 14px;
  margin-top: 2px;
}

.howto-text h4{
  margin: 0 0 8px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.howto-text p{
  margin: 0;
  font-size: 17px;
}

.howto-thumb{
  width: 160px;
  height: 96px;
  align-self: start;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(20, 41, 66, .14);
  position: relative;
  background: #fff;
  cursor: zoom-in;
  text-decoration:none;
}

.howto-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.howto-thumb::after{
  content:"";
  position:absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(20, 41, 66, .16);
  box-shadow: 0 10px 18px rgba(15, 23, 42, .14);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23142942" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="7"/><path d="M21 21l-4.3-4.3"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}

.howto-thumb:focus-visible{ outline: none; box-shadow: var(--focus); }

@media (max-width: 640px){
  .howto-step{
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .howto-thumb{
    width: 100%;
    height: 160px;
    grid-column: 1 / -1;
  }
}

/* Table */
.table-wrap{
  background: var(--surface);
  padding: 14px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  min-width: 0;
  max-width: 100%;
  margin: 16px 0 18px;
}

.nice-table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow:hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  min-width: 520px;
}

@media (max-width: 560px){
  .nice-table{ min-width: 520px; }
}

.nice-table caption{
  caption-side: top;
  text-align:left;
  padding: 0 0 10px;
  color: var(--text);
  font-weight: 800;
}

.nice-table th, .nice-table td{
  text-align:left;
  padding: 12px 12px;
  font-size: 16px;
}

.nice-table thead th{
  background: rgba(20, 41, 66, .05);
  color: #142942;
  font-weight: 800;
}

.nice-table tbody td, .nice-table tbody th{
  color: var(--muted);
  background: #ffffff;
}

.nice-table tbody tr + tr td, .nice-table tbody tr + tr th{
  border-top: 1px solid var(--line);
}

.nice-table tbody tr:hover td,
.nice-table tbody tr:hover th{
  background: rgba(43, 99, 255, .05);
}

/* Bonus block (no gradients) */
.bonus{
  margin-top: 14px;
  display:flex;
  gap: 12px;
  justify-content:space-between;
  align-items:stretch;
  padding: 14px;
  
  background: var(--surface-2);
  position: relative;
}


.bonus-kicker{
  margin:0 0 4px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  color: #38506a;
  font-weight: 800;
}

.bonus-title{
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
}

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

.bonus-actions{ display:flex; gap: 12px; }

.bonus-right{ min-width: 0; display:flex; justify-content:flex-end; }

.bonus-badge{
  align-self:center;
  width: 112px;
  height: 112px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display:grid;
  place-items:center;
}

.bonus-big{ font-size: 24px; font-weight: 900; color: var(--accent); line-height: 1; }
.bonus-small{ font-size: 12px; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; margin-top: 4px; }

/* APK button – simple */
.apk-btn{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  text-decoration:none;
  color: #ffffff;
  font-weight: 800;
  border: 1px solid rgba(0,0,0,.06);
  background: var(--accent);
  box-shadow: 0 14px 26px rgba(227,27,35,.18);
}

.apk-btn:hover{ background: var(--accent-hover); }
.apk-btn:focus-visible{ outline: none; box-shadow: var(--focus); }

.apk-ic{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
}

.apk-note{
  margin: 10px 0 0;
  color: #6d7e95;
  font-size: 14px;
}

@media (max-width: 520px){
  .bonus{ flex-direction: column; gap: 14px; }
  .bonus-right{ min-width: 0; justify-content:flex-start; }
  .bonus-badge{ width: 128px; height: 128px; border-radius: 24px; }
  .bonus-actions{ flex-direction: column; }
}

/* Footer — 3-column like screenshot */
.site-footer{
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-wrap{
  padding: 26px 0 18px;
}

.footer-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.footer-title{
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--text);
}

.footer-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
  padding: 6px 0;
  border-radius: 10px;
}

.footer-link:hover,
.footer-link:focus-visible{
  color: var(--text);
  outline: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display:flex;
  justify-content: flex-start;
}

.footer-copy{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 860px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

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

  .footer-list{
    justify-items: center;
  }

  .footer-link{
    justify-content: center;
  }

  .footer-bottom{
    justify-content: center;
  }

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

/* Small screens tweaks */
@media (max-width: 420px){
  .feature-strip{ grid-template-columns: 1fr; }
  .actions{ flex-direction: column; }
}

/* Lightbox */
body.lb-open{ overflow:hidden; }

.lightbox{
  position: fixed;
  inset: 0;
  z-index: 200;
}

.lightbox[hidden]{ display:none; }

.lightbox-backdrop{
  position:absolute;
  inset:0;
  background: rgba(11, 26, 47, .72);
}

.lightbox-dialog{
  position: relative;
  width: min(1000px, calc(100vw - 24px));
  margin: 12px auto;
  top: 50%;
  transform: translateY(-50%);
  background: #0b0f16;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
  overflow: hidden;
}

.lightbox-figure{
  margin: 0;
  padding: 44px 16px 14px;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.lightbox-img{
  max-width: 100%;
  max-height: min(76vh, 680px);
  object-fit: contain;
  background: #0b0f16;
}

.lightbox-caption{
  color: rgba(255,255,255,.84);
  font-size: 14.5px;
  text-align:center;
  padding: 0 10px 6px;
}

.lightbox-close{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor:pointer;
}

.lightbox-close:hover{ background: rgba(255,255,255,.12); }
.lightbox-close:focus-visible{ outline: none; box-shadow: var(--focus); }

.lightbox-nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor:pointer;
  display:grid;
  place-items:center;
}

.lightbox-nav.prev{ left: 10px; }
.lightbox-nav.next{ right: 10px; }
.lightbox-nav:hover{ background: rgba(255,255,255,.12); }
.lightbox-nav:focus-visible{ outline: none; box-shadow: var(--focus); }

@media (max-width: 520px){
  .lightbox-dialog{
    width: calc(100vw - 16px);
    border-radius: 14px;
  }
  .lightbox-figure{ padding-left: 10px; padding-right: 10px; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .slides{ transition: none; }
}









@media (max-width: 650px){
.badge{font-size: 10px;}
.amount{font-size: 25px;}
}

