:root {
  --color-ink: #17252a;
  --color-muted: #667579;
  --color-line: #dce6e3;
  --color-surface: #ffffff;
  --color-soft: #f3f8f1;
  --color-teal: #1d766f;
  --color-teal-dark: #14524d;
  --color-forest: #244f34;
  --color-leaf: #6f9b63;
  --color-coral: #ec6f51;
  --color-gold: #f1b84b;
  --shadow: 0 18px 45px rgba(23, 37, 42, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

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

p {
  color: var(--color-muted);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 16px;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 82px);
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
}

h3 {
  font-size: 22px;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #fff;
  color: var(--color-ink);
}

label span {
  display: block;
  margin-bottom: 7px;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.section {
  padding: 92px 0;
}

.section-muted {
  background: var(--color-soft);
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 999;
  padding: 12px;
  background: #fff;
}

.button,
.button:visited,
button.button,
.single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  padding: 13px 22px;
  background: var(--color-coral);
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover,
.single_add_to_cart_button:hover {
  background: #d95d40;
  transform: translateY(-1px);
}

.button-small {
  min-height: 40px;
  padding: 10px 16px;
}

.button-light {
  background: #fff;
  color: var(--color-teal-dark);
}

.button-ghost {
  background: transparent;
  border: 1px solid var(--color-line);
  color: var(--color-teal-dark);
}

.button-ghost:hover {
  background: var(--color-teal);
  color: #fff;
}

.button.full {
  width: 100%;
  margin-top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 230, 227, 0.8);
}

.site-header .container.nav-shell {
  min-height: 64px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.nav-shell {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 64px;
}

.site-branding {
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-logo-text {
  color: var(--color-teal-dark);
  font-size: 24px;
  font-weight: 900;
}

.site-logo-image,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 112px !important;
  height: 44px !important;
  overflow: hidden;
}

.site-logo-image img,
.custom-logo,
.site-header .custom-logo-link img,
.site-header img.custom-logo {
  width: auto !important;
  height: auto !important;
  max-width: none;
  max-height: 44px !important;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.primary-navigation ul {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-navigation li {
  position: relative;
}

.primary-navigation a {
  color: var(--color-ink);
  font-weight: 750;
}

.primary-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 210px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.primary-navigation li:hover > .sub-menu {
  display: grid;
  gap: 10px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-link {
  font-weight: 800;
  color: var(--color-teal-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-ink);
}

.hero,
.tour-single-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  padding: 170px 0 70px;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.nature-hero {
  min-height: 790px;
  align-items: center;
  overflow: hidden;
}

.nature-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 140px;
  background: linear-gradient(180deg, rgba(243, 248, 241, 0), var(--color-soft));
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(241, 184, 75, 0.28), transparent 27%),
    linear-gradient(90deg, rgba(20, 45, 30, 0.86), rgba(20, 45, 30, 0.48) 52%, rgba(20, 45, 30, 0.2));
}

.hero-content,
.tour-single-hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 1060px;
  margin-left: max(20px, calc((100vw - var(--container)) / 2));
}

.hero p,
.tour-single-hero p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.tour-single-hero .eyebrow {
  color: var(--color-gold);
}

.nature-hero h1 {
  max-width: 980px;
}

.nature-hero .tour-search {
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 22px;
}

.hero-highlights div {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.hero-highlights strong {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.hero-highlights span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.tour-search {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  max-width: 1020px;
  margin-top: 36px;
  padding: 18px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tour-search label span {
  color: var(--color-muted);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.section-heading {
  margin-bottom: 34px;
}

.centered-heading {
  max-width: 760px;
  text-align: center;
}

.centered-heading p {
  margin-left: auto;
  margin-right: auto;
}

.tours-stay-section {
  position: relative;
  margin-top: -42px;
  padding-top: 112px;
  background:
    linear-gradient(180deg, var(--color-soft), #fff 52%),
    var(--color-soft);
}

.tours-stay-section .tour-card {
  box-shadow: 0 16px 40px rgba(36, 79, 52, 0.12);
}

.nature-intro-section {
  background:
    linear-gradient(180deg, rgba(111, 155, 99, 0.1), rgba(243, 248, 241, 0.95)),
    var(--color-soft);
}

.feature-grid,
.destination-grid,
.tour-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-grid {
  margin-top: 44px;
}

.feature-tile {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 26px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(rgba(36, 79, 52, 0.12), rgba(36, 79, 52, 0.82)), url("https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=900&q=80") center/cover;
}

.feature-tile:nth-child(2) {
  background-image: linear-gradient(rgba(36, 79, 52, 0.12), rgba(36, 79, 52, 0.82)), url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80");
}

.feature-tile:nth-child(3) {
  background-image: linear-gradient(rgba(36, 79, 52, 0.12), rgba(36, 79, 52, 0.82)), url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=900&q=80");
}

.feature-tile span {
  color: var(--color-gold);
  font-weight: 900;
}

.tour-card,
.content-card,
.post-card,
.booking-card,
.filter-panel,
.empty-state {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(23, 37, 42, 0.06);
}

.tour-card {
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.tour-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 118, 111, 0.34);
  box-shadow: 0 18px 44px rgba(36, 79, 52, 0.14);
}

.tour-card-image {
  position: relative;
  display: block;
  min-height: 255px;
  background-position: center;
  background-size: cover;
}

.tour-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 37, 42, 0), rgba(23, 37, 42, 0.18));
}

.tour-badge,
.tour-duration {
  position: absolute;
  z-index: 1;
  top: 16px;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-badge {
  left: 16px;
  background: var(--color-coral);
  color: #fff;
}

.tour-duration {
  right: 16px;
  background: #fff;
  color: var(--color-teal-dark);
}

.tour-card-body {
  display: grid;
  min-height: 285px;
  padding: 24px;
}

.tour-card-kicker,
.tour-card-body span {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.tour-card-body h3 {
  margin-bottom: 10px;
}

.tour-card-body h3 a:hover {
  color: var(--color-teal);
}

.tour-destination {
  margin: -6px 0 12px;
  color: var(--color-teal);
  font-weight: 800;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  align-self: end;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--color-line);
}

.tour-card-footer .button-ghost {
  border-color: var(--color-teal);
  color: #fff;
  background: var(--color-teal);
  opacity: 1;
  visibility: visible;
}

.tour-card-footer .button-ghost:hover {
  background: var(--color-forest);
  border-color: var(--color-forest);
}

.tour-card-footer strong,
.booking-price strong,
.booking-total strong {
  display: block;
  color: var(--color-teal-dark);
  font-size: 24px;
  line-height: 1.2;
}

.tour-card-footer del,
.booking-price del {
  color: var(--color-muted);
  font-size: 16px;
}

.destination-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.destination-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(rgba(23, 37, 42, 0.05), rgba(23, 37, 42, 0.72)), url("https://images.unsplash.com/photo-1506929562872-bb421503ef21?auto=format&fit=crop&w=900&q=80") center/cover;
}

.destination-card span {
  color: var(--color-gold);
  font-weight: 900;
  text-transform: uppercase;
}

.adventure-band {
  color: #fff;
  background: var(--color-forest);
}

.adventure-band p,
.adventure-band h2 {
  color: #fff;
}

.check-list,
.x-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.x-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 30px;
  color: inherit;
}

.check-list li::before,
.x-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.check-list li::before {
  content: "✓";
  background: var(--color-teal);
}

.x-list li::before {
  content: "×";
  background: var(--color-coral);
}

.blog-preview {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
}

.post-card {
  padding: 24px;
}

.page-hero {
  padding: 92px 0;
  color: #fff;
  background: var(--color-teal-dark);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.shop-hero {
  background: linear-gradient(rgba(20, 82, 77, 0.86), rgba(20, 82, 77, 0.86)), url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.shop-layout {
  display: block;
}

.filter-panel {
  position: sticky;
  top: 104px;
  padding: 16px;
}

.filter-panel form {
  display: grid;
  gap: 10px;
}

.filter-head,
.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}


.filter-head h2 {
  margin: 0;
  font-size: 18px;
}

.filter-head a {
  color: var(--color-coral);
  font-size: 13px;
  font-weight: 800;
}

.filter-panel label span {
  margin-bottom: 4px;
  font-size: 11px;
}

.filter-panel input,
.filter-panel select {
  min-height: 38px;
  padding: 8px 10px;
  font-size: 14px;
}

.filter-panel .button {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 14px;
}

.filter-panel .check-control {
  gap: 8px;
  align-items: center;
  padding: 4px 0;
}

.filter-panel .check-control span {
  font-size: 13px;
}

.check-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-control input {
  width: auto;
}

.check-control span {
  margin: 0;
  text-transform: none;
}

.empty-state {
  padding: 38px;
  text-align: center;
}

.content-list {
  display: grid;
  gap: 20px;
}

.content-card {
  padding: 26px;
}

.entry-content a {
  color: var(--color-teal);
  text-decoration: underline;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  background: var(--color-teal-dark);
}

.about-hero-media {
  min-height: 420px;
  background-position: center;
  background-size: cover;
}

.about-hero-content {
  width: min(590px, calc(100% - 40px));
  align-self: center;
  margin: 0;
  padding: 90px 0 90px 68px;
  color: #fff;
}

.about-hero-content p {
  color: rgba(255, 255, 255, 0.82);
}

.about-intro,
.about-band,
.contact-hero-inner,
.contact-map-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.values-grid,
.stats-grid,
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.value-card,
.contact-info-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(23, 37, 42, 0.06);
}

.value-card span,
.contact-info-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--color-coral);
  font-weight: 900;
  text-transform: uppercase;
}

