/* ============================================================
   The Nooks — thenooks.ca
   Design system: Shopify Warehouse v1.6.5 theme (faithful)
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --color-primary: #347adc;
  --color-primary-hover: rgba(52, 122, 220, 0.8);
  --color-text: #2d363f;
  --color-text-secondary: #979797;
  --color-bg: #ffffff;
  --color-bg-alt: #f3f4f4;
  --color-accent-warm: #f8ead2;
  --color-accent-cool: #dcebf0;
  --color-accent-rose: #e9c5c6;
  --color-success: #008a00;
  --color-border: #EFEFEF;
  --color-footer: #2d363f;
  --font-heading: 'Century Gothic', 'AppleGothic', sans-serif;
  --font-body: 'Avenir Next', 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --line-height-base: 1.87;
  --line-height-heading: 1.45;
  --radius-standard: 3px;
  --radius-button: 2px;
  --shadow-card: 0 1px 5px 2px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 2px 2px 2px rgba(0, 0, 0, 0.06);
  --container-max: 1480px;
  --transition-default: 0.2s ease-in-out;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: var(--line-height-base);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

@media (min-width: 640px) {
  body { font-size: 16px; }
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-default);
}

a:hover { color: var(--color-primary-hover); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: var(--line-height-heading);
  color: var(--color-text);
  font-weight: 500;
}

h1 { font-size: 2rem; margin-bottom: 0.75rem; }
h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.75rem;
  color: #212121;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--color-primary);
  line-height: 1.3;
}
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--color-text);
  margin-bottom: 1rem;
}
h4 { font-size: 1.05rem; margin-bottom: 0.5rem; font-weight: 600; }

@media (min-width: 640px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
}

p { margin-bottom: 1rem; }

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li { margin-bottom: 0.35rem; }

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 1024px) {
  .container { padding: 0 40px; }
}

/* --- Section --- */
.section {
  padding: 3rem 0;
  overflow-x: hidden;
}

@media (min-width: 640px) {
  .section { padding: 4rem 0; }
}

.section--warm { background: var(--color-accent-warm); }
.section--cool { background: var(--color-accent-cool); }
.section--rose { background: var(--color-accent-rose); }
.section--alt  { background: var(--color-bg-alt); }

.section__title {
  text-align: center;
  margin-bottom: 2rem;
}

/* ============================================================
   HEADER — Warehouse v1.6.5 (WHITE background)
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 5;
  padding: 13px 0;
  background: #fff;
  color: var(--color-text);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease;
  overflow-x: hidden;
}

@media (min-width: 1024px) {
  .header { padding: 20px 0; }
}

.header.header--scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.header__inner {
  display: flex;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 1024px) {
  .header__inner { padding: 0 40px; }
}

/* Logo */
.header__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1.2;
}

.header__logo:hover { opacity: 0.85; }

.header__logo-image {
  max-width: 160px;
  height: auto;
  display: block;
}

.header__tagline {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

.header__subtitle {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--color-text-secondary);
  font-style: italic;
  letter-spacing: 0.5px;
}

@media (max-width: 639px) {
  .header__logo-image {
    max-width: 120px;
  }
  .header__tagline {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }
  .header__subtitle {
    font-size: 0.55rem;
  }
}

/* Header right group */
.header__right {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 16px;
}

/* Search icon (decorative) */
.header__search-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--color-text);
}

@media (min-width: 1024px) {
  .header__search-btn { display: flex; }
}

.header__search-btn svg {
  width: 20px;
  height: 20px;
}

/* Hamburger */
.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 12;
}

@media (min-width: 1024px) {
  .header__hamburger { display: none; }
}

.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.header__hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   NAV BAR — Desktop horizontal (Warehouse style)
   ============================================================ */
.nav-bar {
  display: none;
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}

@media (min-width: 1024px) {
  .nav-bar { display: block; }
}

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

.nav-bar__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.nav-bar__item {
  display: inline-block;
  margin-right: 35px;
}

.nav-bar__item:last-child { margin-right: 0; }

.nav-bar__link {
  display: block;
  padding: 17px 0;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color var(--transition-default);
  white-space: nowrap;
}

.nav-bar__link:hover {
  color: var(--color-primary);
}

/* ============================================================
   MOBILE DRAWER — Slide from right (Warehouse style)
   ============================================================ */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 8;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: #fff;
  z-index: 10;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border);
}

.drawer__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
}

.drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--color-text);
  font-size: 24px;
  line-height: 1;
}

.drawer__nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.drawer__nav-item a {
  display: block;
  padding: 15px 20px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-default), color var(--transition-default);
}

.drawer__nav-item a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

@media (min-width: 1024px) {
  .drawer,
  .drawer-overlay { display: none !important; }
}

/* Body lock when drawer open */
body.drawer-is-open {
  overflow: hidden;
}

/* ============================================================
   HERO / INTRO
   ============================================================ */
.hero {
  padding: 2.5rem 0 1.5rem;
}

