/* ============================================
   OWL LODGES — Design System & Styles
   ============================================ */
.booking-sidebar__trust{
	margin-bottom: 20px;
}
  .woocommerce ul.products li.product .woocommerce-loop-product__title{
	padding: 0.7em !important;
}
/* --- Custom Properties --- */
:root {
  --color-primary: #101f38;
  --color-primary-dark: #101f38;
  --color-primary-light: #1b3258;
  --color-accent: #C9954C;
  --color-accent-dark: #A87A3A;
  --color-accent-light: #DABB82;
  --color-bg: #FAF7F2;
  --color-bg-alt: #edeef2;
  --color-surface: #FFFFFF;
  --color-text: #2B2B2B;
  --color-text-light: #6B6B6B;
  --color-text-inv: #FFFFFF;
  --color-sage: #e6e7ed;
  --color-sage-dark: #c8cad6;
  --color-border: #d5d7de;
  --color-error: #C0392B;
  --color-success: #27AE60;

  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;

  --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --fs-sm: clamp(0.8125rem, 0.77rem + 0.25vw, 0.9375rem);
  --fs-base: clamp(0.9375rem, 0.88rem + 0.3vw, 1.0625rem);
  --fs-md: clamp(1.125rem, 1rem + 0.5vw, 1.3125rem);
  --fs-lg: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  --fs-xl: clamp(2rem, 1.5rem + 2vw, 3rem);
  --fs-xxl: clamp(2.5rem, 1.8rem + 3vw, 4rem);

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 100vw;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 50px rgba(0,0,0,0.15);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  --header-h: 72px;
  --max-w: 1280px;
  --max-w-narrow: 900px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + var(--utility-h, 0px));
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--color-accent); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary-dark);
}

h1 { font-size: var(--fs-xxl); }
h2 { font-size: var(--fs-xl); }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); }

p + p { margin-top: var(--space-md); }

ul, ol { list-style: none; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

button { cursor: pointer; }

::selection {
  background: var(--color-accent-light);
  color: var(--color-primary-dark);
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--max-w-narrow);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.section {
  padding: var(--space-3xl) 0;
}

.section--alt {
  background: var(--color-sage);
}

.section--dark {
  background: var(--color-primary-dark);
  color: var(--color-text-inv);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-text-inv);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}

.section__subtitle {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.section__title {
  margin-bottom: var(--space-md);
}

.section__desc {
  color: var(--color-text-light);
  font-size: var(--fs-md);
}

.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.85em 2em;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-surface);
}
.btn--primary:hover {
  background: var(--color-accent-dark);
  color: var(--color-surface);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: var(--color-primary);
  color: var(--color-text-inv);
}
.btn--secondary:hover {
  background: var(--color-primary-dark);
  color: var(--color-text-inv);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}
.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-text-inv);
}

.btn--lg {
  padding: 1.1em 2.6em;
  font-size: var(--fs-base);
}

.btn--sm {
  padding: 0.6em 1.4em;
  font-size: var(--fs-xs);
}

.btn--icon svg {
  width: 1.1em;
  height: 1.1em;
  fill: currentColor;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: var(--utility-h, 0px); left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--color-primary-dark);
  transition: box-shadow var(--transition-base);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.site-header.is-scrolled .nav__link {
  color: var(--color-text-inv);
}

.site-header.is-scrolled .header__logo {
  color: var(--color-text-inv);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo img {
  height: 52px;
  width: auto;
}

.nav { display: flex; align-items: center; gap: var(--space-xl); }

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text-inv);
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

.nav__cta { margin-left: var(--space-sm); }

.nav__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.nav__link:hover .nav__icon { opacity: 1; }

.nav__mobile-logo { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-inv);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.site-header.is-scrolled .hamburger span {
  background: var(--color-text-inv);
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-primary-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,31,56,0.4) 0%, rgba(16,31,56,0.7) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--header-h) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
  max-width: 820px;
}

.hero__title {
  color: var(--color-text-inv);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero__subtitle {
  color: rgba(255,255,255,0.9);
  font-size: var(--fs-md);
  margin-bottom: var(--space-xl);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Availability Checker --- */
.availability {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  max-width: 740px;
  margin: 0 auto;
}

.availability__form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: var(--space-md);
  align-items: end;
}

.availability__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.availability__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
}

.availability__input {
  padding: 0.75em 1em;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition-fast);
  width: 100%;
}

.availability__input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.availability__btn {
  padding: 0.78em 1.8em;
  align-self: flex-end;
}

.availability--hero {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.availability--hero.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Trust Bar --- */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-lg) 0;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text-light);
}

.trust-bar__icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
}

.trust-bar__stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent);
}

/* --- Lodge Cards --- */
.lodges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.lodge-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.lodge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.lodge-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.lodge-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.lodge-card:hover .lodge-card__image img {
  transform: scale(1.04);
}

.lodge-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--color-accent);
  color: var(--color-surface);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 0.3em 0.9em;
  border-radius: var(--radius-full);
}

.lodge-card__price {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  background: rgba(0,0,0,0.7);
  color: var(--color-text-inv);
  padding: 0.4em 1em;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.lodge-card__price strong {
  font-size: var(--fs-md);
  color: var(--color-accent-light);
}

.lodge-card__body {
  padding: var(--space-lg);
}

.lodge-card__name {
  margin-bottom: var(--space-xs);
}

.lodge-card__tagline {
  color: var(--color-text-light);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-md);
}

.lodge-card__features {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.lodge-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-sm);
  color: var(--color-text-light);
}

.lodge-card__feature svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--color-primary);
}

/* --- Experience Strip --- */
.experiences {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-md) 0;
  scrollbar-width: none;
}

