/*
Theme Name:  NRFTW Travel
Theme URI:   https://nrftw.se
Description: NRFTW Travel child theme — WooCommerce travel booking for triathlon athletes
Author:      NRFTW
Version:     1.0.0
Template:    storefront
Text Domain: nrftw
*/

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,700;1,800;1,900&family=Barlow:wght@300;400;500;600&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --cream:        #faf7f2;
  --cream-dark:   #efe9dc;
  --navy:         #0e1c2f;
  --navy-mid:     #1d3354;
  --gold:         #b8922a;
  --gold-light:   #d4aa44;
  --text:         #111827;
  --text-mid:     #5a5a5a;
  --text-light:   #9a9a9a;
  --card:         #ffffff;

  --cat-classic:    #0e1c2f;
  --cat-extreme:    #7a1e1e;
  --cat-recovery:   #1e4a2e;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --transition: 0.25s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
}

.hero-h1 {
  font-size: clamp(64px, 11vw, 136px);
  letter-spacing: -0.02em;
}

.section-h2 {
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.01em;
}

.card-h3 {
  font-size: clamp(28px, 3vw, 40px);
}

.page-h1 {
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.eyebrow--light {
  color: var(--gold-light);
}

.meta-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: opacity var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.88;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-outline--gold {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.section-pad {
  padding: 96px 56px;
}

@media (max-width: 768px) {
  .section-pad {
    padding: 56px 20px;
  }
}

/* ============================================================
   FADE-UP ANIMATION
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 40px;
  justify-content: space-between;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}

/* WordPress admin-bar offset (endast inloggade användare) */
.admin-bar .site-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-nav { top: 46px; }
}

.site-nav--transparent {
  background: transparent;
}

.site-nav[data-scrolled],
.site-nav--solid {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(14, 28, 47, 0.08);
}

.site-nav__logo {
  display: flex;
  align-items: center;
  color: var(--navy);
}

.site-nav--transparent .site-nav__logo {
  color: #fff;
}

.site-nav[data-scrolled] .site-nav__logo {
  color: var(--navy);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition);
}

.site-nav--transparent .site-nav__link {
  color: rgba(255, 255, 255, 0.88);
}

.site-nav[data-scrolled] .site-nav__link {
  color: var(--navy);
}

.site-nav__link:hover,
.site-nav__link.active,
.current-menu-item > .site-nav__link {
  border-bottom-color: var(--gold);
  color: var(--navy);
}

.site-nav--transparent .site-nav__link:hover,
.site-nav--transparent .site-nav__link.active {
  color: #fff;
}

.site-nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav__cart {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--navy);
}

.site-nav--transparent .site-nav__cart {
  color: #fff;
}

.site-nav[data-scrolled] .site-nav__cart {
  color: var(--navy);
}

.site-nav__cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.site-nav__cart-badge:empty,
.site-nav__cart-badge[data-count="0"] {
  display: none;
}

/* ============================================================
   PAGE HERO (sidor utan full-screen hero)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 140px 56px 72px;
}

.page-hero__eyebrow {
  margin-bottom: 16px;
}

.page-hero__title {
  color: #fff;
}

/* ============================================================
   STARTSIDA — HERO
   ============================================================ */
.home-hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14, 28, 47, 0.85) 45%, rgba(14, 28, 47, 0.3) 100%);
  z-index: 1;
}

.home-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 56px 80px;
  max-width: 720px;
}

.home-hero__eyebrow {
  margin-bottom: 20px;
}

.home-hero__title {
  color: #fff;
  margin-bottom: 24px;
}

.home-hero__title em {
  color: var(--gold-light);
  font-style: italic;
}

.home-hero__body {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.5;
}

.home-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.home-hero__stats {
  position: absolute;
  bottom: 80px;
  right: 56px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
}

.home-hero__stat {
  color: rgba(255, 255, 255, 0.88);
}

.home-hero__stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  color: #fff;
  line-height: 1;
}

.home-hero__stat-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   STARTSIDA — KATEGORIER
   ============================================================ */
.home-categories {
  padding: 112px 56px 80px;
}

.home-categories__header {
  margin-bottom: 48px;
}

.home-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.category-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.category-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-card__img {
  transform: scale(1.05);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 28, 47, 0.88) 0%, rgba(14, 28, 47, 0.2) 60%, transparent 100%);
}