.hero h1 {
  margin-bottom: 0.5rem;
}

.hero .byline {
  color: var(--color-text-secondary);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.hero .intro-text {
  max-width: 760px;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ============================================================
   TOPLIST -- Casino Cards
   ============================================================ */
/* ============================================================
   TOPLIST — Big, Prominent Cards (ephpp.ca style)
   4-zone layout: rank | logo | name+bonus | green CTA block
   ============================================================ */
.toplist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}

.casino-card {
  position: relative;
  display: grid;
  grid-template-columns: 180px 200px 1fr 200px;
  align-items: center;
  background: #f9f9f9;
  border: 2px solid #1a1a1a;
  border-radius: var(--radius-standard);
  min-height: 120px;
  transition: box-shadow var(--transition-default);
  overflow: hidden;
}

.casino-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Rank badge — positioned top-left corner */
.casino-card__rank {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  background: #333;
  color: #ffffff;
  border-radius: 0 0 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 1;
}

/* Logo zone — big and centered */
.casino-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-right: 2px solid #1a1a1a;
  height: 100%;
}

.casino-card__logo img {
  max-width: 150px;
  max-height: 70px;
  object-fit: contain;
}

/* Name zone */
.casino-card__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 20px;
  border-right: 2px solid #1a1a1a;
  height: 100%;
}

.casino-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-text);
  margin-bottom: 4px;
}

.casino-card__badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Bonus zone — big, bold, center of the card */
.casino-card__bonus-zone {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 24px;
  border-right: 2px solid #1a1a1a;
  height: 100%;
}

.casino-card__bonus {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

/* Green CTA block — fills full height like the screenshot */
.casino-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.btn-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 120px;
  background: #347adc;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.25s ease-in-out;
  text-align: center;
  text-decoration: none;
}

.btn-play:hover {
  background: rgba(52, 122, 220, 0.8);
  color: #ffffff;
}

/* Tablet layout */
@media (max-width: 1023px) {
  .casino-card {
    grid-template-columns: 120px 1fr 140px;
    max-width: 100%;
  }
  .casino-card__info {
    display: none;
  }
  .casino-card__bonus {
    font-size: 1.1rem;
  }
  .casino-card__logo img {
    max-width: 120px;
    max-height: 55px;
  }
}

/* Mobile card layout */
@media (max-width: 639px) {
  .casino-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
  }

  .casino-card__rank {
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
  }

  .casino-card__logo {
    border-right: none;
    border-bottom: 2px solid #1a1a1a;
    padding: 16px;
  }

  .casino-card__logo img {
    max-width: 130px;
    max-height: 55px;
  }

  .casino-card__info {
    display: flex;
    border-right: none;
    border-bottom: 2px solid #1a1a1a;
    padding: 12px 16px;
    text-align: center;
  }

  .casino-card__name {
    font-size: 1.1rem;
  }

  .casino-card__bonus-zone {
    border-right: none;
    border-bottom: 2px solid #1a1a1a;
    padding: 12px 16px;
  }

  .casino-card__bonus {
    font-size: 1.15rem;
  }

  .btn-play {
    min-height: 56px;
    font-size: 1.05rem;
    border-radius: 0 0 var(--radius-standard) var(--radius-standard);
  }
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 700px;
}

.compare-table thead th {
  background: var(--color-text);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 12px 14px;
  text-align: left;
  white-space: nowrap;
}

.compare-table tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.compare-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.5);
}

.compare-table tbody tr:hover {
  background: rgba(52, 122, 220, 0.04);
}

.compare-table .casino-name-cell {
  font-weight: 600;
  white-space: nowrap;
}

/* ============================================================
   CASINO REVIEWS
   ============================================================ */
.review {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.review:last-child { border-bottom: none; }

.review:nth-child(even) { background: var(--color-bg-alt); }

.review h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .review h3 { font-size: 1.5rem; }
}

.review-content {
  overflow: hidden;
}

/* Features list */
.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.features-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.features-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

/* Bonus info table (small) */
.bonus-table {
  width: 100%;
  max-width: 420px;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
}

.bonus-table th,
.bonus-table td {
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  text-align: left;
}

.bonus-table th {
  background: var(--color-bg-alt);
  font-weight: 600;
  width: 40%;
}

/* Table + CTA side-by-side layout */
.bonus-cta-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.bonus-cta-row .bonus-table {
  flex: 0 0 auto;
  margin: 0;
}

/* Review CTA — big blue square sitting next to table in blank space */
.btn-review {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #347adc;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  padding: 20px 40px;
  min-width: 200px;
  border-radius: 3px;
  box-shadow: var(--shadow-card);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.25s ease-in-out;
  text-decoration: none;
  margin-top: 0.5rem;
}
.btn-review:hover {
  background: rgba(52, 122, 220, 0.8);
  color: #ffffff;
}

@media (max-width: 639px) {
  .bonus-cta-row {
    flex-direction: column;
    gap: 12px;
  }
  .btn-review {
    min-width: auto;
    padding: 18px 20px;
    font-size: 1.1rem;
  }
}