.experiences::-webkit-scrollbar { display: none; }

.experience-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.experience-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.experience-card:hover img {
  transform: scale(1.06);
}

.experience-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
}

.experience-card__title {
  color: var(--color-text-inv);
  font-size: var(--fs-md);
  font-family: var(--font-heading);
}

.experience-card__desc {
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-sm);
  margin-top: var(--space-xs);
}

.experiences-wrap { position: relative; }

.experiences-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-primary-dark);
  transition: all var(--transition-fast);
  opacity: 0;
  visibility: hidden;
}

.experiences-wrap:hover .experiences-nav,
.experiences-nav:focus-visible {
  opacity: 1;
  visibility: visible;
}

.experiences-nav:hover {
  background: var(--color-primary-dark);
  color: white;
  border-color: var(--color-primary-dark);
}

.experiences-nav svg { width: 18px; height: 18px; }
.experiences-nav--prev { left: -16px; }
.experiences-nav--next { right: -16px; }

@media (max-width: 768px) {
  .experiences-nav { display: none; }
}

/* --- Why Book Direct --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.benefit {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.benefit__icon {
  width: 56px; height: 56px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sage);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
}

.benefit__icon svg {
  width: 28px; height: 28px;
}

.benefit__title {
  margin-bottom: var(--space-xs);
}

.benefit__desc {
  color: var(--color-text-light);
  font-size: var(--fs-sm);
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.testimonial__text {
  font-size: var(--fs-base);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
  color: var(--color-text);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-sage);
}

.testimonial__name {
  font-weight: 600;
  font-size: var(--fs-sm);
}

.testimonial__date {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
}

/* --- Gallery Mosaic --- */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: var(--space-sm);
}

.gallery-mosaic__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-mosaic__item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gallery-mosaic__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-mosaic__item:hover img {
  transform: scale(1.04);
}

.gallery-mosaic__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition-base);
}

.gallery-mosaic__item:hover::after {
  background: rgba(0,0,0,0.1);
}

/* --- Map Section --- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%; height: 100%;
  border: 0;
}

.map-distances {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.map-distance {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-surface);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.map-distance svg {
  width: 18px; height: 18px;
  color: var(--color-accent);
}

/* --- FAQ --- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.is-open {
  border-color: var(--color-accent);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  font-size: var(--fs-base);
  font-weight: 600;
  text-align: left;
  background: var(--color-surface);
  cursor: pointer;
  gap: var(--space-md);
}

.faq-item__icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--color-accent);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item__answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  background: var(--color-primary-dark);
  color: var(--color-text-inv);
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-banner__title {
  color: var(--color-text-inv);
  margin-bottom: var(--space-md);
}

.cta-banner__desc {
  color: rgba(255,255,255,0.8);
  font-size: var(--fs-md);
  margin-bottom: var(--space-xl);
}

/* --- Footer --- */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand {
  margin-bottom: var(--space-md);
}

.footer__brand img {
  height: 48px;
  width: auto;
}

.footer__desc {
  font-size: var(--fs-sm);
  line-height: 1.7;
  max-width: 320px;
}

.footer__heading {
  color: var(--color-text-inv);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-sm);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-accent);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* --- Lodge Detail Page --- */
.lodge-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.lodge-hero__bg {
  position: absolute;
  inset: 0;
}

.lodge-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.lodge-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16,31,56,0.7) 0%, rgba(16,31,56,0.2) 50%, transparent 100%);
}

.lodge-hero__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: var(--space-2xl) var(--space-lg);
  max-width: var(--max-w);
  margin: 0 auto;
}

.lodge-hero__title {
  color: var(--color-text-inv);
  margin-bottom: var(--space-xs);
}

.lodge-hero__tagline {
  color: rgba(255,255,255,0.9);
  font-size: var(--fs-md);
}

.lodge-detail {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-2xl);
  align-items: start;
}

.lodge-detail__main { min-width: 0; }

/* Stats bar */
.lodge-stats {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.lodge-stat {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-sm);
  font-weight: 600;
}

.lodge-stat svg {
  width: 22px; height: 22px;
  color: var(--color-primary);
}

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
}

.amenity {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  font-size: var(--fs-sm);
}

.amenity svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--color-primary);
}

/* Booking sidebar */
.booking-sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--utility-h, 0px) + var(--space-lg));
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.booking-sidebar__price {
  font-size: var(--fs-lg);
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-xs);
}

.booking-sidebar__price span {
  font-size: var(--fs-sm);
  font-family: var(--font-body);
  color: var(--color-text-light);
  font-weight: 400;
}

.booking-sidebar__scarcity {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-xs);
  color: var(--color-error);
  font-weight: 600;
  margin-bottom: var(--space-md);
  background: #fef2f0;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
}

.booking-sidebar__calendar .wpbs-main-wrapper .wpbs-form-fields {
  grid-template-columns: 1fr;
  padding: var(--space-md);
  margin-top: var(--space-md);
}

.booking-sidebar__trust {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  font-size: var(--fs-xs);
  color: var(--color-text-light);
}

.booking-sidebar__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.booking-sidebar__trust-item svg {
  width: 16px; height: 16px;
  color: var(--color-success);
  flex-shrink: 0;
}

.booking-sidebar__book-both {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-primary);
  font-size: var(--fs-sm);
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.booking-sidebar__book-both:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}
.booking-sidebar__book-both svg {
  width: 20px; height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
}
.booking-sidebar__book-both strong {
  display: block;
  font-size: var(--fs-sm);
  color: var(--color-accent);
}

.booking-sidebar--page .booking-sidebar__trust {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.booking-sidebar__heading {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-md);
}

