/* ============================================
   PROBLEM PAGE – Layout & Components
   ============================================ */

/* ---- Intro Section ---- */
.problem-intro {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.problem-intro__content {
  max-width: 780px;
  margin: 0 auto;
}

.problem-intro__content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text-heading);
  margin-bottom: 1.25rem;
}

.problem-intro__content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Disclaimer box */
.problem-disclaimer {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 1.5rem;
  background: #FFF8F0;
  border: 1px solid #F0D9BF;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
}

.problem-disclaimer svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.problem-disclaimer strong {
  color: var(--text-heading);
}

.problem-disclaimer div {
  font-size: .9375rem;
  line-height: 1.7;
}

/* ---- Common Types ---- */
.problem-types {
  padding: var(--section-pad) 0;
  background: var(--bg-primary);
}

.type-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.type-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.type-card__img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-secondary);
}

.type-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.type-card__body {
  flex: 1;
}

.type-card h3 {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: .35rem;
  font-family: 'Inter', system-ui, sans-serif;
}

.type-card p {
  font-size: .8125rem;
  line-height: 1.7;
}

.types-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.type-card--text-only {
  padding: 1.5rem 1.75rem;
}

/* ---- Treatment Methods ---- */
.problem-methods {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.methods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

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

.method-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
}

.method-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.method-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-subtle);
}

.method-card__icon svg {
  color: var(--gold);
}

/* Raster-ikoner (laserikon*, diatermiikon) i badgen: fyll cirkeln istället för liten 40px-bild, så linjerna syns tydligt. */
.method-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.method-card h3 {
  font-size: 1.25rem;
  color: var(--text-heading);
  margin-bottom: .5rem;
  font-family: 'Inter', system-ui, sans-serif;
}

.method-card__subtitle {
  font-size: .875rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.method-card p {
  font-size: .9375rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.method-card__benefits {
  list-style: none;
  text-align: left;
  padding: 0;
}

.method-card__benefits li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .5rem;
  font-size: .875rem;
  color: var(--text-body);
}

.method-card__benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---- Process Steps ---- */
.problem-process {
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
}

.process-steps {
  max-width: 700px;
  margin: 2rem auto 0;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.process-step:last-child {
  border-bottom: none;
}

.process-step__num {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
}

.process-step__content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: .5rem;
  font-family: 'Inter', system-ui, sans-serif;
}

.process-step__content p {
  font-size: .9375rem;
  line-height: 1.7;
}

/* ---- Reviews (problem page) ---- */
.problem-reviews {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.reviews-dual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

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

.review-platform {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.review-platform__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.review-platform__logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-heading);
}

.review-platform__rating {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--text-body);
}

.review-platform__rating .stars {
  color: #F5A623;
  font-size: 1rem;
}

.review-platform__cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.review-quote {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--border);
}

.review-quote p {
  font-size: .9375rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: .75rem;
  color: var(--text-body);
}

.review-quote cite {
  font-size: .8125rem;
  font-style: normal;
  font-weight: 600;
  color: var(--text-heading);
}

.review-placeholder {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 1rem;
  text-align: center;
  padding: 1.5rem 0;
}

/* ---- CTA Section ---- */
.problem-cta {
  padding: var(--section-pad) 0;
  background: var(--accent);
}

.problem-cta__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.problem-cta__content h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.problem-cta__content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.problem-cta__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.problem-cta__btns .btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.problem-cta__btns .btn-outline:hover {
  background: var(--white);
  color: var(--accent);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.problem-faq {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  font-family: 'Inter', system-ui, sans-serif;
  transition: color var(--transition);
}

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

.faq-question svg {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

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

.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: .9375rem;
  line-height: 1.8;
  color: var(--text-body);
}

/* ============================================
   BOOKING LIST (price table)
   ============================================ */
.pricing-note {
  text-align: center;
  font-size: .9375rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.booking-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  max-width: 800px;
  margin: 0 auto;
}

.booking-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition);
}

.booking-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-card);
  transform: translateX(4px);
}

.booking-item__info {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.booking-item__info strong {
  font-size: .9375rem;
  color: var(--text-heading);
}

.booking-item__info span {
  font-size: .8125rem;
  color: var(--text-body);
}

.booking-item__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

/* ============================================
   GROWTH PHASES
   ============================================ */
.growth-phases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

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

.phase-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-subtle);
}