.about-band {
  padding: 44px;
  color: #fff;
  background: var(--color-teal-dark);
  border-radius: var(--radius);
}

.about-band p,
.about-band h2 {
  color: #fff;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-grid div {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  text-align: center;
}

.stats-grid strong {
  display: block;
  color: var(--color-teal-dark);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 10px;
  color: var(--color-muted);
  font-weight: 800;
}

.contact-hero {
  padding: 110px 0;
  color: #fff;
  background: linear-gradient(rgba(20, 82, 77, 0.86), rgba(20, 82, 77, 0.86)), url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.contact-hero p {
  color: rgba(255, 255, 255, 0.84);
}

.contact-card {
  padding: 30px;
  color: var(--color-ink);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card p {
  color: var(--color-muted);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-info-card h3 {
  overflow-wrap: anywhere;
}

.contact-map-placeholder,
.contact-map-frame {
  min-height: 360px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(29, 118, 111, 0.12), rgba(236, 111, 81, 0.12));
}

.contact-map-placeholder {
  display: grid;
  place-items: center;
}

.contact-map-placeholder span {
  color: var(--color-teal-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-map-frame iframe {
  width: 100%;
  min-height: 360px;
  display: block;
  border: 0;
}

.tour-single-hero {
  min-height: 660px;
  align-items: end;
  isolation: isolate;
}

.tour-single-hero .hero-overlay {
  background:
    radial-gradient(circle at 82% 24%, rgba(241, 184, 75, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(20, 45, 30, 0.88), rgba(20, 45, 30, 0.55) 56%, rgba(20, 45, 30, 0.2));
}

.tour-single-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 130px;
  background: linear-gradient(180deg, rgba(243, 248, 241, 0), var(--color-soft));
  pointer-events: none;
  z-index: 0;
}

.tour-hero-inner {
  max-width: 1060px;
}

.tour-hero-price {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.tour-hero-price span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-hero-price strong {
  color: #fff;
  font-size: 26px;
  line-height: 1;
}

.tour-hero-price em {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.tour-hero-price del {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
}

.tour-meta-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  max-width: 920px;
  margin-top: 36px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.16);
}

.tour-meta-strip div {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.95);
}

.tour-meta-strip span {
  display: block;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-meta-strip strong {
  color: var(--color-ink);
  font-size: 20px;
}

.tour-product-section {
  background:
    linear-gradient(180deg, var(--color-soft), #fff 42%),
    var(--color-soft);
}

.tour-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 36px;
  align-items: start;
}

.tour-main {
  display: grid;
  gap: 24px;
}

.tour-section {
  padding: 32px;
  margin-bottom: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 45px rgba(36, 79, 52, 0.08);
}

.tour-section-head {
  margin-bottom: 22px;
}

.tour-section-head h2 {
  margin-bottom: 0;
  color: var(--color-forest);
  font-size: clamp(30px, 3vw, 42px);
}

.tour-section-head p {
  max-width: 780px;
  margin: 12px 0 0;
}

.product-overview-card {
  font-size: 17px;
}

.product-overview-card > *:last-child {
  margin-bottom: 0;
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.included-list-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-soft);
}

.accordion details {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 12px;
  background: #fff;
}

.accordion summary {
  cursor: pointer;
  font-weight: 900;
}

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

.itinerary-list li {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  padding: 0 0 28px;
}

.itinerary-list li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 55px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: var(--color-line);
}

.itinerary-day {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 48px;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background: var(--color-teal);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.itinerary-content {
  padding: 22px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(36, 79, 52, 0.06);
}

.itinerary-content h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.itinerary-content p {
  margin: 0;
}

.itinerary-schedule {
  display: grid;
  gap: 20px;
}

.itinerary-day-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.itinerary-day-head {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 16px 22px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    var(--color-forest);
}

.itinerary-day-head span {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.itinerary-day-items {
  display: grid;
}

.itinerary-time-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 22px;
  background: #fff;
}

.itinerary-time-row + .itinerary-time-row {
  border-top: 1px solid var(--color-line);
}

.itinerary-time-row time {
  display: block;
  width: auto;
  min-height: 0;
  padding: 0;
  color: var(--color-coral);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.itinerary-time-row h3 {
  margin-bottom: 3px;
  color: var(--color-ink);
  font-size: 20px;
}

.itinerary-time-row p {
  margin: 0;
}

.map-frame {
  position: relative;
  aspect-ratio: 16 / 8.4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-soft);
  border: 1px solid var(--color-line);
}

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

.tour-map-showcase {
  position: relative;
}

.tour-location-info {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  width: min(330px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(23, 37, 42, 0.12);
  backdrop-filter: blur(8px);
}

.tour-location-info span {
  display: block;
  margin-bottom: 12px;
  color: var(--color-coral);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-location-info h3 {
  margin-bottom: 10px;
}

.tour-location-info .button {
  margin-top: 12px;
}

.product-gallery-showcase {
  padding: 24px;
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.gallery-heading h2 {
  margin-bottom: 0;
}

.gallery-heading span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-teal-dark);
  background: var(--color-soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-product-gallery {
  display: grid;
  gap: 12px;
  max-width: 100%;
}

.tour-gallery-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #f7f8f7;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.62);
}

.tour-gallery-stage.has-fallback {
  min-height: 420px;
  background-position: center;
  background-size: cover;
}

.tour-gallery-slide {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #f7f8f7;
}

.tour-gallery-slide.is-active {
  display: flex;
}

.tour-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-nav,
.gallery-zoom {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  color: #6d7778;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.gallery-nav {
  top: 50%;
  width: 44px;
  height: 58px;
  transform: translateY(-50%);
  font-size: 48px;
  line-height: 1;
}

.gallery-prev {
  left: 8px;
}

.gallery-next {
  right: 8px;
}

.gallery-zoom {
  top: 13px;
  right: 13px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
}

.gallery-nav:hover,
.gallery-zoom:hover {
  color: var(--color-teal-dark);
  background: rgba(255, 255, 255, 0.74);
}

.tour-gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scrollbar-width: thin;
}

.tour-gallery-thumb {
  flex: 0 0 86px;
  width: 86px;
  height: 70px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  background: #f7f8f7;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.tour-gallery-thumb.is-active {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 1px var(--color-teal);
}

.tour-gallery-thumb:hover {
  transform: translateY(-1px);
}

.tour-gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.tour-gallery-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  grid-auto-rows: 178px;
  gap: 12px;
}

.tour-gallery-mosaic a,
.tour-gallery-mosaic .gallery-feature {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
}

.tour-gallery-mosaic a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 37, 42, 0), rgba(23, 37, 42, 0.18));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.tour-gallery-mosaic a:hover::after {
  opacity: 1;
}

.tour-gallery-mosaic img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.tour-gallery-mosaic a:hover img {
  transform: scale(1.04);
}

.tour-gallery-mosaic .gallery-feature {
  grid-row: span 2;
}

.gallery-thumb span {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(20, 82, 77, 0.72);
  font-size: 24px;
  font-weight: 900;
}

.tour-gallery-mosaic.has-fallback {
  display: block;
}

.tour-gallery-mosaic.has-fallback .gallery-feature {
  min-height: 420px;
}

.has-lightbox-open {
  overflow: hidden;
}

.tour-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px 22px 36px;
  background: rgba(12, 24, 20, 0.88);
}

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