.booking-sidebar__help {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  font-size: var(--fs-sm);
  color: var(--color-text-light);
}
.booking-sidebar__help svg {
  width: 18px; height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}
.booking-sidebar__help a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}
.booking-sidebar__help a:hover {
  text-decoration: underline;
}

/* Gallery thumbnails */
.lodge-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.lodge-gallery__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.lodge-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), opacity var(--transition-base);
}

.lodge-gallery__item:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Story section */
.lodge-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.lodge-story__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.lodge-story__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* --- Booking Page --- */
.booking-page {
  padding-top: calc(var(--header-h) + var(--space-2xl));
  min-height: 100vh;
}

.booking-progress {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  padding: 0 var(--space-lg);
}

.booking-progress__step {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text-light);
}

.booking-progress__step.is-active {
  color: var(--color-primary);
}

.booking-progress__step.is-done {
  color: var(--color-success);
}

.booking-progress__number {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  font-weight: 700;
  border: 2px solid var(--color-border);
  background: var(--color-surface);
  transition: all var(--transition-base);
}

.booking-progress__step.is-active .booking-progress__number {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-text-inv);
}

.booking-progress__step.is-done .booking-progress__number {
  border-color: var(--color-success);
  background: var(--color-success);
  color: var(--color-text-inv);
}

.booking-progress__line {
  width: 60px;
  height: 2px;
  background: var(--color-border);
  align-self: center;
}

.booking-progress__line.is-done {
  background: var(--color-success);
}

.booking-step {
  display: block;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-2xl);
  align-items: start;
  padding-bottom: var(--space-3xl);
}

/* Calendar */
.calendar {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.calendar__month {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
}

.calendar__nav {
  display: flex;
  gap: var(--space-xs);
}

.calendar__nav-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.calendar__nav-btn:hover {
  border-color: var(--color-primary);
  background: var(--color-sage);
}

.calendar__nav-btn svg {
  width: 16px; height: 16px;
}

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}

.calendar__day-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--color-text-light);
  padding: var(--space-sm) 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calendar__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.calendar__day:hover:not(.is-disabled):not(.is-booked) {
  background: var(--color-sage);
}

.calendar__day.is-today {
  font-weight: 700;
  border: 1.5px solid var(--color-primary);
}

.calendar__day.is-selected {
  background: var(--color-primary);
  color: var(--color-text-inv);
  font-weight: 600;
}

.calendar__day.is-in-range {
  background: var(--color-sage-dark);
}

.calendar__day.is-booked {
  color: var(--color-border);
  text-decoration: line-through;
  cursor: not-allowed;
}

.calendar__day.is-disabled {
  color: var(--color-border);
  cursor: default;
}

/* Price summary sidebar */
.price-summary {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  position: sticky;
  top: calc(var(--header-h) + var(--space-lg));
}

.price-summary__lodge {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.price-summary__lodge-img {
  width: 80px; height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.price-summary__lodge-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.price-summary__lodge-name {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
}

.price-summary__lodge-rating {
  font-size: var(--fs-xs);
  color: var(--color-accent);
}

.price-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-sm);
  padding: var(--space-xs) 0;
}

.price-summary__total {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-md);
  font-weight: 700;
  padding: var(--space-md) 0 0;
  margin-top: var(--space-sm);
  border-top: 2px solid var(--color-primary-dark);
}

/* Guest form */
.guest-form {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.form-input {
  width: 100%;
  padding: 0.75em 1em;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-base);
  background: var(--color-bg);
  transition: border-color var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* Success modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  backdrop-filter: blur(4px);
}

.modal-overlay.is-open {
  display: flex;
}

.modal {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  max-width: 500px;
  width: 100%;
  text-align: center;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal__icon {
  width: 72px; height: 72px;
  margin: 0 auto var(--space-lg);
  background: #e8f8ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-success);
}

.modal__icon svg {
  width: 36px; height: 36px;
}

.modal__title {
  margin-bottom: var(--space-sm);
}

.modal__text {
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  animation: modalIn 0.3s ease;
}

.lightbox__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.lightbox__nav:hover { background: rgba(255,255,255,0.2); }
.lightbox__nav--prev { left: var(--space-lg); }
.lightbox__nav--next { right: var(--space-lg); }

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-children.is-visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-children.is-visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-children.is-visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-children.is-visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-children.is-visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.reveal-children.is-visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* --- Sticky Bottom CTA Bar --- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--color-surface);
  padding: 12px var(--space-lg) calc(12px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
  justify-content: space-between;
  align-items: center;
}

.mobile-cta__price {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  color: var(--color-primary-dark);
  line-height: 1.2;
}