.category-card__content {
  position: relative;
  z-index: 1;
  padding: 32px;
}

.category-card__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  margin-bottom: 12px;
  color: #fff;
}

.category-card__badge--classic  { background: var(--cat-classic); }
.category-card__badge--extreme  { background: var(--cat-extreme); }
.category-card__badge--recovery { background: var(--cat-recovery); }

.category-card__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
}

.category-card__desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

/* ============================================================
   STARTSIDA — UTVALD RESA
   ============================================================ */
.home-featured {
  padding: 0 56px 112px;
}

.home-featured__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.home-featured__image {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.home-featured__card {
  background: var(--navy);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-featured__title {
  color: #fff;
  font-size: clamp(40px, 5vw, 64px);
  margin: 16px 0 20px;
}

.home-featured__desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 40px;
}

.meta-grid__cell {
  background: var(--navy);
  padding: 20px 24px;
}

.meta-grid__cell--light {
  background: var(--cream-dark);
}

.meta-grid__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}

.meta-grid__label--dark {
  color: var(--text-light);
}

.meta-grid__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
}

.meta-grid__value--dark {
  color: var(--navy);
}

.home-featured__price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.home-featured__price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  color: #fff;
  line-height: 1;
}

.home-featured__price-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
}

/* ============================================================
   STARTSIDA — VÄRDEPUNKTER
   ============================================================ */
.home-values {
  background: var(--cream-dark);
  padding: 96px 56px;
}

.home-values__header {
  margin-bottom: 56px;
}

.home-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.value-card {
  background: var(--card);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.value-card__number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 120px;
  line-height: 1;
  color: var(--navy);
  opacity: 0.06;
  position: absolute;
  top: -16px;
  right: -8px;
  letter-spacing: -4px;
}

.value-card__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card__desc {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================================
   STARTSIDA — CTA BAND
   ============================================================ */
.home-cta {
  background: var(--navy);
  padding: 112px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.home-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 146, 42, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.home-cta__eyebrow {
  margin-bottom: 24px;
}

.home-cta__title {
  color: #fff;
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 20px;
}

.home-cta__body {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.home-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   RESOR — ARKIV
   ============================================================ */
.archive-hero {
  background: var(--navy);
  padding: 140px 56px 64px;
}

.archive-hero__title {
  color: #fff;
  margin-top: 16px;
}

.filter-bar {
  background: var(--navy);
  position: sticky;
  top: 72px;
  z-index: 50;
  padding: 0 56px;
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.filter-tab {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  padding: 18px 24px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  transition: color var(--transition), border-color var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
  color: #fff;
  border-bottom-color: var(--gold);
}

.product-grid {
  padding: 64px 56px 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.product-card {
  position: relative;
  display: block;
  height: 480px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.product-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 28, 47, 0.88) 0%, rgba(14, 28, 47, 0.25) 55%, transparent 100%);
}

.product-card__badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  z-index: 1;
}

.badge {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  color: #fff;
}

.badge--classic  { background: var(--cat-classic); }
.badge--extreme  { background: var(--cat-extreme); }
.badge--recovery { background: var(--cat-recovery); }
.badge--sold-out { background: #555; }
.badge--last     { background: #b32222; }
.badge--gold     { background: var(--gold); }

.product-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 1;
  color: #fff;
}

.product-card__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin: 0 0 12px;
}

.product-card__price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--gold-light);
  line-height: 1;
  margin: 0;
}

.product-card__price-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.product-card__price .amount,
.product-card__price ins,
.product-card__price del {
  color: var(--gold-light);
  text-decoration: none;
}

.product-card[data-hidden] {
  display: none;
}

/* ============================================================
   ENSKILD RESA — SINGLE PRODUCT
   ============================================================ */
.single-hero {
  position: relative;
  height: 68vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.single-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 28, 47, 0.88) 0%, rgba(14, 28, 47, 0.2) 55%, transparent 100%);
}

.single-hero__content {
  position: relative;
  z-index: 1;
  padding: 0 56px 48px;
}

.single-hero__title {
  color: #fff;
  font-size: clamp(48px, 7vw, 88px);
  margin-top: 12px;
  margin-bottom: 16px;
}

.single-hero__meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.single-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.72);
}

.single-product__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  padding: 72px 56px 96px;
  align-items: start;
}

.single-product__section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-dark);
}

.single-product__description {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
  margin-bottom: 56px;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.4;
}