.phase-card__header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.phase-card__num {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: .875rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.phase-card h3 {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text-heading);
  font-family: 'Inter', system-ui, sans-serif;
}

.phase-card p {
  font-size: .8125rem;
  line-height: 1.7;
}

.growth-info {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.growth-info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1.25rem;
  font-family: 'Inter', system-ui, sans-serif;
}

.growth-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.growth-info__item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: .25rem;
}

.growth-info__item p {
  font-size: .875rem;
  color: var(--text-body);
}

.growth-info__note {
  font-size: .8125rem;
  color: var(--text-body);
  font-style: italic;
}

/* ============================================
   BOOKING SELECTOR PAGE (boka-laser etc.)
   ============================================ */
.boka-hero {
  padding: calc(var(--header-h) + 3rem) 0 2rem;
  background: var(--accent);
  text-align: center;
  color: var(--white);
}

.boka-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: .5rem;
}

.boka-hero p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 1.5rem;
}

.boka-back {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: .875rem;
  color: var(--gold);
  text-decoration: none;
  transition: opacity var(--transition);
}

.boka-back:hover {
  opacity: .7;
}

/* Gender toggle */
.boka-gender {
  padding: 3rem 0 4rem;
  background: var(--bg-primary);
}

.gender-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.gender-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  cursor: pointer;
  transition: all var(--transition);
}

.gender-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(198, 162, 126, .2);
  transform: translateY(-6px);
}

.gender-card__img {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter var(--transition), transform var(--transition);
}

.gender-card:hover .gender-card__img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.gender-card__label {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: .02em;
}

/* Interactive body map */
.boka-bodymap {
  padding: 3rem 0;
  background: var(--bg-primary);
  text-align: center;
}

.bodymap-instruction {
  font-size: 1.0625rem;
  color: var(--text-body);
  margin-bottom: 2rem;
}

.bodymap-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.bodymap-img-container {
  position: relative;
  width: 240px;
  max-width: 80%;
}

.bodymap-img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

.bodymap-hotspot {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(76, 175, 80, .15);
  border: 2px solid rgba(76, 175, 80, .4);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all .25s ease;
  box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
}

.bodymap-hotspot:hover {
  background: rgba(76, 175, 80, .45);
  border-color: rgba(76, 175, 80, .9);
  box-shadow: 0 0 18px 6px rgba(76, 175, 80, .5);
  transform: translate(-50%, -50%) scale(1.15);
}

.bodymap-helkropp-btn {
  padding: .75rem 2rem;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 100px;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', system-ui, sans-serif;
}

.bodymap-helkropp-btn:hover {
  background: var(--gold);
  color: var(--white);
}

/* Tooltip */
.bodymap-tooltip {
  position: fixed;
  padding: .5rem 1rem;
  background: var(--accent);
  color: var(--white);
  font-size: .8125rem;
  font-weight: 600;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s ease;
  z-index: 1000;
  white-space: nowrap;
}

.bodymap-tooltip.visible {
  opacity: 1;
}

@media (max-width: 600px) {
  .bodymap-img-container {
    width: 180px;
  }
  .bodymap-hotspot {
    width: 30px;
    height: 30px;
  }
}

/* Results section */
.boka-results {
  padding: 3rem 0;
  background: var(--white);
  min-height: 50vh;
}

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

.boka-results__back {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: .875rem;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  transition: opacity var(--transition);
}

.boka-results__back:hover {
  opacity: .7;
}

.boka-results__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--text-heading);
  margin-bottom: .5rem;
}

.boka-results__note {
  font-size: .875rem;
  color: var(--text-body);
}

/* Booking results container (cards stack as horizontal rows) */
.boka-grid {
  max-width: 1000px;
  margin: 0 auto;
}

/* CTA */
.boka-cta {
  padding: 3.5rem 0;
  text-align: center;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

.boka-cta p {
  font-size: 1.0625rem;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

/* Responsive */
@media (max-width: 600px) {
  .area-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
  }

  .area-btn {
    padding: 1.25rem .5rem;
  }

  .area-btn__label {
    font-size: .75rem;
  }
}

/* ============================================
   FAQ — Icon category tabs
   ============================================ */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin: 0 auto 2.5rem;
  max-width: 900px;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.faq-tab {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-body);
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: none;
  transition: color var(--transition), background var(--transition);
  min-width: 90px;
}

.faq-tab svg {
  opacity: .55;
  transition: opacity var(--transition), color var(--transition);
}

