/* CasinoNord — casinonord.sbs
   Minimalist Danish design system
   Palette: Danish red + off-white + dark navy
*/

:root{
  --red: #C8102E;
  --red-dark: #9E0C22;
  --red-soft: #F6D8DC;
  --bg: #FAF7F2;
  --bg-alt: #F1ECDE;
  --card: #FFFFFF;
  --navy: #12233A;
  --navy-2: #223A5C;
  --muted: #4A5A70;
  --border: #E4DED0;
  --border-soft: #EFEADB;
  --gold: #C8A24A;
  --shadow-sm: 0 1px 2px rgba(18,35,58,0.06);
  --shadow-md: 0 4px 14px rgba(18,35,58,0.08);
  --shadow-lg: 0 12px 32px rgba(18,35,58,0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-head: 'Kanit', 'Poppins', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img{ max-width:100%; height:auto; display:block; }
a{ color: var(--red); text-decoration: none; }
a:hover{ color: var(--red-dark); text-decoration: underline; }

h1, h2, h3, h4, h5{
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 .6em;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1{ font-size: clamp(1.75rem, 3.4vw, 2.5rem); font-weight: 700; }
h2{ font-size: clamp(1.35rem, 2.4vw, 1.75rem); border-bottom: 2px solid var(--red); padding-bottom: .35em; margin-top: 1.8em; display: inline-block; }
h3{ font-size: 1.2rem; }
p{ margin: 0 0 1em; }
ul, ol{ padding-left: 1.35em; }
li{ margin-bottom: .4em; }

.container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ HEADER ============ */
.site-header{
  background: #FFFFFF;
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.header-inner{
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 20px;
  min-height: 68px;
}
.logo{ display: inline-flex; align-items: center; }
.logo img{ height: 46px; width: auto; max-width: 260px; }
.nav{
  margin-left: auto;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.nav > a{
  color: var(--navy);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all .15s;
  font-size: .95rem;
  text-decoration: none;
  border: 1px solid transparent;
}
.nav > a:hover{
  background: var(--red-soft);
  color: var(--red-dark);
  text-decoration: none;
}
.menu-toggle{
  display: none;
  background: none;
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--navy);
}
@media (max-width: 800px){
  .nav{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 12px 20px;
    border-bottom: 3px solid var(--red);
    box-shadow: var(--shadow-md);
    align-items: stretch;
  }
  .nav.is-open{ display: flex; }
  .nav > a{ padding: 12px 14px; border-bottom: 1px solid var(--border-soft); border-radius: 0; }
  .menu-toggle{ display: inline-flex; margin-left: auto; }
}

/* ============ MAIN LAYOUT ============ */
.lesson-layout{ padding-bottom: 60px; }
.content{
  max-width: 900px;
  margin: 32px auto;
  padding: 0 20px;
}

/* ============ HERO ============ */
.page-hero{
  background: linear-gradient(135deg, #FFFFFF 0%, var(--bg-alt) 100%);
  border-bottom: 1px solid var(--border);
  padding: 44px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before{
  content: "";
  position: absolute;
  top: -40px; left: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, var(--red-soft) 0%, transparent 70%);
  opacity: .55;
  border-radius: 50%;
}
.page-hero::after{
  content: "";
  position: absolute;
  bottom: -80px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, #E5EAF3 0%, transparent 70%);
  opacity: .6;
  border-radius: 50%;
}
.page-hero > *{ position: relative; z-index: 1; }
.page-hero .container{ max-width: 900px; }
.page-hero .lead{
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 700px;
  margin: 8px auto 0;
}

/* Optional decorative blobs (kept for compatibility) */
.blob, .blob.a, .blob.b { display: none; }

.flag-inline{
  display: inline-block;
  height: 1em;
  width: auto;
  vertical-align: -0.1em;
  margin: 0 .15em;
  border-radius: 2px;
}

/* ============ BREADCRUMBS ============ */
.breadcrumbs{
  font-size: .85rem;
  color: var(--muted);
  margin: 16px 0 8px;
}
.breadcrumbs a{ color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover{ color: var(--red); text-decoration: underline; }

/* ============ CASINO LIST — DO NOT ALTER STRUCTURE ============ */
.casino-list{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}
.casino-card, .feat-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 56px 140px 1fr 210px 220px;
  gap: 22px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s, border-color .2s;
  position: relative;
}
.casino-card:hover, .feat-card:hover{
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  border-color: var(--red-soft);
}
.casino-card:first-child, .feat-card:first-child{
  border-color: var(--red);
  border-width: 2px;
  padding: 22px 24px;
}
.rank-badge{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(200,16,46,0.28);
  justify-self: center;
}
.casino-thumb{
  width: 140px;
  height: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.casino-thumb img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.casino-info{
  min-width: 0;
}
.casino-info h3, .feat-card h3{
  margin: 0 0 4px;
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.25;
}
.rating{
  font-weight: 700;
  color: var(--gold);
  font-size: .9rem;
  display: inline-block;
  margin-bottom: 6px;
}
.casino-features, .feat-list{
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: .88rem;
  color: var(--muted);
}
.casino-features li, .feat-list li{
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}
.casino-features li::before, .feat-list li::before{
  content: "✓";
  color: var(--red);
  font-weight: 700;
  margin-right: 8px;
  flex-shrink: 0;
}
.casino-bonus{
  text-align: center;
  padding: 12px 14px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px dashed var(--border);
}
.bonus-label{
  display: block;
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 4px;
  font-weight: 600;
}
.bonus-amount{
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--red);
  font-size: 1rem;
  line-height: 1.3;
}
.casino-cta{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.casino-cta .btn{
  padding: 12px 18px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .3px;
}
.casino-cta .payment-icons{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin: 0;
}
.casino-cta .payment-icons img{
  height: 18px;
  width: auto;
  opacity: .75;
}

/* Tablet: stack bonus+cta */
@media (max-width: 980px){
  .casino-card, .feat-card{
    grid-template-columns: 56px 120px 1fr;
    grid-template-rows: auto auto;
    gap: 16px 20px;
  }
  .casino-thumb{ width: 120px; height: 120px; }
  .casino-bonus{
    grid-column: 2 / 4;
    grid-row: 2;
  }
  .casino-cta{
    grid-column: 1 / 4;
    grid-row: 3;
    max-width: 100%;
  }
  .casino-cta .btn{ max-width: 300px; margin: 0 auto; width: 100%; }
}

/* Mobile: lead paragraph collapsed under "Læs mere" so casino list is above the fold */
.lead-toggle{ display: none; }
@media (max-width: 620px){
  .page-hero{ padding: 24px 16px 22px; }
  .page-hero h1{ font-size: 1.6rem; margin-bottom: .35em; }
  .page-hero .lead.is-collapsible{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 4px auto 4px;
    font-size: .98rem;
    line-height: 1.45;
  }
  .page-hero .lead.is-open{
    display: block;
    -webkit-line-clamp: unset;
  }
  .lead-toggle{
    display: inline-block;
    background: none;
    border: none;
    color: var(--red);
    font-weight: 600;
    cursor: pointer;
    font-size: .9rem;
    padding: 2px 0 4px;
    text-decoration: underline;
    font-family: var(--font-body);
  }
}

/* Mobile: single column stack — image first, info directly under, CTA at bottom */
@media (max-width: 620px){
  .casino-card, .feat-card{
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 14px;
    position: relative;
  }
  .casino-thumb{
    order: 1;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 140px;
    margin: 0;
    padding: 10px;
    align-self: stretch;
  }
  .casino-thumb img{
    max-height: 130px;
  }
  .casino-info{ order: 2; text-align: center; }
  .casino-info h3{ font-size: 1.35rem; margin-top: 6px; }
  .rating{ display: block; text-align: center; margin: 4px 0 10px; }
  .casino-features, .feat-list{
    display: inline-flex;
    flex-direction: column;
    text-align: left;
    max-width: 320px;
    margin: 0 auto;
  }
  .casino-bonus{ order: 3; align-self: stretch; }
  .casino-cta{ order: 4; align-self: stretch; }
  .casino-cta .btn{ max-width: 100%; }
  .rank-badge{
    position: absolute;
    top: 12px;
    left: 12px;
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
    z-index: 2;
    order: 0;
  }
}


/* ============ BUTTONS ============ */
.btn{
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: .95rem;
  transition: all .15s;
  text-align: center;
}
.btn-primary{
  background: var(--red);
  color: #fff;
  box-shadow: 0 2px 6px rgba(200,16,46,0.28);
}
.btn-primary:hover{
  background: var(--red-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(200,16,46,0.32);
}
.btn-block{ display: block; width: 100%; }

/* ============ CONTENT COMPONENTS ============ */
.lead{
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 1.4em;
}
.prose-img{
  display: block;
  margin: 24px auto;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  border: none;
  background: transparent;
}
.content img{
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.callout{
  background: #FFF8E9;
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin: 22px 0;
}
.callout.is-info{ background: #EEF3FB; border-left-color: var(--navy-2); }
.callout.is-warning{ background: #FDECEE; border-left-color: var(--red); }

.step-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 24px 0;
}
.step-box{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  position: relative;
}
.step-num{
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-family: var(--font-head);
}

.feature-cards, .related-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 24px 0;
}
.feature-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover{
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.related-title{ margin-top: 0; font-size: 1.05rem; }

/* Related-guide card — polished */
.related-card{
  background: linear-gradient(135deg, #FFFFFF 0%, var(--bg-alt) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 60px 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s, border-color .2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  overflow: hidden;
  min-height: 96px;
  justify-content: center;
}
.related-card::before{
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
  transition: width .2s;
}
.related-card::after{
  content: "→";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform .2s;
  line-height: 1;
}
.related-card:hover{
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--red-soft);
  text-decoration: none;
}
.related-card:hover::before{ width: 6px; }
.related-card:hover::after{ transform: translateY(-50%) translateX(4px); }

.r-tag{
  display: inline-block;
  background: var(--red-soft);
  color: var(--red-dark);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1.5;
}
.r-title{
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.3;
  display: block;
}
.related-card:hover .r-title{ color: var(--red-dark); }

@media (max-width: 640px){
  .related-grid, .feature-cards{ gap: 14px; margin: 20px 0; }
  .related-card{
    padding: 18px 52px 18px 20px;
    min-height: 84px;
  }
  .related-card::after{ right: 18px; font-size: 1.35rem; }
  .r-title{ font-size: 1.05rem; }
}

/* ============ TOC ============ */
.toc{
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-alt) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  margin: 28px 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.toc::before{
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
}
.toc-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
  gap: 12px;
}
.toc-title{
  margin: 0;
  font-size: 1.05rem;
  font-family: var(--font-head);
  color: var(--navy);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toc-title::before{
  content: "☰";
  color: var(--red);
  font-size: 1rem;
  line-height: 1;
}
.toc-toggle{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 1.15rem;
  color: var(--red);
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all .15s;
  flex-shrink: 0;
}
.toc-toggle:hover{ background: var(--red); color: #fff; border-color: var(--red); }
.toc-list{
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-counter;
  columns: 2;
  column-gap: 32px;
}
.toc-list li{
  break-inside: avoid;
  margin: 0 0 2px;
  counter-increment: toc-counter;
}
.toc-list a{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--navy-2);
  font-size: .93rem;
  line-height: 1.4;
  padding: 8px 10px 8px 8px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background .15s, color .15s, transform .15s;
}
.toc-list a::before{
  content: counter(toc-counter, decimal-leading-zero);
  flex-shrink: 0;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--red);
  font-size: .78rem;
  background: var(--red-soft);
  padding: 2px 6px;
  border-radius: 4px;
  min-width: 26px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: .3px;
}
.toc-list a:hover{
  background: var(--red-soft);
  color: var(--red-dark);
  text-decoration: none;
  transform: translateX(2px);
}
.toc-list a:hover::before{
  background: var(--red);
  color: #fff;
}
@media (max-width: 720px){
  .toc{
    padding: 16px 18px;
    margin: 20px 0;
  }
  .toc-list{ columns: 1; }
  .toc-list a{
    padding: 9px 8px;
    font-size: .95rem;
    border-bottom: 1px solid var(--border-soft);
    border-radius: 0;
  }
  .toc-list li:last-child a{ border-bottom: none; }
  .toc-title{ font-size: 1rem; }
}

/* ============ FAQ ============ */
.faq-accordion{ margin: 24px 0; }
.faq-item{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item summary{
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  position: relative;
  padding-right: 44px;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 1.3rem;
  font-weight: 700;
}
.faq-item[open] summary::after{ content: "−"; }
.faq-answer{
  padding: 0 18px 16px;
  color: var(--muted);
}

/* ============ TABLES ============ */
.table-wrap{
  overflow-x: auto;
  margin: 22px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.table-wrap table{
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.table-wrap th, .table-wrap td{
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}
.table-wrap th{
  background: var(--bg-alt);
  color: var(--navy);
  font-weight: 600;
  font-family: var(--font-head);
}
.table-wrap tr:last-child td{ border-bottom: none; }

/* ============ PROS/CONS ============ */
.pros-cons{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 22px 0;
}
.pros, .cons{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
}
.pros{ border-top: 3px solid #2E8B57; }
.cons{ border-top: 3px solid var(--red); }
.pros ul, .cons ul{ list-style: none; padding: 0; margin: 8px 0 0; }
.pros li, .cons li{ padding-left: 22px; position: relative; margin-bottom: 8px; }
.pros li::before{ content: "✓"; position: absolute; left: 0; color: #2E8B57; font-weight: 700; }
.cons li::before{ content: "×"; position: absolute; left: 0; color: var(--red); font-weight: 700; font-size: 1.1em; }
.list-heading{ font-weight: 700; color: var(--navy); font-family: var(--font-head); }
@media (max-width: 640px){ .pros-cons{ grid-template-columns: 1fr; } }

/* ============ AUTHOR BOX ============ */
.author-box{
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 32px 0;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  align-items: start;
  box-shadow: var(--shadow-sm);
}
.author-avatar{
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--red-soft);
}
.author-eyebrow{
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  font-weight: 700;
}
.author-name-row{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 4px;
  flex-wrap: wrap;
}
.author-name{ margin: 0; font-size: 1.15rem; color: var(--navy); }
.author-role{ color: var(--muted); font-size: .9rem; }
.author-bio{ margin: 8px 0; color: var(--muted); font-size: .95rem; }
.author-email-btn{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--red);
  border-radius: var(--radius-sm);
  color: var(--red);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 4px;
}
.author-email-btn:hover{ background: var(--red); color: #fff; text-decoration: none; }
@media (max-width: 560px){
  .author-box{ grid-template-columns: 1fr; text-align: center; }
  .author-avatar{ margin: 0 auto; }
  .author-name-row{ justify-content: center; }
}

/* ============ REVIEW BANNER ============ */
.review-banner{
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  margin: 24px 0;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.review-banner h3{ color: #fff; margin: 0 0 6px; }
.review-banner p{ margin: 0; opacity: .85; }
.review-banner .btn{ flex-shrink: 0; }

/* ============ RESPONSIBLE BADGE ============ */
.responsible-badge{
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .5px;
}

/* ============ MARKET SUBNAV (kept for compatibility) ============ */
.market-subnav, .subnav-scroll{
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.market-subnav a, .subnav-scroll a{
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: .88rem;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  background: var(--card);
}
.market-subnav a:hover, .subnav-scroll a:hover,
.market-subnav a.active, .subnav-scroll a.active{
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* ============ FOOTER ============ */
.site-footer{
  background: var(--navy);
  color: #E7ECF2;
  padding: 40px 0 20px;
  margin-top: 60px;
}
.site-footer .logo img{ height: 46px; max-width: 260px; }
.site-footer h3{
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  border-bottom: 2px solid var(--red);
  padding-bottom: 6px;
  display: inline-block;
  margin: 0 0 12px;
}
.site-footer p{ color: #C6CED9; font-size: .92rem; }
.site-footer a{ color: #E7ECF2; text-decoration: none; }
.site-footer a:hover{ color: #fff; text-decoration: underline; }
.footer-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}
.footer-grid ul{ list-style: none; padding: 0; margin: 0; }
.footer-grid li{ margin-bottom: 8px; font-size: .92rem; }
.footer-bottom{
  border-top: 1px solid #2A3E5A;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: .85rem;
  color: #B5BDCA;
  flex-wrap: wrap;
}
@media (max-width: 720px){
  .footer-grid{ grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom{ flex-direction: column; text-align: center; }
}

/* ============ MISC ============ */
.reveal{ opacity: 0; transform: translateY(10px); transition: opacity .6s, transform .6s; }
.reveal.is-shown{ opacity: 1; transform: translateY(0); }
.sep{ height: 1px; background: var(--border); margin: 30px 0; border: 0; }
.payment-icons{ display: flex; flex-wrap: wrap; gap: 10px; margin: 12px 0; }
.payment-icons img{ height: 22px; }

/* Selection */
::selection{ background: var(--red); color: #fff; }