.included-item__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.booking-card {
  background: var(--navy);
  padding: 40px;
  position: sticky;
  top: 88px;
}

.booking-card__price-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}

.booking-card__price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.booking-card__price-suffix {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.booking-card__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 24px 0;
}

.booking-card__section-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}

.date-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.date-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.date-option:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.date-option.selected {
  border-color: var(--gold);
  background: rgba(184, 146, 42, 0.08);
}

.date-option__radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.date-option.selected .date-option__radio {
  border-color: var(--gold);
  background: var(--gold);
}

.date-option__radio::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  display: none;
}

.date-option.selected .date-option__radio::after {
  display: block;
}

.date-option__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
}

.booking-card__spots {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}

.booking-card__spots--low {
  color: #e05555;
}

.booking-card__cta {
  width: 100%;
  margin-bottom: 12px;
  justify-content: center;
}

.booking-card__secondary {
  width: 100%;
  justify-content: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
}

/* GROUPED CHILDREN (single-product booking-card) */
.grouped-children {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.grouped-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: background var(--transition), border-color var(--transition);
}

.grouped-child:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.20);
}

.grouped-child--soldout {
  opacity: 0.5;
}

.grouped-child__info {
  flex: 1;
  min-width: 0;
}

aside.booking-card .grouped-child__name,
aside.booking-card p.grouped-child__name {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  color: #fff !important;
  margin: 0 0 4px 0 !important;
}

aside.booking-card .grouped-child__price,
aside.booking-card p.grouped-child__price,
aside.booking-card .grouped-child__price *,
aside.booking-card .grouped-child__price .woocommerce-Price-amount,
aside.booking-card .grouped-child__price .woocommerce-Price-amount bdi {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  color: var(--gold-light) !important;
  margin: 0 !important;
}

aside.booking-card .grouped-child__spots,
aside.booking-card p.grouped-child__spots {
  font-family: var(--font-display) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: rgba(255, 255, 255, 0.65) !important;
  margin: 6px 0 0 0 !important;
}

aside.booking-card .grouped-child__spots--low {
  color: #ff8a8a !important;
}

aside.booking-card .grouped-child__soldout {
  font-family: var(--font-display) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: rgba(255, 255, 255, 0.65) !important;
}

.grouped-child .qty-stepper {
  flex-shrink: 0;
  background: var(--cream);
}

aside.booking-card .grouped-child .qty-stepper__count,
aside.booking-card .grouped-child input.qty-stepper__count {
  color: var(--navy) !important;
  opacity: 1 !important;
  -webkit-text-fill-color: var(--navy) !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  background: #fff !important;
  width: 56px !important;
  min-width: 56px !important;
  padding: 6px 4px !important;
  text-align: center !important;
  -moz-appearance: textfield;
}

aside.booking-card .grouped-child input.qty-stepper__count::-webkit-outer-spin-button,
aside.booking-card .grouped-child input.qty-stepper__count::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ============================================================
   COACHING PAGE
   ============================================================ */
/* COACHING — INTRO (v2) */
.coaching-intro {
  background: var(--navy);
  color: #fff;
  padding-top: 72px;
}

.coaching-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.coaching-intro__title {
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: #fff;
}

.coaching-intro__title em {
  color: var(--gold-light);
  font-style: italic;
}

.coaching-intro__body {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  margin-bottom: 16px;
}

.coaching-intro__body--muted {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
}

.coaching-intro__image {
  position: relative;
  height: 460px;
  overflow: hidden;
}

.coaching-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.coaching-intro__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 28, 47, 0.55) 0%, transparent 55%);
}

/* COACHING — FILOSOFI (v2) */
.coaching-philosophy {
  background: var(--cream);
  padding: 96px 56px;
}

.coaching-philosophy__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

.coaching-philosophy__sticky {
  position: sticky;
  top: 100px;
}

.coaching-philosophy__sticky .eyebrow {
  color: var(--gold);
  margin-bottom: 16px;
}

.coaching-philosophy__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 4vw, 60px);
  text-transform: uppercase;
  line-height: 0.93;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.coaching-philosophy__rule {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

.coaching-philosophy__intro {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
}

.coaching-philosophy__paragraphs {
  display: flex;
  flex-direction: column;
}

.coaching-philosophy__p {
  font-size: 18px;
  color: var(--text);
  line-height: 1.9;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--cream-dark);
}