.faq-tab:hover {
  color: var(--text-heading);
  background: var(--bg-secondary);
}

.faq-tab:hover svg {
  opacity: 1;
}

.faq-tab--active {
  color: var(--gold);
  background: transparent;
}

.faq-tab--active svg {
  opacity: 1;
  color: var(--gold);
}

.faq-tab--active span {
  font-weight: 600;
}

/* Content sections — hide non-active categories */
.faq-content {
  display: none;
}

.faq-content--active {
  display: block;
}

/* Mobile — make tabs smaller and 2 rows */
@media (max-width: 640px) {
  .faq-tabs {
    gap: .25rem;
    padding-bottom: 1rem;
    margin-bottom: 1.75rem;
  }
  .faq-tab {
    padding: .75rem .5rem;
    min-width: 0;
    flex: 1 1 calc(33.333% - .25rem);
    font-size: .65rem;
  }
  .faq-tab svg {
    width: 18px;
    height: 18px;
  }
}

/* ============================================
   BOKA RESULTS — Horizontal row cards
   (image left, info right, arrow far right)
   ============================================ */
.boka-card-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-heading);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  margin-bottom: .75rem;
}

.boka-card-row:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.boka-card-row__img {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.boka-card-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.boka-card-row__placeholder {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--text-body);
  text-align: center;
  padding: 0 .5rem;
  opacity: .6;
}

.boka-card-row__info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  min-width: 0;
}

.boka-card-row__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-heading);
  margin: 0;
}

.boka-card-row__meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Inter', sans-serif;
  font-size: .8125rem;
  color: var(--text-body);
}

.boka-card-row__time {
  font-weight: 400;
}

.boka-card-row__dot {
  opacity: .5;
}

.boka-card-row__price {
  font-weight: 600;
  color: var(--gold);
}

.boka-card-row__arrow {
  flex-shrink: 0;
  color: var(--text-body);
  opacity: .4;
  transition: opacity var(--transition), transform var(--transition), color var(--transition);
}

.boka-card-row:hover .boka-card-row__arrow {
  opacity: 1;
  color: var(--gold);
  transform: translateX(4px);
}

/* Mobile — smaller image */
@media (max-width: 640px) {
  .boka-card-row {
    gap: 1rem;
    padding: .75rem .875rem;
  }
  .boka-card-row__img {
    width: 80px;
    height: 80px;
  }
  .boka-card-row__title {
    font-size: .95rem;
  }
  .boka-card-row__meta {
    font-size: .75rem;
  }
  .boka-card-row__arrow {
    display: none;
  }
  .boka-card-row__placeholder {
    font-size: .6rem;
  }
}

/* ============================================
   BEHANDLING CARDS — Vertical layout with moment icons
   (reusable across treatment pages)
   ============================================ */
.section-intro {
  max-width: 720px;
  margin: 1rem auto 0;
  font-size: .95rem;
  line-height: 1.65;
  color: var(--text-body);
  text-align: center;
}

.behandling-cards-list {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
}

.behandling-card-vertical {
  position: relative;
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  margin-bottom: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
}

.behandling-card-vertical__stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: .9rem;
  margin: .25rem 0 .5rem;
}

.behandling-card-vertical__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
}

.behandling-card-vertical:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(31, 45, 42, 0.06);
}

.behandling-card-vertical__image {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  background: var(--bg-secondary);
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.behandling-card-vertical__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.behandling-card-vertical__header h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--text-heading);
  margin: 0 0 0.4rem 0;
  font-weight: 600;
}

.behandling-card-vertical__meta {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: 0.95rem;
}

.behandling-card-vertical__meta .price {
  font-weight: 700;
  color: var(--text-heading);
  font-size: 1.05rem;
}

.behandling-card-vertical__meta .price-old {
  text-decoration: line-through;
  color: #999;
  font-weight: 400;
  font-size: 0.9rem;
  margin-right: 0.4rem;
}

.behandling-card-vertical__description {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

/* Ikon-raden */
.moment-icons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.moment-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  min-width: 48px;
  flex: 0 0 auto;
}