.mobile-cta__price span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--color-text-light);
  display: block;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .lodges-grid { gap: var(--space-lg); }
  .lodge-detail { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .booking-layout { grid-template-columns: 1fr; }
  .lodge-story { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery-mosaic { grid-template-rows: repeat(2, 200px); }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --space-3xl: 4rem;
    --space-4xl: 5rem;
  }

  .nav__list {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #101f38;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl) var(--space-lg);
    gap: var(--space-xs);
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav__list::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }

  .nav__list > li {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
  }

  .nav__list.is-open {
    transform: translateX(0);
    opacity: 1;
  }

  .nav__mobile-logo {
    display: block;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    text-align: center;
  }

  .nav__mobile-logo img {
    height: 44px;
    width: auto;
    display: inline-block;
  }

  .nav__list .nav__link {
    color: rgba(255,255,255,0.85);
    font-size: var(--fs-md);
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    transition: color 0.2s ease;
  }

  .nav__list .nav__link:hover,
  .nav__list .nav__link.is-active {
    color: var(--color-accent);
  }

  .nav__list .nav__link .nav__icon {
    width: 22px;
    height: 22px;
    opacity: 1;
  }

  .nav__list .nav__link::after { display: none; }

  .nav__cta { margin-left: 0; margin-top: var(--space-md); }

  .hamburger { display: flex; z-index: 1001; }

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

  .lodges-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
  }

  .gallery-mosaic__item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

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

  .footer__grid { grid-template-columns: 1fr; gap: var(--space-xl); }

  .mobile-cta { display: flex; padding: 14px var(--space-md) calc(14px + env(safe-area-inset-bottom, 0px)); }
  .booking-sidebar { display: none; }

  .lodge-hero { height: 50vh; min-height: 380px; }

  .booking-progress { gap: var(--space-sm); }
  .booking-progress__line { width: 30px; }

  .form-row { grid-template-columns: 1fr; }

  .experience-card { flex: 0 0 200px; }

  .map-container { height: 300px; }

  .calendar-dual {
    grid-template-columns: 1fr !important;
  }

  .site-footer {
    padding-bottom: calc(var(--space-xl) + 70px);
  }

  .booking-step {
    animation: stepFadeIn 0.4s ease;
  }

  .availability--hero { display: none; }

  .hero { min-height: 80vh; min-height: 80dvh; }

  .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: var(--space-3xl);
  }

  .share-btn { display: none; }
}

@media (max-width: 480px) {
  .hero__content { padding-left: var(--space-md); padding-right: var(--space-md); }
  .trust-bar { gap: var(--space-md); }
  .trust-bar__item { font-size: var(--fs-xs); }
}

/* --- Focus Styles --- */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(201,149,76,0.25);
}

.form-input:focus-visible,
.availability__input:focus-visible {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201,149,76,0.15);
}

/* --- Disabled Button --- */
.btn:disabled,
.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* --- Booking Step Animation --- */
@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}


/* --- Toast Notification --- */
.toast {
  position: fixed;
  bottom: var(--space-xl);
  left: var(--space-lg);
  z-index: 1500;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  max-width: 380px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  pointer-events: none;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fef9f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}

.toast__icon svg {
  width: 20px;
  height: 20px;
}

.toast__body {
  flex: 1;
  min-width: 0;
}

.toast__title {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}

.toast__text {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
}

.toast__close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--color-text-light);
  cursor: pointer;
  transition: background var(--transition-fast);
  flex-shrink: 0;
}

.toast__close:hover {
  background: var(--color-sage);
}


/* --- Chatbot --- */
.chatbot { position: fixed; bottom: var(--space-lg); right: var(--space-lg); z-index: 1400; }

.chatbot__trigger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary-dark);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.chatbot__trigger:hover { transform: scale(1.08); box-shadow: var(--shadow-xl); }
.chatbot__trigger svg { width: 26px; height: 26px; }

.chatbot__panel {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 370px;
  max-height: 520px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9) translateY(12px);
  opacity: 0;
  visibility: hidden;
  transform-origin: bottom right;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.chatbot__panel.is-open {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
}

.chatbot__header {
  background: var(--color-primary-dark);
  color: white;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.chatbot__header-info { display: flex; align-items: center; gap: var(--space-sm); }

.chatbot__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.chatbot__name { font-weight: 700; font-size: var(--fs-sm); }
.chatbot__status { font-size: 0.7rem; opacity: 0.7; }

.chatbot__close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 var(--space-xs);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.chatbot__close:hover { opacity: 1; }

.chatbot__messages {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  min-height: 240px;
  max-height: 320px;
  background: var(--color-bg);
}

.chatbot__msg { display: flex; max-width: 85%; }

.chatbot__msg--bot { align-self: flex-start; }
.chatbot__msg--user { align-self: flex-end; }

.chatbot__msg-text {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  line-height: 1.5;
}

.chatbot__msg--bot .chatbot__msg-text {
  background: var(--color-surface);
  color: var(--color-text);
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-xs);
}

.chatbot__msg--user .chatbot__msg-text {
  background: var(--color-primary-dark);
  color: white;
  border-bottom-right-radius: 4px;
}

.chatbot__msg--typing .chatbot__msg-text::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-text-light);
  animation: chatDots 1.2s infinite;
  margin-left: 2px;
  box-shadow: 8px 0 0 var(--color-text-light), 16px 0 0 var(--color-text-light);
}

@keyframes chatDots {
  0%, 60%, 100% { opacity: 0.3; }
  30% { opacity: 1; }
}

.chatbot__quick-replies {
  padding: var(--space-xs) var(--space-lg) var(--space-sm);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.chatbot__quick-btn {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--color-primary-dark);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-weight: 600;
  white-space: nowrap;
}

.chatbot__quick-btn:hover {
  background: var(--color-primary-dark);
  color: white;
  border-color: var(--color-primary-dark);
}

.chatbot__input {
  display: flex;
  padding: var(--space-sm) var(--space-md);
  gap: var(--space-xs);
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
  flex-shrink: 0;
}

.chatbot__input input {
  flex: 1;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: var(--space-xs) var(--space-md);
  font-size: var(--fs-sm);
  outline: none;
  font-family: inherit;
  background: var(--color-bg);
}

.chatbot__input input:focus { border-color: var(--color-primary); }

.chatbot__send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary-dark);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
  flex-shrink: 0;
}

.chatbot__send:hover { background: var(--color-primary); }
.chatbot__send svg { width: 16px; height: 16px; }