.coaching-philosophy__p:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* PAKET — tillägg för v2 */
.pricing-section__header--left {
  text-align: left;
  max-width: 600px;
  margin-left: 56px;
}

.pricing-section__intro {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 480px;
  line-height: 1.75;
  margin-top: 16px;
}

.pricing-card__eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}

.pricing-card--featured .pricing-card__eyebrow {
  color: rgba(255, 255, 255, 0.4);
}

.pricing-section__helper {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-light);
}

.pricing-section__helper-link {
  color: var(--gold);
  font-weight: 600;
  margin-left: 4px;
}

.pricing-section {
  background: var(--cream-dark);
  padding: 96px 56px;
}

.pricing-section__header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-section__title {
  margin-top: 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.pricing-card {
  background: var(--card);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  background: var(--navy);
  position: relative;
}

.pricing-card__popular {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 14px;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-card--featured .pricing-card__name {
  color: #fff;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 4px;
}

.pricing-card--featured .pricing-card__price {
  color: var(--gold-light);
}

.pricing-card__period {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 32px;
}

.pricing-card--featured .pricing-card__period {
  color: rgba(255, 255, 255, 0.45);
}

.pricing-card__divider {
  height: 1px;
  background: var(--cream-dark);
  margin-bottom: 28px;
}

.pricing-card--featured .pricing-card__divider {
  background: rgba(255, 255, 255, 0.1);
}

.pricing-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.pricing-card__feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.4;
}

.pricing-card--featured .pricing-card__feature {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-card__feature-check {
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   OM OSS PAGE
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-split__text {
  padding: 120px 64px 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-split__title {
  color: var(--navy);
  margin-top: 16px;
  margin-bottom: 24px;
}

.about-split__body {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-split__image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.about-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-strip {
  background: var(--navy);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-strip__cell {
  padding: 56px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.stats-strip__cell:last-child {
  border-right: none;
}

.stats-strip__number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stats-strip__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   KONTAKT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  padding: 96px 56px;
}

.contact-info {
  padding-right: 80px;
}

.contact-info__title {
  color: var(--navy);
  margin-top: 16px;
  margin-bottom: 32px;
}

.contact-info__rows {
  display: flex;
  flex-direction: column;
}

.contact-info__row {
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.contact-info__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 16px;
  color: var(--navy);
  font-weight: 500;
}

.contact-form__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 28px;
}

.interest-toggles {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.interest-toggle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border: 1.5px solid var(--cream-dark);
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
}

.interest-toggle.active,
.interest-toggle:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--cream-dark);
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 16px;
  background: var(--card);
  border: 1.5px solid var(--cream-dark);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--transition);
  appearance: none;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-success {
  display: none;
  text-align: center;
  padding: 48px;
}

.contact-success__icon {
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.contact-success__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  text-transform: uppercase;
  color: var(--navy);
}

/* CF7 overrides */
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--card);
  border: 1.5px solid var(--cream-dark);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--transition);
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.wpcf7 .wpcf7-not-valid {
  border-color: #b32222;
}

.wpcf7 .wpcf7-submit {
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: opacity var(--transition);
}

.wpcf7 .wpcf7-submit:hover {
  opacity: 0.88;
}

/* ============================================================
   VARUKORG — CART
   ============================================================ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  padding: 72px 56px 96px;
  align-items: start;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  padding: 0 0 16px;
  text-align: left;
  border-bottom: 1px solid var(--cream-dark);
}

.cart-table td {
  padding: 24px 0;
  border-bottom: 1px solid var(--cream-dark);
  vertical-align: middle;
}

.cart-item__product {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.cart-item__image {
  width: 80px;
  height: 60px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 4px;
}

.cart-item__meta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.cart-item__price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--navy);
}

.qty-stepper {
  display: flex;
  align-items: center;
  gap: 0;
}

.qty-stepper__btn {
  width: 32px;
  height: 32px;
  background: var(--cream-dark);
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  transition: background var(--transition);
}

.qty-stepper__btn:hover {
  background: #d8d0c0;
}

.qty-stepper__count {
  width: 40px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  border: none;
  background: transparent;
}

.cart-remove {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 20px;
  transition: color var(--transition);
}

.cart-remove:hover {
  color: #b32222;
}

.cart-coupon {
  display: flex;
  gap: 8px;
  margin-top: 32px;
}

.cart-coupon input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 14px;
}

.cart-continue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  transition: color var(--transition);
}

.cart-continue:hover {
  color: var(--navy);
}

.order-summary {
  background: var(--navy);
  padding: 40px;
  position: sticky;
  top: 88px;
}

.order-summary__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}

.order-summary__rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.order-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-summary__label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.order-summary__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
}

.order-summary__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 16px 0;
}

.order-summary__total-label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
}

.order-summary__total-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--gold-light);
}

.order-summary__cta {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
}

/* ============================================================
   KASSA — CHECKOUT
   ============================================================ */
.checkout-progress {
  background: var(--cream-dark);
  padding: 0 56px;
  display: flex;
  align-items: stretch;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  position: relative;
}

.checkout-step__number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 2px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-light);
}