/* ============================================================
   PHONE MOCKUP
   ============================================================ */
.phone-mockup {
  position: relative;
  width: 220px;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 8px;
  box-shadow: 0 0 0 2px #333, inset 0 0 0 1px #444, 0 20px 40px rgba(0, 0, 0, 0.25);
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.phone-notch {
  width: 75px;
  height: 22px;
  background: #1a1a1a;
  border-radius: 18px;
  margin: 2px auto 0;
  position: relative;
  z-index: 2;
}

.phone-screen {
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 19.5;
  margin-top: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Placeholder gradient screen */
.phone-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 1rem;
}

.phone-placeholder--jc { background: linear-gradient(135deg, #1a1a2e 0%, #e94560 100%); }
.phone-placeholder--sc { background: linear-gradient(135deg, #0f3460 0%, #e94560 100%); }
.phone-placeholder--po { background: linear-gradient(135deg, #ff6b9d 0%, #c44dff 100%); }
.phone-placeholder--mc { background: linear-gradient(135deg, #1a0033 0%, #ff3366 100%); }
.phone-placeholder--cp { background: linear-gradient(135deg, #2d1b69 0%, #f0c040 100%); }

@media (max-width: 639px) {
  .phone-mockup {
    float: none;
    margin: 0 auto 1.5rem;
    width: 180px;
    border-radius: 30px;
    padding: 6px;
  }

  .phone-notch {
    width: 60px;
    height: 18px;
    border-radius: 14px;
  }

  .phone-screen { border-radius: 24px; margin-top: -8px; }
}

/* ============================================================
   WITHDRAWAL SECTION
   ============================================================ */
.withdrawal-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .withdrawal-cards { grid-template-columns: repeat(3, 1fr); }
}

.withdrawal-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-standard);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.withdrawal-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.withdrawal-card__time {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.withdrawal-card__method {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* ============================================================
   BONUSES SECTION
   ============================================================ */
.bonus-types {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .bonus-types { grid-template-columns: repeat(3, 1fr); }
}

.bonus-type-card {
  background: var(--color-bg);
  border-radius: var(--radius-standard);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.bonus-type-card h3 {
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

/* ============================================================
   RATING CRITERIA
   ============================================================ */
.criteria-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .criteria-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .criteria-grid { grid-template-columns: repeat(3, 1fr); }
}

.criteria-item {
  padding: 1.25rem;
  background: var(--color-bg);
  border-radius: var(--radius-standard);
  box-shadow: var(--shadow-card);
}

.criteria-item__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.criteria-icon {
  font-size: 1.3rem;
}

/* ============================================================
   HELPLINE LIST
   ============================================================ */
.helpline-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 640px) {
  .helpline-list { grid-template-columns: repeat(2, 1fr); }
}

.helpline-list li {
  background: rgba(255, 255, 255, 0.6);
  padding: 12px 16px;
  border-radius: var(--radius-standard);
  margin-bottom: 0;
}

.helpline-list li strong {
  display: block;
  margin-bottom: 2px;
}

.helpline-list li a {
  color: var(--color-text);
  font-weight: 600;
}

.rg-links {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.rg-links a {
  display: inline-block;
  background: rgba(255, 255, 255, 0.7);
  padding: 8px 16px;
  border-radius: var(--radius-standard);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: var(--line-height-heading);
  gap: 1rem;
}

.faq-question:hover { color: var(--color-primary); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform var(--transition-default);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--color-text);
  transition: transform var(--transition-default);
}

.faq-icon::before {
  width: 20px;
  height: 2px;
  top: 9px;
  left: 0;
}

.faq-icon::after {
  width: 2px;
  height: 20px;
  top: 0;
  left: 9px;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer__inner {
  padding: 0 0 1.25rem;
  color: var(--color-text);
  line-height: var(--line-height-base);
}

/* ============================================================
   FOOTER — Warehouse v1.6.5 (DARK charcoal, 4 columns)
   ============================================================ */
.footer {
  background: var(--color-footer);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 0;
}

.footer__block-list {
  display: flex;
  flex-wrap: wrap;
  margin: -20px -35px;
}

.footer__block-item {
  flex: 0 0 100%;
  padding: 20px 35px;
}

@media (min-width: 640px) {
  .footer__block-item { flex: 0 0 50%; }
}

@media (min-width: 1024px) {
  .footer__block-item { flex: 0 0 25%; }
}

.footer__title {
  color: #fff;
  font-family: var(--font-heading);
  margin-bottom: 0.85em;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
}

.footer__text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.footer__text a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-default);
}

.footer__text a:hover { color: #fff; }

.footer__link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__link-item a {
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 0;
  display: block;
  font-size: 14px;
  transition: color 0.2s;
}

.footer__link-item a:hover { color: #fff; }

/* 18+ badge in footer */
.footer__badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

/* Footer bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.footer__disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   UTILITY
   ============================================================ */
.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;
}

.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