/* --- Share Button --- */
.share-btn {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  color: var(--color-primary);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.share-btn:hover {
  background: var(--color-surface);
  transform: scale(1.1);
}

.share-btn svg {
  width: 18px;
  height: 18px;
}

/* --- Animated Counter --- */
.count-up {
  display: inline-block;
}

/* --- Hamper Upsell --- */
.hamper-upsell {
  background: linear-gradient(135deg, #fef9f0, #fdf3e3);
  border: 1.5px solid var(--color-accent-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-top: var(--space-lg);
}

.hamper-upsell__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-weight: 700;
  color: var(--color-primary-dark);
}

.hamper-upsell__header svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}

.hamper-upsell__desc {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.hamper-upsell__check {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-primary-dark);
}

.hamper-upsell__check input {
  accent-color: var(--color-accent);
  width: 20px;
  height: 20px;
}

/* --- Leaflet Map --- */
.leaflet-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-md);
  z-index: 0;
}

@media (max-width: 768px) {
  .leaflet-map { height: 300px; }
  .toast { left: var(--space-md); right: var(--space-md); max-width: none; bottom: 80px; }
  .chatbot { bottom: 72px; right: var(--space-md); }
  .chatbot__panel { width: calc(100vw - var(--space-lg) * 2); right: 0; bottom: 64px; max-height: 65vh; }
}

/* --- Legal Content (Terms, Privacy) --- */
.legal-content h2 {
  font-size: var(--fs-md);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.legal-content ul {
  margin: 0 0 var(--space-md) var(--space-lg);
  list-style: disc;
}

.legal-content li {
  margin-bottom: var(--space-xs);
  line-height: 1.7;
}

.legal-content a {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--color-accent);
}

/* --- Blog --- */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  text-decoration: none;
  color: inherit;
}

.blog-featured:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: inherit;
}

.blog-featured__image {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.blog-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-featured:hover .blog-featured__image img {
  transform: scale(1.03);
}

.blog-featured__content {
  padding: var(--space-xl);
}

.blog-featured__title {
  font-size: var(--fs-lg);
  margin: var(--space-sm) 0 var(--space-md);
  line-height: 1.25;
}

.blog-featured__excerpt {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.blog-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: inherit;
}

.blog-card__image {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__category {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-dark);
  margin-bottom: var(--space-xs);
}

.blog-card__title {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  flex: 1;
}

.blog-card__meta {
  display: flex;
  gap: var(--space-xs);
  font-size: var(--fs-xs);
  color: var(--color-text-light);
}

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

@media (max-width: 768px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured__content {
    padding: var(--space-lg);
  }

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

/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-2xl);
  flex-wrap: wrap;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.blog-pagination a {
  background: var(--color-surface);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.blog-pagination a:hover {
  background: var(--color-primary);
  color: var(--color-text-inv);
}

.blog-pagination .current {
  background: var(--color-primary);
  color: var(--color-text-inv);
}

/* --- Single Post --- */
.single-post__hero {
  position: relative;
  width: 100%;
  height: 420px;
  margin-top: calc(var(--header-h) + var(--utility-h, 0px));
  overflow: hidden;
}

.single-post__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.15) 100%);
}

.single-post__header {
  padding: var(--space-2xl) 0 var(--space-xl);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-xl);
}

.single-post__title {
  font-size: var(--fs-xl);
  line-height: 1.2;
  margin: var(--space-sm) 0 var(--space-md);
}

.single-post__meta {
  display: flex;
  gap: var(--space-xs);
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  align-items: center;
}

.single-post__content {
  padding-bottom: var(--space-2xl);
}

.single-post__content h2 {
  font-size: var(--fs-lg);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.single-post__content h3 {
  font-size: var(--fs-md);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.single-post__content p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.single-post__content ul,
.single-post__content ol {
  margin: 0 0 var(--space-md) var(--space-lg);
}

.single-post__content li {
  margin-bottom: var(--space-xs);
  line-height: 1.7;
}

.single-post__content a {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

.single-post__content a:hover {
  color: var(--color-accent);
}

.single-post__content img {
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
}

.single-post__content blockquote {
  border-left: 3px solid var(--color-accent);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  background: var(--color-sage);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--color-text-light);
}

.single-post__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-border);
  margin-bottom: var(--space-xl);
}

.single-post__nav-link {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.single-post__nav-link:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: inherit;
}

.single-post__nav-link--next {
  text-align: right;
}

.single-post__nav-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-dark);
}

.single-post__nav-title {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  color: var(--color-primary);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .single-post__hero {
    height: 260px;
  }

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

/* --- Utility Bar (phone number prominence) --- */
:root {
  --utility-h: 0px;
}
body.has-utility-bar {
  --utility-h: 32px;
}
.utility-bar {
  background: var(--color-primary-dark, #101f38);
  color: var(--color-text-inv);
  font-size: var(--fs-xs);
  padding: 0.35rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--utility-h);
}
.utility-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.utility-bar__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-accent);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.utility-bar__phone:hover {
  color: var(--color-accent-light, #DABB82);
}
.utility-bar__phone svg {
  flex-shrink: 0;
}
.utility-bar__tagline {
  color: rgba(255,255,255,0.6);
  display: none;
}
@media (min-width: 768px) {
  .utility-bar__tagline {
    display: block;
  }
}

/* --- Lodge select card (booking page) --- */
.lodge-select-card {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  cursor: pointer;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  text-align: center;
}
.lodge-select-card:hover,
.lodge-select-card.is-selected {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201,149,76,0.15);
}
.lodge-select-card.is-selected {
  background: rgba(201,149,76,0.04);
}

/* --- Booking placeholder --- */
.booking-placeholder {
  background: var(--color-sage);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  color: var(--color-text-light);
  font-style: italic;
}