.checkout-step__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.checkout-step--done .checkout-step__number {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.checkout-step--done .checkout-step__label {
  color: var(--navy);
}

.checkout-step--active .checkout-step__number {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.checkout-step--active .checkout-step__label {
  color: var(--navy);
  font-weight: 900;
}

.checkout-separator {
  flex: none;
  width: 32px;
  height: 1px;
  background: var(--cream-dark);
  align-self: center;
  border-top: 1px solid var(--text-light);
  opacity: 0.3;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  padding: 64px 56px 96px;
  align-items: start;
}

.checkout-section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-dark);
}

.billing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}

.billing-grid .form-field--full {
  grid-column: 1 / -1;
}

.woocommerce-checkout .form-field input,
.woocommerce-checkout .form-field select,
.woocommerce-checkout .form-field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--card);
  border: 1.5px solid var(--cream-dark);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
}

.woocommerce-checkout .form-field input:focus,
.woocommerce-checkout .form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.woocommerce-invalid .form-field input {
  border-color: #b32222;
}

.woocommerce-checkout .form-field label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 6px;
  display: block;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.payment-method {
  border: 1.5px solid var(--cream-dark);
  cursor: pointer;
  overflow: hidden;
}

.payment-method__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: transparent;
  transition: background var(--transition);
}

.payment-method.active .payment-method__header {
  background: var(--navy);
}

.payment-method__radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--cream-dark);
  flex-shrink: 0;
  position: relative;
}

.payment-method.active .payment-method__radio {
  border-color: var(--gold);
}

.payment-method.active .payment-method__radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.payment-method__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--navy);
  flex: 1;
}

.payment-method.active .payment-method__name {
  color: #fff;
}

.payment-method__fields {
  display: none;
  padding: 20px;
  background: var(--cream-dark);
}

.payment-method.active .payment-method__fields {
  display: block;
}

.payment-method__fields-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
}

.terms-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.terms-checkbox {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 2px;
}

.terms-checkbox.checked {
  background: var(--navy);
  border-color: var(--navy);
}

.terms-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}

.terms-text a {
  color: var(--navy);
  text-decoration: underline;
}

/* ============================================================
   ORDERBEKRÄFTELSE — THANK YOU
   ============================================================ */
.thankyou-banner {
  background: var(--navy);
  padding: 80px 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}

.thankyou-check {
  width: 100px;
  height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.thankyou-banner__eyebrow {
  margin-bottom: 12px;
}

.thankyou-banner__title {
  color: #fff;
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 12px;
}

.thankyou-banner__body {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
}

.order-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--cream-dark);
}

.order-meta-cell {
  padding: 32px 40px;
  border-right: 1px solid rgba(14, 28, 47, 0.08);
}

.order-meta-cell:last-child {
  border-right: none;
}

.order-meta-cell__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 8px;
}

.order-meta-cell__value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--navy);
}

.order-meta-cell__value--success {
  color: #1a7a3c;
}

.booked-trips {
  padding: 72px 56px;
}

.booked-trips__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-dark);
}

.booked-trip-row {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.booked-trip-row__image {
  width: 96px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
}

.booked-trip-row__info {
  flex: 1;
}

.booked-trip-row__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--navy);
  margin: 6px 0 4px;
}

.booked-trip-row__meta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.booked-trip-row__price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  color: var(--navy);
}

.next-steps {
  background: var(--cream-dark);
  padding: 80px 56px;
}

.next-steps__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 48px;
}

.next-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 48px;
}

.next-step-card {
  background: var(--card);
  padding: 32px;
}

.next-step-card__number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  color: var(--navy);
  opacity: 0.08;
  line-height: 1;
  margin-bottom: 16px;
}

