/* =========================================================
   Minimal, fast, responsive listing layout
   - One Google font family (limited weights)
   - Light-weight CSS (no frameworks)
   - Accessible focus states
   ========================================================= */

:root{
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: rgba(15, 23, 42, .14);
  --shadow: 0 10px 24px rgba(15, 23, 42, .08);
  --radius: 16px;

  --accent: #0f766e;
  --accent-2: #00e5e5;
  --danger: #c41c1c;

  --container: 1200px;
  --gap: clamp(16px, 3vw, 28px);
}

*{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body{
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a{ color: inherit; text-decoration-color: rgba(15, 23, 42, .35); text-underline-offset: 2px; }
a:hover{ text-decoration-color: rgba(15, 23, 42, .7); }

:focus-visible{
  outline: 3px solid rgba(14, 116, 144, .45);
  outline-offset: 3px;
  border-radius: 8px;
}

.visually-hidden{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px clamp(14px, 3vw, 22px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand__mark{
  width: 32px; height: 32px;
}
.brand__name{
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500; /* not too bold */
}

.nav{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.nav a{
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
  opacity: .92;
}
.nav a:hover{ opacity: 1; text-decoration: underline; }

/* Main */
main{
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 28px) clamp(14px, 3vw, 22px) 48px;
}

.listing-layout{
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
  grid-template-areas:
    "cart"
    "gallery";
  align-items: start;
}

@media (min-width: 960px){
  .listing-layout{
    grid-template-columns: 1.35fr 1fr;
    grid-template-areas: "gallery cart";
  }
}

.gallery{ grid-area: gallery; }
#listing-page-cart{ grid-area: cart; }

/* Right block (from screenshot) */
.promo{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 26px);
}

.promo__liked{
  color: var(--danger);
  font-size: 14px;
  margin: 0 0 10px;
  letter-spacing: .02em;
}
.promo__liked strong{
  font-weight: 500; /* keep it light */
}

.promo__price{
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  margin: 0;
}

.promo__tag{
  margin: 6px 0 18px;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.promo__title{
  font-size: clamp(22px, 3.4vw, 36px);
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 500;
  margin: 0 0 12px;
}

.promo__copy{
  margin: 0 0 16px;
  color: var(--text);
  font-size: 16px;
}
.promo__copy a{
  color: var(--text);
  font-weight: 500;
}

.promo__meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.promo__meta-label{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.stars{
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.stars svg{
  width: 16px;
  height: 16px;
  fill: #111827;
  opacity: .92;
}

.promo__actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--border);
}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
}
.btn:focus-visible{ outline-offset: -2px; }

.btn--signup{
  background: #0a7c7f; /* close to screenshot left */
  color: #031313;
}
.btn--login{
  background: var(--accent-2);
  color: #062525;
}
.btn--signup:hover,
.btn--login:hover{
  filter: brightness(1.02);
}

/* Slider */
.slider{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0b1220;
  box-shadow: var(--shadow);
}

.slider__stage{
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0b1220;
  touch-action: pan-y;
}

.slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 220ms ease;
}
.slide[aria-hidden="false"]{
  opacity: 1;
}
.slide picture, .slide img{
  width: 100%;
  height: 100%;
}
.slide img{
  object-fit: cover;
}

.slider__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(15,23,42,.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.slider__nav:hover{ background: rgba(15,23,42,.72); }
.slider__nav svg{ width: 20px; height: 20px; fill: #fff; opacity: .95; }
.slider__nav--prev{ left: 12px; }
.slider__nav--next{ right: 12px; }

.slider__footer{
  background: #ffffff;
  padding: 12px 12px 14px;
}

.slider__thumbs{
  display: flex;
  gap: 10px;
  align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}
.thumb{
  flex: 0 0 auto;
  width: 88px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, .18);
  overflow: hidden;
  background: #fff;
  padding: 0;
  cursor: pointer;
}
.thumb img{
  width: 100%;
  height: 56px;
  object-fit: cover;
}
.thumb[aria-current="true"]{
  outline: 3px solid rgba(14, 116, 144, .45);
  outline-offset: 2px;
  border-color: transparent;
}

.slider__status{
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

/* Support section */
.support{
  margin-top: 32px;
}
.support__title{
  font-weight: 500;
  margin: 0 0 8px;
  font-size: 18px;
}
.support__text{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .slide{ transition: none; }
}



/* Skip link (accessibility) */
.skip-link{
  position: absolute;
  left: 12px;
  top: 10px;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transform: translateY(-160%);
  transition: transform 160ms ease;
  z-index: 30;
  text-decoration: none;
  font-size: 14px;
  color: var(--text);
}
.skip-link:focus{
  transform: translateY(0);
}

/* Mobile hamburger menu */
.site-header__inner{ position: relative; }

.nav-toggle{
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.92);
  cursor: pointer;
  color: var(--text);
}
.nav-toggle:hover{ filter: brightness(1.02); }
.nav-toggle__icon{ width: 22px; height: 22px; }

@media (max-width: 760px){
  .site-header__inner{ flex-wrap: wrap; }

  /* No-JS fallback: show navigation as a simple stacked list */
  .nav{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px 0;
  }

  .nav a{
    padding: 12px 10px;
    border-radius: 12px;
  }

  .nav a:hover{
    background: rgba(15, 23, 42, .04);
    text-decoration: none;
  }

  /* JS-enhanced: turn navigation into a dropdown that opens from the hamburger */
  .js .nav{
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    display: none;
    padding: 10px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .js .nav.is-open{ display: flex; }

  .nav-toggle{ display: none; }
  .js .nav-toggle{ display: inline-flex; }
}


/* Content article (text block after listing layout) */
.content{
  margin-top: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 26px);
}

.content__header h2{
  margin: 0 0 10px;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -.01em;
}

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

.content__highlight{
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(15, 118, 110, .10);
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
}

.content__section{
  margin-top: 22px;
}

.content__section h3{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 500;
}
.content__section h4{
  margin: 14px 0 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.content__section p{
  margin: 0 0 10px;
  color: var(--text);
  font-size: 16px;
}

/* Table styling (clean header, less rounded corners, left-aligned row labels) */
.table-card{
  margin-top: 12px;
  border: 1px solid var(--border);
  border-radius: 10px; /* less rounded */
  background: #ffffff;
  overflow: hidden;
}

.table-card__header{
  padding: 12px 14px;
  border-bottom: 1px solid rgba(15, 23, 42, .10);
  background: rgba(15, 23, 42, .02);
}

.table-card__label{
  display: inline-block;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.table-card__body{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.info-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.info-table thead th{
  text-align: left;
  font-weight: 500;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
  font-size: 15px;
}
.info-table tbody th,
.info-table tbody td{
  padding: 12px 14px;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  vertical-align: top;
  font-size: 15px;
}
.info-table tbody tr:last-child th,
.info-table tbody tr:last-child td{
  border-bottom: 0;
}
.info-table tbody th{
  font-weight: 500;
  text-align: left; /* fix centered first column */
}

.info-table tbody tr:nth-child(even){
  background: rgba(15, 23, 42, .012);
}

/* Lists with custom markers */
.nice-ul,
.nice-ol{
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.nice-ul{ list-style: none; }
.nice-ul li{
  position: relative;
  padding-left: 34px;
}
.nice-ul li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: .1em;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(15, 118, 110, .12);
  color: var(--accent);
  font-weight: 500;
  font-size: 14px;
}

.nice-ol{
  list-style: none;
  counter-reset: step;
}
.nice-ol li{
  position: relative;
  padding-left: 38px;
  counter-increment: step;
}
.nice-ol li::before{
  content: counter(step);
  position: absolute;
  left: 0;
  top: .1em;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(2, 132, 199, .12);
  color: #0369a1;
  font-weight: 500;
  font-size: 13px;
}

/* Bonus block (screenshot-like) */
.bonus{
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.bonus__left{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bonus__brand{
  display: grid;
  gap: 4px;
  min-width: 120px;
}
.bonus__logo{
  font-size: 28px;
  letter-spacing: -.02em;
  font-weight: 500; /* logo (not too bold) */
  color: #0b3f8a;
  line-height: 1;
}
.bonus__sub{
  font-size: 13px;
  color: var(--muted);
}

.bonus__codebox{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1.5px solid rgba(29, 78, 216, .8);
  background: #ffffff;
}

.bonus__code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 14px;
}

.bonus__copy{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 0;
  background: rgba(29, 78, 216, .08);
  color: #1d4ed8;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 120ms ease, filter 120ms ease;
}
.bonus__copy svg{ width: 18px; height: 18px; fill: currentColor; }
.bonus__copy:hover{ filter: brightness(1.03); }
.bonus__copy.is-copied{ transform: scale(.96); }

.bonus__status{
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--muted);
  min-height: 1em;
}

.bonus__right{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex: 1;
}

.bonus__title{
  margin: 0;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  text-align: right;
  line-height: 1.35;
  max-width: 56ch;
}

.bonus__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #0b74d1;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(2, 132, 199, .28);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 160ms ease, filter 160ms ease;
}
.bonus__cta svg{ width: 18px; height: 18px; fill: currentColor; }
.bonus__cta:hover{ filter: brightness(1.04); transform: translateY(-1px); }

@media (max-width: 760px){
  .bonus{
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .bonus__right{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .bonus__title{ text-align: center; }
  .bonus__left{
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .bonus__brand{ min-width: 0; text-align: center; }
  .bonus__codebox{
    width: 100%;
    max-width: 320px;
    justify-content: space-between;
  }
  .bonus__cta{
    width: 100%;
    max-width: 320px;
  }

  .bonus__status{ text-align: center; }
}

/* APK button with subtle color-shift animation (adjusted palette to match site CTAs) */
.apk{
  margin-top: 24px;
  padding-top: 4px;
}
.apk h3{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 500;
}
.apk p{
  margin: 0 0 12px;
  color: var(--text);
}
.apk__note{
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.apk-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(2, 132, 199, .35);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(90deg, #0b74d1, #0a5db0, #0b74d1);
  background-size: 200% 100%;
  animation: apk-sheen 5s ease-in-out infinite;
  transition: transform 160ms ease, filter 160ms ease;
  will-change: background-position;
  overflow: hidden;
}

.apk-btn::after{
  content: "";
  position: absolute;
  top: -60%;
  left: -40%;
  width: 40%;
  height: 220%;
  transform: translateX(-160%) rotate(20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  animation: apk-shine 2.8s linear infinite;
  pointer-events: none;
}
.apk-btn:hover{
  filter: brightness(1.03);
  transform: translateY(-1px);
}

@keyframes apk-sheen{
  0%{ background-position: 0% 50%; }
  100%{ background-position: 200% 50%; }
}

@keyframes apk-shine{
  0%{ transform: translateX(-160%) rotate(20deg); }
  100%{ transform: translateX(360%) rotate(20deg); }
}

/* Extend reduced motion preferences */
@media (prefers-reduced-motion: reduce){
  .apk-btn,
  .apk-btn::after{ animation: none; }
  .bonus__cta,
  .bonus__copy,
  .apk-btn{ transition: none; }
}

/* Footer (as in the screenshot) */
.site-footer{
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.site-footer__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px clamp(14px, 3vw, 22px) 26px;
}

.site-footer__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

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

.site-footer__nav{
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.site-footer__nav a{
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}

.site-footer__nav a:hover{
  color: var(--text);
  text-decoration: underline;
}

.site-footer__disclaimer{
  margin: 12px 0 0;
  max-width: 780px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 760px){
  .site-footer__top{ align-items: flex-start; }
  .site-footer__nav{ justify-content: flex-start; }
}