/* --- WP Booking System calendar overrides --- */
.wpbs-container .wpbs-calendar {
  font-family: var(--font-body) !important;
}
.wpbs-container .wpbs-calendar-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* --- WP Booking System form overrides --- */
.wpbs-main-wrapper .wpbs-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-md);
  margin-top: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-surface);
  border: 1px solid rgba(16, 31, 56, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.wpbs-main-wrapper .wpbs-form-field {
  display: flex;
  flex-direction: column;
}
.wpbs-main-wrapper .wpbs-form-field-textarea,
.wpbs-main-wrapper .wpbs-form-general-error {
  grid-column: 1 / -1;
}
.wpbs-main-wrapper .wpbs-form-field-label label {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}
.wpbs-main-wrapper .wpbs-field-required-asterisk {
  color: var(--color-accent);
  margin-left: 0.15em;
  font-weight: 400;
}
.wpbs-main-wrapper .wpbs-form-field-input input[type="text"],
.wpbs-main-wrapper .wpbs-form-field-input input[type="email"],
.wpbs-main-wrapper .wpbs-form-field-input input[type="tel"],
.wpbs-main-wrapper .wpbs-form-field-input textarea,
.wpbs-main-wrapper .wpbs-form-field-input select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--color-primary);
  background: var(--color-bg);
  border: 1.5px solid rgba(16, 31, 56, 0.15);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
}
.wpbs-main-wrapper .wpbs-form-field-input input:focus,
.wpbs-main-wrapper .wpbs-form-field-input textarea:focus,
.wpbs-main-wrapper .wpbs-form-field-input select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 149, 76, 0.15);
}
.wpbs-main-wrapper .wpbs-form-field-input textarea {
  min-height: 5rem;
  resize: vertical;
}
.wpbs-main-wrapper .wpbs-form-general-error {
  margin: 0;
  padding: 0.6rem 0.85rem;
  font-size: var(--fs-sm);
  color: #b44;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
}
.wpbs-main-wrapper .wpbs-submit-wrapper,
.wpbs-main-wrapper .wpbs-form-field-submit {
  grid-column: 1 / -1;
}
.wpbs-main-wrapper input[type="submit"],
.wpbs-main-wrapper button.wpbs-submit {
  display: inline-block;
  width: 100%;
  padding: 0.8rem 2rem;
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 600;
  color: #fff;
  background: var(--color-accent);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.wpbs-main-wrapper input[type="submit"]:hover,
.wpbs-main-wrapper button.wpbs-submit:hover {
  background: var(--color-accent-dark, #A87A3A);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.wpbs-main-wrapper input[type="submit"]:active,
.wpbs-main-wrapper button.wpbs-submit:active {
  transform: translateY(0);
}
@media (max-width: 600px) {
  .wpbs-main-wrapper .wpbs-form-fields {
    grid-template-columns: 1fr;
    padding: var(--space-md);
  }
}

/* --- Gap-fill toast variant --- */
.toast--gapfill .toast__icon svg {
  stroke: var(--color-accent);
}
.toast--gapfill .toast__title {
  color: var(--color-accent);
  font-weight: 700;
}
.toast--gapfill .toast__cta {
  display: inline-block;
  margin-top: 0.35rem;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: underline;
  font-size: var(--fs-sm);
}

/* --- Admin gap-fill demo button --- */
.admin-gapfill-demo {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 2000;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--color-primary, #101f38);
  color: #fff;
  border: 2px solid var(--color-accent, #C9954C);
  border-radius: 6px;
  font-family: var(--font-body, 'Source Sans 3', sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.admin-gapfill-demo:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.admin-gapfill-demo:active {
  transform: translateY(0);
}
.admin-gapfill-demo svg {
  stroke: var(--color-accent, #C9954C);
  flex-shrink: 0;
}

/* --- Post-booking experience upsell (WooCommerce thank-you page) --- */
.owl-upsell {
  margin: 2.5rem 0 1rem;
  padding: 2rem 0 0;
  border-top: 1px solid var(--color-border, #d5d7de);
}
.owl-upsell__header {
  text-align: center;
  margin-bottom: 1.75rem;
}
.owl-upsell__title {
  font-family: var(--font-heading, 'DM Serif Display', serif);
  font-size: var(--fs-lg, 1.75rem);
  color: var(--color-primary, #101f38);
  margin: 0 0 0.35rem;
}
.owl-upsell__subtitle {
  font-size: var(--fs-base, 1rem);
  color: var(--color-text-light, #6B6B6B);
  margin: 0;
}
.owl-upsell__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.owl-upsell__card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface, #fff);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.owl-upsell__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.owl-upsell__img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-sage, #e6e7ed);
}
.owl-upsell__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.owl-upsell__card:hover .owl-upsell__img-wrap img {
  transform: scale(1.04);
}
.owl-upsell__body {
  padding: 1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.owl-upsell__name {
  font-family: var(--font-heading, 'DM Serif Display', serif);
  font-size: var(--fs-md, 1.15rem);
  color: var(--color-primary, #101f38);
  margin: 0 0 0.35rem;
}
.owl-upsell__desc {
  font-size: var(--fs-sm, 0.875rem);
  color: var(--color-text-light, #6B6B6B);
  margin: 0 0 0.75rem;
  flex: 1;
  line-height: 1.5;
}
.owl-upsell__price {
  font-family: var(--font-heading, 'DM Serif Display', serif);
  font-size: var(--fs-md, 1.15rem);
  color: var(--color-accent, #C9954C);
  font-weight: 700;
}
.owl-upsell__footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-bottom: 0.5rem;
}
.owl-upsell__footer .btn--accent {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--color-accent, #C9954C);
  color: #fff;
  border-radius: 6px;
  font-family: var(--font-body, 'Source Sans 3', sans-serif);
  font-size: var(--fs-base, 1rem);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
}
.owl-upsell__footer .btn--accent:hover {
  background: var(--color-accent-dark, #A87A3A);
}

/* ============================================
   WooCommerce — Theme Integration
   ============================================ */

/* --- 1. Page Layout (archive & single product wrapper) --- */
.woocommerce-page .content-area {
  padding-top: calc(var(--header-h, 72px) + var(--utility-h, 0px) + var(--space-2xl));
  padding-bottom: var(--space-3xl);
  background: var(--color-bg);
}
.woocommerce-page .content-area .site-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Widen page.php container for cart, checkout, and order-received pages */
.woocommerce-cart .legal-content,
.woocommerce-checkout .legal-content,
.woocommerce-order-received .legal-content {
  max-width: none;
}
.woocommerce-cart .container,
.woocommerce-checkout .container,
.woocommerce-order-received .container {
  max-width: var(--max-w);
}

/* Hide WooCommerce default sidebar (no registered widget areas for shop) */
.woocommerce-page #sidebar,
.woocommerce-page .widget-area {
  display: none;
}

/* --- 2. Breadcrumbs --- */
.woocommerce-breadcrumb {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  font-family: var(--font-body);
}
.woocommerce-breadcrumb a {
  color: var(--color-accent);
}
.woocommerce-breadcrumb a:hover {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

/* --- 3. Notices --- */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  list-style: none;
}
.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--color-accent);
}
.woocommerce-error {
  border-left-color: var(--color-error);
}
.woocommerce-error::before {
  color: var(--color-error);
}
.woocommerce-thankyou-order-received {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-success);
  color: var(--color-text);
}

/* --- 4. Product Archive / Shop --- */
.woocommerce-products-header__title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-sm);
}
.woocommerce-result-count,
.woocommerce-ordering {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}
.woocommerce-ordering select {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  padding: 0.5em 2em 0.5em 0.75em;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6em center;
}
.woocommerce-ordering select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201,149,76,0.15);
}

ul.products,
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-lg);
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.products::before,
ul.products::after {
  display: none;
}
ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}
ul.products li.product:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
ul.products li.product a.woocommerce-loop-product__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}
ul.products li.product a img,
ul.products li.product a.woocommerce-loop-product__link img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  transition: transform 0.35s ease;
}
ul.products li.product:hover a img {
  transform: scale(1.04);
}
ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 400;
  color: var(--color-primary-dark);
  padding: var(--space-md) var(--space-md) var(--space-xs);
  margin: 0;
}
ul.products li.product .price {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  color: var(--color-accent);
  padding: 0 var(--space-md) var(--space-sm);
  margin: 0;
}
ul.products li.product .price del {
  opacity: 0.5;
  font-size: var(--fs-sm);
}
ul.products li.product .price ins {
  text-decoration: none;
  font-weight: 700;
}
ul.products li.product .button,
ul.products li.product a.button {
  display: block;
  text-align: center;
  margin: auto var(--space-md) var(--space-md);
  padding: 0.65em 1.4em;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--color-surface);
  background: var(--color-accent);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
ul.products li.product .button:hover,
ul.products li.product a.button:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
  color: var(--color-surface);
}