.moment-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.moment-icon span {
  font-size: 0.65rem;
  color: var(--text-heading);
  text-align: center;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.behandling-card-vertical__arrow {
  align-self: center;
  flex-shrink: 0;
  color: #ccc;
  font-size: 1.2rem;
}

/* Mobile: stack image on top */
@media (max-width: 640px) {
  .behandling-card-vertical {
    flex-direction: column;
  }
  .behandling-card-vertical__image {
    width: 100%;
    height: 160px;
  }
  .moment-icons {
    gap: 0.4rem;
  }
  .moment-icon {
    min-width: 44px;
  }
  .moment-icon img {
    width: 42px;
    height: 42px;
  }
  .moment-icon span {
    font-size: 0.6rem;
  }
}

/* ============================================
   BEHANDLING KATEGORIER — för pormaskar.html m.fl.
   ============================================ */
.behandling-kategori {
  margin-bottom: 4rem;
}

.behandling-kategori__title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--text-heading);
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.behandling-kategori__intro {
  max-width: 720px;
  margin: -1rem 0 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-body);
}

@media (max-width: 640px) {
  .behandling-kategori__title {
    font-size: 1.6rem;
  }
}

/* Placeholder för behandlingskort där bild saknas */
.behandling-card-vertical__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #b8a89a;
  font-size: 0.85rem;
  font-style: italic;
  padding: 0.5rem;
}

/* ============================================
   INFO-NOTIS — beige ruta med guld-streck
   ============================================ */
.info-notis {
  background: var(--bg-secondary);
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2.5rem;
}

.info-notis p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-heading);
}

.info-notis strong {
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 640px) {
  .info-notis {
    padding: 1rem 1.25rem;
  }
  .info-notis p {
    font-size: 0.9rem;
  }
}

/* ============================================
   MODAL-SYSTEM — Behandlingsval
   ============================================ */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: modal-fade-in 0.2s ease-out;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 45, 42, 0.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal__content {
  position: relative;
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 2.5rem 2rem 2rem;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: modal-slide-up 0.25s ease-out;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: var(--text-heading);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal__close:hover {
  background: var(--bg-secondary);
}

.modal__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--text-heading);
  margin: 0 0 0.5rem;
  padding-right: 2rem;
}

.modal__subtitle {
  font-size: 0.95rem;
  color: var(--text-heading);
  opacity: 0.75;
  margin: 0 0 1.5rem;
}

.modal__options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-heading);
  transition: border-color 0.2s, transform 0.15s, background 0.2s;
}

.modal__option:hover {
  border-color: var(--gold);
  background: var(--bg-primary);
  transform: translateY(-1px);
}

.modal__option-info {
  flex: 1;
}

.modal__option h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin: 0 0 0.25rem;
  color: var(--text-heading);
}

.modal__option-meta {
  display: block;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 500;
}

/* Modal-detail-block (Passar dig som / Detta får du / Resultat) – kompakt typografi inuti modaler */
.modal__details {
  margin-top: 1.5rem;
}
.modal__details h4 {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-heading);
  margin: 1.25rem 0 .5rem;
}
.modal__details h4:first-child {
  margin-top: 0;
}
.modal__details ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
}
.modal__details li {
  font-size: .875rem;
  line-height: 1.55;
  color: var(--text-body);
  margin-bottom: .25rem;
}

.modal__option-note {
  display: block;
  font-size: 0.85rem;
  color: var(--text-heading);
  opacity: 0.8;
  margin-top: 0.7rem;
  line-height: 1.6;
}

.modal__note-intro {
  display: block;
  font-weight: 600;
  color: var(--text-heading);
  opacity: 1;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
}

.modal__bullet {
  display: block;
  position: relative;
  padding-left: 1rem;
  margin-top: 0.55rem;
  font-size: 0.85rem;
  line-height: 1.55;
}

.modal__bullet::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

.modal__bullet em {
  font-style: normal;
  color: var(--gold);
  font-weight: 500;
}

.modal__option-arrow {
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}

@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modal-slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .modal__content {
    padding: 2rem 1.25rem 1.5rem;
    max-height: 85vh;
  }
  .modal__title {
    font-size: 1.35rem;
  }
  .modal__option {
    padding: 1rem;
  }
  .modal__option h3 {
    font-size: 1rem;
  }
}

/* Förhindra scroll bakom modal */
body.modal-open {
  overflow: hidden;
}

/* Tillbaka-knapp i modal — forest green, vit text */
.modal__back-btn {
  display: block;
  margin: 1.75rem auto 0;
  padding: 0.9rem 2.5rem;
  background: var(--text-heading);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  min-width: 180px;
}

.modal__back-btn:hover {
  background: #2a3a36;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .modal__back-btn {
    width: 100%;
    margin-top: 1.5rem;
  }
}