.next-step-card__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.next-step-card__desc {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.6;
}

.next-steps__ctas {
  display: flex;
  gap: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  padding: 64px 56px 40px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-col__link:hover {
  color: #fff;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer__copy {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   STOREFRONT OVERRIDES
   ============================================================ */
.storefront-primary-navigation,
.storefront-header-cart,
.site-header {
  display: none !important;
}

.woocommerce-notices-wrapper {
  padding: 0 56px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .home-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .single-product__layout {
    grid-template-columns: 1fr;
  }

  .booking-card {
    position: static;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .home-categories__grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .home-featured__grid {
    grid-template-columns: 1fr;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .coaching-intro__inner,
  .coaching-philosophy__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .coaching-philosophy__sticky {
    position: static;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .next-steps__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-nav__links {
    display: none;
  }

  .home-hero__stats {
    display: none;
  }

  .billing-grid {
    grid-template-columns: 1fr;
  }

  .thankyou-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .thankyou-check {
    margin: 0 auto;
  }

  .filter-bar {
    padding: 0 20px;
    overflow-x: auto;
  }

  .section-pad,
  .home-categories,
  .home-featured,
  .home-values,
  .home-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-grid,
  .cart-layout,
  .checkout-layout,
  .contact-layout,
  .booked-trips,
  .next-steps,
  .archive-hero,
  .single-product__layout {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ============================================================
   GUTENBERG BLOCK STYLING — front-page.php
   ============================================================ */

/* Global typografi för blocks */
.nrftw-front-page h1,
.nrftw-front-page h2,
.nrftw-front-page h3,
.nrftw-front-page h4 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.nrftw-front-page p,
.nrftw-front-page li {
  font-family: var(--font-body);
}

/* --- HERO-BLOCK ---
   Första wp-block-group på startsidan blir automatiskt hero.
   Stöder även manuell klass "nrftw-hero" om du vill styra det själv.
   ---------------------------------------------------------- */
.nrftw-front-page > .wp-block-group:first-child,
.nrftw-front-page .nrftw-hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 0 !important;
  padding-top: 72px !important;
}

.nrftw-front-page > .wp-block-group:first-child::before,
.nrftw-front-page .nrftw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14, 28, 47, 0.85) 45%, rgba(14, 28, 47, 0.3) 100%);
  z-index: 0;
  pointer-events: none;
}

.nrftw-front-page > .wp-block-group:first-child > *,
.nrftw-front-page .nrftw-hero > * {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Text i hero vit */
.nrftw-front-page > .wp-block-group:first-child h1,
.nrftw-front-page > .wp-block-group:first-child h2,
.nrftw-front-page > .wp-block-group:first-child p,
.nrftw-front-page .nrftw-hero h1,
.nrftw-front-page .nrftw-hero h2,
.nrftw-front-page .nrftw-hero p {
  color: #fff;
}

.nrftw-front-page > .wp-block-group:first-child h1,
.nrftw-front-page .nrftw-hero h1 {
  font-size: clamp(48px, 8vw, 110px);
}

/* Hero-kolumner: dölj block-bild (featured image tar över som bg) */
.nrftw-front-page > .wp-block-group:first-child .wp-block-image,
.nrftw-front-page .nrftw-hero .wp-block-image {
  display: none;
}

.nrftw-front-page > .wp-block-group:first-child .wp-block-columns,
.nrftw-front-page .nrftw-hero .wp-block-columns {
  padding: 0 56px 80px;
  gap: 40px;
  align-items: flex-end;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .nrftw-front-page > .wp-block-group:first-child .wp-block-columns,
  .nrftw-front-page .nrftw-hero .wp-block-columns {
    padding: 0 20px 48px;
  }
}

/* --- SEKTIONER MED NAVY-BAKGRUND ---
   Lägg till klassen "nrftw-section-navy" på grupper som ska ha mörk bakgrund
   ---------------------------------------------------------- */
.nrftw-front-page .nrftw-section-navy {
  background: var(--navy) !important;
}

.nrftw-front-page .nrftw-section-navy h1,
.nrftw-front-page .nrftw-section-navy h2,
.nrftw-front-page .nrftw-section-navy h3,
.nrftw-front-page .nrftw-section-navy p {
  color: #fff;
}

/* --- SEKTIONER MED CREAM-DARK-BAKGRUND ---
   Lägg till klassen "nrftw-section-cream" på grupper med ljus section-bakgrund
   ---------------------------------------------------------- */
.nrftw-front-page .nrftw-section-cream {
  background: var(--cream-dark) !important;
}

/* --- KNAPPAR ---
   WordPress-knappar får NRFTW-stil
   ---------------------------------------------------------- */
.nrftw-front-page .wp-block-button__link,
.nrftw-front-page .wp-block-button .wp-element-button {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  border-radius: 0 !important;
  padding: 14px 28px !important;
  transition: opacity 0.25s ease !important;
}

.nrftw-front-page .wp-block-button__link:hover {
  opacity: 0.88;
}

/* Primary-knapp → gold */
.nrftw-front-page .wp-block-button:not(.is-style-outline) .wp-block-button__link {
  background: var(--gold) !important;
  color: #fff !important;
  border-color: var(--gold) !important;
}

/* Outline-knapp → navy */
.nrftw-front-page .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent !important;
  color: var(--navy) !important;
  border-color: var(--navy) !important;
  border-width: 1.5px !important;
}

/* Vita outline-knappar i hero */
.nrftw-front-page .nrftw-hero .wp-block-button.is-style-outline .wp-block-button__link {
  color: #fff !important;
  border-color: rgba(255,255,255,0.4) !important;
  background: rgba(255,255,255,0.1) !important;
  backdrop-filter: blur(8px);
}

/* --- KATEGORIKORT ---
   Lägg till klassen "nrftw-cat-card" på kolumner som visar kategorier
   ---------------------------------------------------------- */
.nrftw-front-page .nrftw-cat-grid .wp-block-columns {
  gap: 3px !important;
}

.nrftw-front-page .nrftw-cat-card {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s ease;
}

.nrftw-front-page .nrftw-cat-card .wp-block-image {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
}

.nrftw-front-page .nrftw-cat-card .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nrftw-front-page .nrftw-cat-card:hover .wp-block-image img {
  transform: scale(1.05);
}

/* --- SEKTIONSRUBRIKER ---
   Globala stilar för block-rubriker i front-page
   ---------------------------------------------------------- */
.nrftw-front-page .wp-block-heading {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
}

.nrftw-front-page .wp-block-heading.is-style-section-header {
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.01em;
}

/* --- BILDER ---
   Full-bredd bilder utan margin
   ---------------------------------------------------------- */
.nrftw-front-page .wp-block-image.alignfull img {
  width: 100%;
  display: block;
}

/* --- GENERELLA SEKTION-PADDING ---
   Grupp-block får NRFTW standard-padding
   ---------------------------------------------------------- */
.nrftw-front-page .wp-block-group {
  padding: 80px 56px;
}

.nrftw-front-page .nrftw-hero.wp-block-group {
  padding: 0 !important;
}

@media (max-width: 768px) {
  .nrftw-front-page .wp-block-group {
    padding: 48px 20px;
  }
}
}

/* ============================================================
   RESOR — INSPIRATION (page-resor-inspiration.php)
   ============================================================ */
.inspo-hero {
  background: var(--navy);
  padding-top: 72px;
}

.inspo-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 56px 72px;
  color: #fff;
}

.inspo-hero__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 16px 0;
}

.inspo-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 9vw, 108px);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

.inspo-hero__intro {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 32px 0 0 0;
}

.inspo-grid-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 56px 112px;
}

.inspo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.inspo-card {
  background: var(--card);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}

a.inspo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(14, 28, 47, 0.10);
}

.inspo-card__image-wrap {
  height: 260px;
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
}

.inspo-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

a.inspo-card:hover .inspo-card__image {
  transform: scale(1.04);
}

.inspo-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  text-align: center;
  padding: 16px;
}

.inspo-card__content {
  padding: 28px;
}

.inspo-card__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0 0 14px 0;
}

.inspo-card__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 0.97;
  color: var(--navy);
  margin: 0 0 8px 0;
}

.inspo-card__cta-row {
  border-top: 1px solid var(--cream-dark);
  padding-top: 20px;
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.inspo-card__cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 1024px) {
  .inspo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .inspo-hero__inner {
    padding: 48px 24px 56px;
  }
  .inspo-grid-wrap {
    padding: 32px 24px 64px;
  }
  .inspo-grid {
    grid-template-columns: 1fr;
  }
}