/* --- 5. Single Product --- */
.woocommerce div.product {
  max-width: var(--max-w);
}
.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  margin-bottom: var(--space-xl);
}
.woocommerce div.product div.images {
  overflow: hidden;
  border-radius: var(--radius-md);
}
.woocommerce div.product div.images img {
  border-radius: var(--radius-md);
}
.woocommerce div.product .product_title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}
.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: var(--fs-base);
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.woocommerce div.product .woocommerce-product-details__short-description p {
  margin-bottom: var(--space-sm);
}

/* Quantity input */
.woocommerce .quantity .qty {
  width: 4em;
  padding: 0.55em 0.5em;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  text-align: center;
  background: var(--color-surface);
  color: var(--color-text);
  -moz-appearance: textfield;
}
.woocommerce .quantity .qty:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201,149,76,0.15);
}
.woocommerce .quantity .qty::-webkit-inner-spin-button,
.woocommerce .quantity .qty::-webkit-outer-spin-button {
  opacity: 1;
}

/* Add-to-cart button (single) */
.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce div.product form.cart .button {
  padding: 0.85em 2.2em;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-surface);
  background: var(--color-accent);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover,
.woocommerce div.product form.cart .button:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--color-surface);
}

/* Product meta */
.woocommerce div.product .product_meta {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}
.woocommerce div.product .product_meta a {
  color: var(--color-accent);
}
.woocommerce div.product .product_meta a:hover {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs {
  margin-top: var(--space-xl);
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0 0 0 0;
  border-bottom: 2px solid var(--color-border);
  list-style: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
  display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 0;
  position: relative;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 0.75em 1.5em;
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 400;
  color: var(--color-text-light);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  color: var(--color-primary);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--color-primary-dark);
  border-bottom-color: var(--color-accent);
}
.woocommerce div.product .woocommerce-tabs .panel {
  padding: var(--space-lg) 0;
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--color-text);
}
.woocommerce div.product .woocommerce-tabs .panel h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
}

/* Related products */
.woocommerce div.product .related.products {
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}
.woocommerce div.product .related.products > h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-lg);
}

/* --- 6. Cart & Checkout (Block-based) --- */
.wc-block-components-button:not(.is-link),
.wp-block-woocommerce-checkout .wc-block-components-button:not(.is-link),
.wp-block-woocommerce-cart .wc-block-components-button:not(.is-link),
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
  background-color: var(--color-accent) !important;
  color: var(--color-surface) !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em;
  transition: background var(--transition-fast), transform var(--transition-fast) !important;
}
.wc-block-components-button:not(.is-link):hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover {
  background-color: var(--color-accent-dark) !important;
  transform: translateY(-1px);
}