.tour-lightbox img {
  max-width: min(1120px, 100%);
  max-height: calc(100vh - 140px);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.tour-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.tour-lightbox-close:hover,
.tour-lightbox-close:focus {
  background: var(--color-coral);
  outline: none;
}

.tour-lightbox-caption {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 900;
}

.booking-card {
  position: sticky;
  top: 104px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(29, 118, 111, 0.22);
  box-shadow: 0 22px 60px rgba(36, 79, 52, 0.14);
}

.booking-card-head {
  padding: 24px 24px 20px;
  margin-bottom: 0;
  border-bottom: 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    var(--color-forest);
}

.booking-card-head .eyebrow {
  margin-bottom: 8px;
  color: var(--color-gold);
}

.booking-card-head h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: 28px;
}

.booking-price,
.booking-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--color-line);
}

.booking-price {
  background: #fff;
}

.booking-total {
  border: 1px solid rgba(29, 118, 111, 0.18);
  border-radius: var(--radius);
  background: rgba(111, 155, 99, 0.12);
}

.tour-booking-form {
  display: grid;
  gap: 18px;
  padding: 22px 24px 24px;
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.booking-extras h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.booking-card input,
.booking-card select {
  min-height: 48px;
  background: #fbfdfb;
}

.booking-card .check-control {
  align-items: flex-start;
  padding: 11px 12px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fbfdfb;
}

.booking-card .check-control input {
  margin-top: 3px;
}

.booking-min-note {
  margin: -6px 0 0;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--color-forest);
  background: rgba(111, 155, 99, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.booking-extras {
  display: grid;
  gap: 10px;
}

.booking-actions {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.booking-actions .single_add_to_cart_button {
  width: 100%;
  min-height: 56px;
  font-size: 16px;
}

.enquiry-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  min-height: 56px;
  padding: 13px 22px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: var(--color-teal);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.enquiry-button:hover {
  color: #fff;
  background: var(--color-forest);
  transform: translateY(-1px);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 14px 18px;
  background: var(--color-soft);
}

.woocommerce-error {
  background: #fff1ed;
}

.woocommerce-cart .entry-content .woocommerce,
.woocommerce-checkout .entry-content .woocommerce {
  display: grid;
  gap: 28px;
}

.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 35px rgba(36, 79, 52, 0.08);
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td,
.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
  padding: 18px;
  border-bottom: 1px solid var(--color-line);
  vertical-align: middle;
}

.woocommerce-cart table.shop_table th,
.woocommerce-checkout table.shop_table th {
  color: var(--color-forest);
  background: var(--color-soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.woocommerce-cart table.shop_table tr:last-child td,
.woocommerce-checkout table.shop_table tr:last-child td {
  border-bottom: 0;
}

.woocommerce-cart table.shop_table img {
  width: 92px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius);
}

.woocommerce-cart .product-name a,
.woocommerce-checkout .product-name {
  color: var(--color-ink);
  font-weight: 900;
}

.woocommerce-cart .product-remove a {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color-coral);
  font-weight: 900;
}

.woocommerce-cart .quantity .qty {
  max-width: 90px;
  text-align: center;
}

.woocommerce-cart .actions {
  background: #fff;
}

.woocommerce-cart .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.woocommerce-cart .coupon input {
  width: min(260px, 100%);
}

.woocommerce-cart .cart-collaterals {
  display: flex;
  justify-content: flex-end;
}

.woocommerce-cart .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields {
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 35px rgba(36, 79, 52, 0.08);
}

.woocommerce-cart .cart_totals {
  width: min(430px, 100%);
}

.woocommerce-cart .cart_totals h2,
.woocommerce-checkout h3 {
  color: var(--color-forest);
  font-size: 26px;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce-checkout #place_order {
  width: 100%;
  min-height: 54px;
  margin-top: 14px;
  background: var(--color-coral);
  color: #fff;
  font-weight: 900;
}

.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: start;
}

.woocommerce-checkout .col2-set {
  display: grid;
  gap: 22px;
}

.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
  width: auto;
  float: none;
}

.woocommerce-checkout #order_review_heading {
  grid-column: 2;
  margin: 0 0 -12px;
}

.woocommerce-checkout #order_review {
  grid-column: 2;
  position: sticky;
  top: 104px;
}

.woocommerce-checkout form.checkout > .col2-set {
  grid-row: 1 / span 3;
}

.woocommerce-checkout .form-row {
  margin: 0 0 16px;
}

.woocommerce-checkout .form-row label {
  margin-bottom: 7px;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.woocommerce-checkout .woocommerce-input-wrapper {
  display: block;
}

.woocommerce-checkout #payment {
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--color-soft);
}

.woocommerce-checkout #payment ul.payment_methods {
  margin: 0;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--color-line);
  list-style: none;
}

.woocommerce-checkout #payment .place-order {
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer-cta {
  padding: 46px 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent),
    var(--color-forest);
  color: #fff;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-cta h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
}

.site-footer {
  background:
    radial-gradient(circle at 10% 10%, rgba(111, 155, 99, 0.18), transparent 28%),
    #10282b;
  color: #fff;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.9fr;
  gap: 42px;
  padding: 64px 0 54px;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 20px;
}

.footer-brand h3 {
  color: var(--color-gold);
  font-size: 28px;
}

.footer-brand p {
  max-width: 360px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-badges span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 6px 11px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-contact ul {
  display: grid;
  gap: 13px;
}

.footer-contact li span {
  display: block;
  margin-bottom: 2px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-contact li p {
  margin: 0;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-hours {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.footer-enquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 10px;
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--color-forest) !important;
  background: var(--color-gold);
  font-weight: 900;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1024px) {
  .nav-shell {
    grid-template-columns: 100px auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-logo-image img,
  .custom-logo,
  .site-header .custom-logo-link img,
  .site-header img.custom-logo {
    max-height: 40px !important;
  }

  .site-logo-image,
  .custom-logo-link {
    width: 100px !important;
    height: 40px !important;
  }

  .primary-navigation {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    padding: 16px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .primary-navigation.is-open {
    display: block;
  }

  .primary-navigation ul {
    display: grid;
    justify-content: stretch;
    gap: 12px;
  }

  .primary-navigation .sub-menu {
    position: static;
    display: grid;
    margin-top: 10px;
    box-shadow: none;
  }

  .nav-actions {
    display: none;
  }

  .tour-search,
  .split,
  .blog-preview,
  .shop-layout,
  .tour-single-layout,
  .about-hero,
  .about-intro,
  .about-band,
  .contact-hero-inner,
  .contact-map-layout {
    grid-template-columns: 1fr;
  }

  .about-hero-content {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
    padding: 64px 0;
  }

  .filter-panel,
  .booking-card {
    position: static;
  }

  .tour-meta-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-gallery-mosaic,
  .woocommerce-checkout form.checkout,
  .tour-location-layout {
    grid-template-columns: 1fr;
  }

  .tour-single-layout {
    gap: 28px;
  }

  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review,
  .woocommerce-checkout form.checkout > .col2-set {
    grid-column: auto;
    grid-row: auto;
  }

  .woocommerce-checkout #order_review {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-logo-image img,
  .custom-logo,
  .site-header .custom-logo-link img,
  .site-header img.custom-logo {
    max-height: 34px !important;
  }

  .site-logo-image,
  .custom-logo-link {
    width: 86px !important;
    height: 34px !important;
  }

  .section {
    padding: 64px 0;
  }

  .hero,
  .tour-single-hero {
    min-height: 680px;
    padding-top: 120px;
  }

  .nature-hero {
    min-height: 820px;
  }

  .hero-content {
    margin-left: auto;
  }

  .tour-search,
  .feature-grid,
  .destination-grid,
  .tour-grid,
  .post-grid,
  .included-grid,
  .gallery-grid,
  .footer-grid,
  .values-grid,
  .stats-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .tour-search {
    padding: 14px;
  }

  .tours-stay-section {
    margin-top: 0;
    padding-top: 68px;
  }

  .tour-card-footer,
  .footer-cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .tour-meta-strip,
  .booking-row {
    grid-template-columns: 1fr;
  }

  .tour-single-hero {
    min-height: 720px;
  }

  .tour-hero-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .tour-section {
    padding: 22px;
  }

  .tour-location-info {
    position: static;
    width: auto;
    margin-bottom: 12px;
  }

  .map-frame {
    aspect-ratio: 1 / 0.85;
  }

  .product-gallery-showcase {
    padding: 16px;
  }

  .booking-card-head,
  .tour-booking-form {
    padding-left: 20px;
    padding-right: 20px;
  }

  .booking-price,
  .booking-total {
    padding-left: 20px;
    padding-right: 20px;
  }

  .itinerary-list li {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .itinerary-list li:not(:last-child)::before {
    display: none;
  }

  .itinerary-day {
    justify-self: start;
    min-width: 112px;
  }

  .itinerary-time-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px;
  }

  .itinerary-time-row time {
    justify-content: center;
    width: max-content;
    min-width: 86px;
  }

  .gallery-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .tour-gallery-mosaic {
    grid-auto-rows: 132px;
  }

  .tour-product-gallery {
    max-width: 100%;
  }

  .tour-gallery-mosaic .gallery-feature {
    grid-row: span 2;
  }

  .tour-gallery-stage {
    aspect-ratio: 1 / 0.9;
  }

  .tour-gallery-slide {
    padding: 0;
  }

  .gallery-nav {
    width: 36px;
    height: 48px;
    font-size: 40px;
  }

  .gallery-prev {
    left: 2px;
  }

  .gallery-next {
    right: 2px;
  }

  .gallery-zoom {
    top: 9px;
    right: 9px;
  }

  .tour-gallery-thumbs {
    gap: 8px;
  }

  .tour-gallery-thumb {
    flex-basis: 72px;
    width: 72px;
    height: 58px;
  }

  .tour-gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 118px;
    gap: 8px;
  }

  .tour-gallery-mosaic .gallery-feature {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .tour-gallery-mosaic.has-fallback .gallery-feature {
    min-height: 280px;
  }

  .gallery-thumb span {
    font-size: 18px;
  }

  .tour-lightbox {
    padding: 68px 14px 34px;
  }

  .tour-lightbox img {
    max-height: calc(100vh - 130px);
  }

  .tour-lightbox-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .woocommerce-cart table.shop_table,
  .woocommerce-cart table.shop_table tbody,
  .woocommerce-cart table.shop_table tr,
  .woocommerce-cart table.shop_table td {
    display: block;
    width: 100%;
  }

  .woocommerce-cart table.shop_table thead {
    display: none;
  }

  .woocommerce-cart table.shop_table tr {
    border-bottom: 1px solid var(--color-line);
  }

  .woocommerce-cart table.shop_table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--color-line);
  }

  .woocommerce-cart table.shop_table td::before {
    content: attr(data-title);
    color: var(--color-forest);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .woocommerce-cart table.shop_table .product-remove,
  .woocommerce-cart table.shop_table .product-thumbnail {
    justify-content: center;
  }

  .woocommerce-cart table.shop_table .product-remove::before,
  .woocommerce-cart table.shop_table .product-thumbnail::before,
  .woocommerce-cart table.shop_table .actions::before {
    display: none;
  }

  .woocommerce-cart .coupon,
  .woocommerce-cart .actions {
    display: grid;
    gap: 10px;
  }

  .woocommerce-cart .coupon input,
  .woocommerce-cart .actions .button {
    width: 100%;
  }

  .woocommerce-cart .cart_totals,
  .woocommerce-checkout #order_review,
  .woocommerce-checkout .woocommerce-billing-fields,
  .woocommerce-checkout .woocommerce-shipping-fields,
  .woocommerce-checkout .woocommerce-additional-fields {
    padding: 20px;
  }

  .page-hero {
    padding: 68px 0;
  }

  .about-band {
    padding: 28px;
  }
}