/* Block text inputs */
.wc-block-components-text-input input,
.wc-block-components-text-input select,
.wc-block-components-textarea textarea {
  font-family: var(--font-body) !important;
  border-color: var(--color-border) !important;
  border-radius: var(--radius-sm) !important;
}
.wc-block-components-text-input input:focus,
.wc-block-components-text-input select:focus,
.wc-block-components-textarea textarea:focus {
  border-color: var(--color-accent) !important;
  box-shadow: 0 0 0 3px rgba(201,149,76,0.15) !important;
}
.wc-block-components-text-input label {
  font-family: var(--font-body) !important;
  color: var(--color-text-light) !important;
}

/* Block headings */
.wp-block-woocommerce-cart h2,
.wp-block-woocommerce-checkout h2,
.wc-block-components-title,
.wc-block-components-order-summary .wc-block-components-title {
  font-family: var(--font-heading) !important;
  color: var(--color-primary-dark) !important;
  font-weight: 400 !important;
}

/* Block links */
.wc-block-components-totals-coupon-link,
.wp-block-woocommerce-cart a,
.wp-block-woocommerce-checkout a:not(.wc-block-components-button) {
  color: var(--color-accent);
}
.wc-block-components-totals-coupon-link:hover,
.wp-block-woocommerce-cart a:hover,
.wp-block-woocommerce-checkout a:not(.wc-block-components-button):hover {
  color: var(--color-accent-dark);
}

/* Block order summary */
.wc-block-components-order-summary {
  border-color: var(--color-border) !important;
}
.wc-block-components-order-summary-item__description .wc-block-components-product-name {
  font-family: var(--font-body);
  color: var(--color-primary);
}
.wc-block-components-totals-item .wc-block-components-totals-item__label {
  font-family: var(--font-body);
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
}

/* Block radio/checkbox controls */
.wc-block-components-radio-control__option:after {
  border-color: var(--color-accent) !important;
}
.wc-block-components-checkbox .wc-block-components-checkbox__input:checked {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

/* Checkout error state */
.wc-block-components-validation-error {
  color: var(--color-error) !important;
}

/* --- 7. Thank-you / Order Received --- */
.woocommerce-order-details__title,
.woocommerce-customer-details h2,
.woocommerce-column__title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-md);
}
.woocommerce-table--order-details {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-xl);
  font-family: var(--font-body);
  font-size: var(--fs-base);
}
.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}
.woocommerce-table--order-details thead th {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 400;
  color: var(--color-primary-dark);
  border-bottom: 2px solid var(--color-border);
}
.woocommerce-table--order-details tfoot th {
  font-weight: 600;
}
.woocommerce-table--order-details .product-name a {
  color: var(--color-accent);
}
.woocommerce-table--order-details .product-name a:hover {
  color: var(--color-accent-dark);
  text-decoration: underline;
}
.woocommerce-order-overview {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  font-family: var(--font-body);
}
.woocommerce-order-overview li {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
}
.woocommerce-order-overview li strong {
  display: block;
  font-size: var(--fs-base);
  color: var(--color-primary-dark);
  font-weight: 600;
}
.woocommerce-customer-details address {
  font-style: normal;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--color-text);
  padding: var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

/* --- 8. General WooCommerce Buttons --- */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75em 1.8em;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
  text-decoration: none;
  color: var(--color-surface);
  background: var(--color-accent);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--color-accent-dark);
  color: var(--color-surface);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
  background: var(--color-primary);
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover {
  background: var(--color-primary-dark);
  color: var(--color-surface);
}
.woocommerce a.button:disabled,
.woocommerce button.button:disabled,
.woocommerce input.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* --- 9. Prices (global) --- */
.woocommerce .woocommerce-Price-amount {
  color: var(--color-accent);
}

/* --- 10. Star Ratings --- */
.woocommerce .star-rating {
  color: var(--color-accent);
}
.woocommerce .star-rating::before {
  color: var(--color-border);
}
.woocommerce p.stars a {
  color: var(--color-accent);
}

/* --- 11. Pagination --- */
.woocommerce nav.woocommerce-pagination {
  margin-top: var(--space-xl);
  text-align: center;
}
.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex;
  gap: var(--space-xs);
  border: none;
  list-style: none;
  padding: 0;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: none;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span.current {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5em;
  height: 2.5em;
  padding: 0 0.5em;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.woocommerce nav.woocommerce-pagination ul li a {
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--color-accent);
  color: var(--color-surface);
  border-color: var(--color-accent);
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--color-accent);
  color: var(--color-surface);
}

/* --- 12. WooCommerce Form Styles (classic) --- */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%;
  padding: 0.65em 0.85em;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  background: var(--color-surface);
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201,149,76,0.15);
}
.woocommerce form .form-row label {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.35em;
  display: block;
}

/* --- 13. Sale Badge --- */
.woocommerce span.onsale {
  background: var(--color-accent);
  color: var(--color-surface);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4em 0.8em;
  border-radius: var(--radius-sm);
  min-width: auto;
  min-height: auto;
  line-height: 1.4;
}

/* --- 14. WooCommerce Gallery Thumbnails --- */
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
  list-style: none;
  padding: 0;
}
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs li {
  flex: 0 0 auto;
}
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs li img {
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: border-color var(--transition-fast);
  cursor: pointer;
  opacity: 0.7;
}
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs li img:hover,
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
  border-color: var(--color-accent);
  opacity: 1;
}

