/* FONT SETUP */
@font-face {
  font-family: "neue-medium";
  src: url("../assets/fonts/NeueHaasDisplayMediu.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

.neue-medium {
  font-family: "neue-medium";
}

@font-face {
  font-family: "neue";
  src: url("../assets/fonts/NeueHaasDisplayThin.ttf") format("truetype");
  /* font-weight: 100; */
}

.neue {
  font-family: "neue";
  letter-spacing: 1.1px;
  line-height: 1.15;
}

@font-face {
  font-family: "neue-bold";
  src: url("../assets/fonts/HelveticaNeue-Roman.otf") format("opentype");
  /* font-weight: 100; */
}

.neue-bold {
  font-family: "neue-bold";
  /* letter-spacing: 1.1px;
    line-height: 1.15; */
}

/* Presentations block: bold title + regular description, same font size, same line then wrap, generous line-height */
.presentation-heading {
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0;
  max-width: 100%;
  margin: 0;
}

@media (min-width: 768px) {
  .presentation-heading {
    font-size: 1.375rem;
  }
}

.presentation-heading__title {
  font-family: "neue-medium";
  font-weight: 700;
}

.presentation-heading__desc {
  font-family: "neue-medium";
  font-weight: 400;
}

.gradient-text {
  /* Define the gradient */
  background: linear-gradient(76deg, #f3bc83 0%, #a68059 38%, #3e4755 100%);

  /* Clip the background to the text shape */
  -webkit-background-clip: text;
  background-clip: text;

  /* Make the actual text transparent so the background shows through */
  color: transparent;

  /* Optional: Ensure it works on older webkit browsers */
  -webkit-text-fill-color: transparent;
}

/* Figma-aligned layout: one content column, same left/right and vertical spacing everywhere */
:root {
  --content-max-width: 1000px;
  --content-padding-x: 1.25rem;
  --content-padding-y: 2.5rem;
  --section-gap: 0;
}

@media (min-width: 640px) {
  :root {
    --content-padding-x: 1.5rem;
    --content-padding-y: 3rem;
  }
}

@media (min-width: 768px) {
  :root {
    --content-padding-x: 2rem;
    --content-padding-y: 4rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --content-padding-x: 6.5rem;
    --content-padding-y: 4rem;
  }
}

/* Single inner wrapper for every section – same width and padding so all containers align */
.section-inner {
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: var(--content-padding-x);
  padding-right: var(--content-padding-x);
  padding-top: var(--content-padding-y);
  padding-bottom: var(--content-padding-y);
  box-sizing: border-box;
}

/* Mobile: same left/right padding (2rem) for every section, matching product section */
@media (max-width: 767px) {
  .section-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Section headings: same left alignment and spacing */
.section-inner .section-heading {
  margin: 0 0 1.5rem 0;
  font-size: clamp(1.125rem, 2.5vw, 1.875rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #333333;
  font-family: "neue-medium", sans-serif;
}

@media (min-width: 768px) {
  .section-inner .section-heading {
    margin-bottom: 2rem;
  }
}

/* Mobile: sticky section label bar (updates on scroll, like desktop sidebar) */
.mobile-section-label-bar {
  display: none;
}

@media (max-width: 767px) {
  .mobile-section-label-bar {
    display: flex !important;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    min-height: 48px;
    padding: 1.72rem 2rem 1.72rem 2rem;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  }

  .mobile-section-label-bar #mobile-section-label-text {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: #393939;
    padding-left: 1rem;
    border-left: 3px solid #a3845f;
    line-height: 1.2;
    font-family: "neue-medium", sans-serif;
  }
}

/* Mobile: improved text alignment and readability */
@media (max-width: 767px) {
  .section-inner .section-heading {
    text-align: center;
    line-height: 1.35;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .section-inner .section-heading .neue-medium,
  .section-inner .section-heading .neue {
    display: block;
    text-align: left;
    font-size: 2.1rem;
  }

  .section-inner .section-heading .neue {
    margin-top: 0.25em;
    font-family: "neue";
    font-size: 20px;
  }
}

/* Sales Kit: extra top padding for section and heading */
#sales-kit .section-inner {
  padding-top: calc(var(--content-padding-y) + 2rem);
}

#sales-kit .section-heading {
  padding-top: 1.5rem;
}

body {
  background-color: #ffffff;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

/* Hero logo bar: move logo up on mobile */
@media (max-width: 767px) {
  .hero-logo-bar {
    padding-top: 0.5rem !important;
  }
}


.bg-gold-gradient {
  background: linear-gradient(to right, #F3BC83 0%, #A68059 38%, #3E4755 100%);
}

/* Higher specificity so these beat Tailwind's injected utilities (load after style.css) */
a .kits-dropdown-download,
span.kits-dropdown-download {
  color: rgb(99 99 99 / 0.9) !important;
  -webkit-text-fill-color: rgb(99 99 99 / 0.9) !important;
  letter-spacing: normal;
}

/* Desktop: fixed grid so description column has same start/end every row */
@media (min-width: 864px) {
  div.kits-row-inner {
    display: grid !important;
    grid-template-columns: 260px 360px 120px;
    gap: 2rem;
    align-items: center;
    flex-direction: unset;
    justify-content: space-between;
  }
}

/* Main wrapper: left sidebar and right content in same flow (desktop: two columns) */
.main-with-sidebar {
  display: block;
}

@media (min-width: 1024px) {
  .main-with-sidebar {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }
}

/* Left sidebar: comes with right content, then sticks while right scrolls (desktop only) */
.fixed-left-sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .fixed-left-sidebar {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    align-self: flex-start;
    flex: 0 0 38%;
    width: 100%;
    max-width: 50%;
    min-width: 320px;
    height: 56vh;
    z-index: 15;
    background-color: #ffffff;
    padding: 7.5rem 0 2rem 2rem;
    pointer-events: auto;
    box-sizing: border-box;
  }

  .fixed-left-sidebar__wing {
    position: absolute;
    left: 0;
    top: 506px;
    transform: translateY(-50%);
    width: 100%;
    overflow: hidden;
    pointer-events: none;
  }

  .fixed-left-sidebar__wing-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left center;
    margin-left: -20%;
    opacity: 0.95;
  }

  .fixed-left-sidebar__nav {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    padding-bottom: 0.5rem;
    padding-left: 6rem;
  }

  .fixed-left-sidebar__link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #393939;
    font-family: "neue-medium";
    transition: opacity 0.2s;
  }

  .fixed-left-sidebar__link:hover {
    opacity: 0.7;
  }

  .main-content-scroll {
    flex: 1;
    min-width: 0;
    margin-left: 0;
    max-width: none;
  }
}

/* Sticky wings – mobile: centered, behind all sections; desktop: hidden (sidebar has wing) */
.wings-bg-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  pointer-events: none;
  opacity: 1;
  background-repeat: no-repeat;
}

/* Mobile: wing visible – stacking via z-index only */
@media (max-width: 1023px) {
  .wings-bg-sticky {
    z-index: 0;
    background-position: center center;
    background-size: 100%;
  }

  .main-content-scroll {
    position: relative;
    z-index: 10;
  }

  .main-content-scroll section {
    position: relative;
    z-index: 1;
  }
}

/* Desktop: different position (half cut on left) – only until we hide it */
@media (min-width: 1024px) {
  .wings-bg-sticky {
    display: none;
  }
}

/* Sales Kit section: wing image half-cut on the left */
.wings-half-cut {
  margin-left: -20%;
}

/* Sales Kit grid: flex on sm+ so flex-grow animates smoothly; both equal by default, hover expands one */
.sales-kit-grid .sales-kit-card {
  min-width: 0;
}

@media (min-width: 640px) {
  .sales-kit-grid .sales-kit-card {
    transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Default: second card active (expanded) */
  .sales-kit-grid .sales-kit-card:first-child {
    flex: 1 1 0;
  }

  .sales-kit-grid .sales-kit-card:last-child {
    flex: 2 1 0;
  }

  .sales-kit-grid:has(.sales-kit-card:first-child:hover) .sales-kit-card:first-child {
    flex: 2 1 0;
  }

  .sales-kit-grid:has(.sales-kit-card:first-child:hover) .sales-kit-card:last-child {
    flex: 1 1 0;
  }

  .sales-kit-grid:has(.sales-kit-card:last-child:hover) .sales-kit-card:first-child {
    flex: 1 1 0;
  }

  .sales-kit-grid:has(.sales-kit-card:last-child:hover) .sales-kit-card:last-child {
    flex: 2 1 0;
  }
}

/* Sales Kit cards: match menu cards border radius */
#sales-kit .sales-kit-card {
  border-radius: 5px;
}

#sales-kit .sales-kit-card__img-wrap {
  border-radius: 5px 5px 0 0;
}

#sales-kit .sales-kit-card > div:last-child {
  border-radius: 0 0 5px 5px;
}

/* Sales Kit cards: smooth zoom on hover (contained in rounded box) */
.sales-kit-card__img-wrap {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.sales-kit-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile: comfortable tap targets and spacing */
@media (max-width: 767px) {
  .lookbook-pagination .lookbook-bullet {
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
  }

  .lookbook-prev,
  .lookbook-next {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Look Book slider: container = 16:9 so image fills with no white/black space, logos not cut */
.lookbook-swiper-outer {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: none;
  border-radius: 5px;
}

.lookbook-swiper {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none;
}

.lookbook-swiper .swiper-wrapper,
.lookbook-swiper .swiper-slide {
  height: 100%;
}

.lookbook-swiper .swiper-slide .lookbook-slide-inner {
  height: 100%;
  aspect-ratio: unset;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lookbook-swiper .swiper-slide .lookbook-slide-img {
  display: block;
  object-fit: contain;
  object-position: center;
}

.lookbook-swiper--has-overlay {
  position: relative;
}

/* Pagination at bottom of image (inside container), no extra space */
.lookbook-swiper-outer .lookbook-pagination,
.lookbook-pagination {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 1rem;
  width: 100%;
  display: flex !important;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  padding: 0;
  z-index: 10;
}

.lookbook-swiper-outer .lookbook-pagination .lookbook-bullet {
  pointer-events: auto;
}

@media (min-width: 768px) {
  .lookbook-pagination {
    bottom: 1.25rem;
  }
}

@media (max-width: 767px) {
  .lookbook-pagination {
    bottom: 0.75rem;
    gap: 0.375rem;
  }

  .lookbook-slider-wrapper {
    margin-left: 0;
    margin-right: 0;
  }

  /* Center lookbook nav arrows on mobile */
  .lookbook-slider-wrapper .flex.items-center.justify-end {
    justify-content: center;
  }
}

.lookbook-pagination .lookbook-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  pointer-events: auto;
}

.lookbook-pagination .lookbook-bullet:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.lookbook-pagination .lookbook-bullet-active {
  background-color: #fff;
  border-color: #fff;
  transform: scale(1.15);
}

/* Lookbook lightbox: full viewport black overlay, image centered */
.lookbook-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  min-height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lookbook-lightbox--open {
  opacity: 1;
  visibility: visible;
}

.lookbook-lightbox__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  cursor: pointer;
}

.lookbook-lightbox__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 95vw;
  max-height: 90vh;
  width: 100%;
}

/* Lightbox swiper: same behaviour as main lookbook */
.lookbook-lightbox-swiper {
  width: 100%;
  max-width: 95vw;
  max-height: 90vh;
}

.lookbook-lightbox-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lookbook-lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Prev/next controllers on left and right of image */
.lookbook-lightbox-prev,
.lookbook-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #fff;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.lookbook-lightbox-prev:hover,
.lookbook-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  color: #fff;
}

.lookbook-lightbox-prev {
  left: 1rem;
}

.lookbook-lightbox-next {
  right: 1rem;
}

.lookbook-lightbox__close {
  position: absolute;
  top: -0.5rem;
  right: 16px;
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  pointer-events: auto;
}

.lookbook-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* Mobile: lightbox full viewport, no padding, safe-area for controls */
@media (max-width: 767px) {
  .lookbook-lightbox {
    padding: 0;
    height: 100dvh;
    height: 100vh;
    min-height: -webkit-fill-available;
  }

  .lookbook-lightbox__content {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    box-sizing: border-box;
  }

  .lookbook-lightbox-swiper {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
  }

  .lookbook-lightbox-swiper .swiper-slide {
    width: 100%;
    height: 100%;
  }

  .lookbook-lightbox__img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .lookbook-lightbox-prev {
    left: max(0.5rem, env(safe-area-inset-left));
  }

  .lookbook-lightbox-next {
    right: max(0.5rem, env(safe-area-inset-right));
  }

  .lookbook-lightbox__close {
    top: max(0.5rem, env(safe-area-inset-top));
    right: max(0.5rem, env(safe-area-inset-right));
  }
}

/* Video Book section – match Lookbook container size (16:9, full width, match menu cards radius) */
.videobook-wrapper {
  margin-top: 1rem;
}

#videobook .videobook-trigger {
  border-radius: 5px;
}

.videobook-wrapper .videobook-poster-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 5px;
}

/* Video Book play button: semi-transparent dark circle, white triangle, soft edges, no border */
.videobook-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(45, 55, 72, 0.55);
  border: none;
  transition: background 0.2s;
}

.videobook-trigger:hover .videobook-play-btn {
  background: rgba(45, 55, 72, 0.7);
}

.videobook-play-btn__icon {
  color: #fff;
  font-size: 1.5rem;
  margin-left: 0.25rem;
}

@media (min-width: 768px) {
  .videobook-play-btn {
    width: 6rem;
    height: 6rem;
  }

  .videobook-play-btn__icon {
    font-size: 1.75rem;
    margin-left: 0.3rem;
  }
}

.videobook-trigger:focus {
  outline: none;
}

/* Video Book lightbox: same pattern as lookbook, single video + close */
.videobook-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  min-height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.videobook-lightbox--open {
  opacity: 1;
  visibility: visible;
}

.videobook-lightbox__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  cursor: pointer;
}

.videobook-lightbox__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 95vw;
  max-height: 90vh;
  width: 100%;
}

.videobook-lightbox__video-wrap {
  width: 100%;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.videobook-lightbox__video {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.videobook-lightbox__close {
  position: absolute;
  top: -0.5rem;
  right: 16px;
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  pointer-events: auto;
}

.videobook-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

@media (max-width: 767px) {
  .videobook-lightbox {
    padding: 0;
    height: 100dvh;
    height: 100vh;
    min-height: -webkit-fill-available;
    align-items: stretch;
    justify-content: stretch;
  }

  .videobook-lightbox__content {
    position: relative;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
    padding: 0;
    box-sizing: border-box;
    display: block;
  }

  .videobook-lightbox__video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .videobook-lightbox__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
  }

  .videobook-lightbox__close {
    position: absolute;
    top: max(0.5rem, env(safe-area-inset-top));
    right: max(0.5rem, env(safe-area-inset-right));
    z-index: 10;
  }
}

.footer-main {
  position: relative;
  z-index: 10;
  background-color: #0a0a0a;
  width: 100%;
  box-sizing: border-box;
  z-index: 25;
}

/* Desktop footer: centered content block with equal side space, column layout like reference */
@media (min-width: 768px) {
  .footer-main-inner-desktop {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-main-inner-desktop>div:first-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2.5rem 3rem;
    padding-bottom: 2.5rem;
  }

  /* Column 1: logo + description – left-aligned, constrained width */
  .footer-main-inner-desktop .flex>div:first-child {
    flex: 0 1 auto;
    max-width: 420px;
    min-width: 0;
  }

  /* Columns 2 & 3 (Get in touch, Follow us) – left-aligned, consistent spacing */
  .footer-main-inner-desktop .flex>div:nth-child(2),
  .footer-main-inner-desktop .flex>div:nth-child(3) {
    flex: 0 0 auto;
    text-align: left;
  }
}

/* Mobile footer: same horizontal padding as sections, improved text alignment and spacing */
@media (max-width: 767px) {
  .footer-main {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .footer-main .footer-mobile-inner p:first-of-type {
    text-align: left;
    line-height: 1.6;
    max-width: 100%;
    font-size: 18px;
    font-family: "neue";
  }
}

/* Menu kit: card border radius (override Tailwind rounded-sm) */
#menu .menu-kit-item {
  border-radius: 5px;
  overflow: hidden;
}

#menu .menu-kit-item>div:first-child {
  border-radius: 5px;
}

/* Menu kit: GPU-friendly hover (opacity + transform only to avoid layout reflow lag) */
.menu-kit-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.78) 35%, rgba(0, 0, 0, 0.5) 65%, rgba(0, 0, 0, 0.25) 100%);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Hover content: same duration as label for smooth crossfade, no delay, no movement */
.menu-kit-item .menu-kit-hover-content {
  display: flex;
  opacity: 0;
  transform: translateZ(0);
  transition: opacity 0.3s ease-out;
  pointer-events: none;
  backface-visibility: hidden;
}

.menu-kit-item.group:hover .menu-kit-hover-content {
  opacity: 1;
  pointer-events: auto;
}

/* Default label: crossfade with hover content (same 0.3s, no delay) */
.menu-kit-item .menu-kit-label {
  transition: opacity 0.3s ease-out;
  transform: translateZ(0);
  backface-visibility: hidden;
  padding-bottom: 40px;
}

.menu-kit-item.group:hover .menu-kit-label {
  opacity: 0;
}

/* Mobile: always show hover content (no click needed); same fonts as desktop */
@media (max-width: 767px) {
  .menu-kit-item {
    cursor: default;
  }

  /* Always show the hover content and overlay on mobile */
  .menu-kit-item .menu-kit-hover-content {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    display: flex !important;
  }

  .menu-kit-item .menu-kit-overlay {
    opacity: 1 !important;
  }

  .menu-kit-item .menu-kit-label {
    opacity: 0 !important;
  }

  .menu-kit-item .menu-kit-content-wrap {
    justify-content: center !important;
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  #menu .menu-kit-label,
  #menu .menu-kit-hover-content>span:first-child,
  #menu .menu-kit-hover-content .menu-kit-points,
  #menu .menu-kit-hover-content .menu-kit-points li {
    font-family: "neue-bold", sans-serif;
    line-height: 1.2;
  }

  #menu .menu-kit-hover-content .menu-kit-points,
  #menu .menu-kit-hover-content .menu-kit-points li {
    font-family: "neue", sans-serif;
    line-height: 1.2;
  }

  /* Larger font sizes for menu card content on mobile */
  #menu .menu-kit-label {
    font-size: 1.35rem;
    /* ~22px, up from 18px */
  }

  #menu .menu-kit-hover-content>span:first-child {
    font-size: 1.2rem;
    /* ~19px, up from 16px */
  }

  #menu .menu-kit-hover-content .menu-kit-points,
  #menu .menu-kit-hover-content .menu-kit-points li {
    font-size: 1rem;
    /* 16px, up from 12px */
  }

  /* Same overlay as desktop – just show it on expanded (Tailwind has opacity-0) */
  .menu-kit-item.menu-kit-item--expanded .menu-kit-overlay {
    opacity: 1 !important;
  }

  /* Same fade-in as desktop (opacity transition from base .menu-kit-hover-content) */
  .menu-kit-item.menu-kit-item--expanded .menu-kit-hover-content {
    opacity: 1 !important;
    pointer-events: auto;
    display: flex !important;
    overflow: visible;
  }

  .menu-kit-item.menu-kit-item--expanded .menu-kit-label {
    opacity: 0 !important;
  }

  /* Same layout as desktop hover: content centered in card, no scroll (override desktop hover padding for mobile) */
  .menu-kit-item.menu-kit-item--expanded .menu-kit-content-wrap,
  .menu-kit-item.menu-kit-item--expanded.group:hover .menu-kit-content-wrap {
    justify-content: center !important;
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .menu-kit-item.menu-kit-item--expanded .menu-kit-content-wrap {
    z-index: 2;
  }

  .menu-kit-item.menu-kit-item--expanded .menu-kit-overlay {
    z-index: 1;
  }
}

/* Content wrapper: no transition (avoids layout reflow); always full cover */
.menu-kit-item .menu-kit-content-wrap {
  inset: 0;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.menu-kit-item.group:hover .menu-kit-content-wrap {
  justify-content: center;
  padding-top: 15.25rem;
  padding-bottom: 22.25rem;
}

/* Hover content block: centered layout like reference – heading, then substantial gap, then list */
.menu-kit-item .menu-kit-hover-content {
  gap: 0;
  text-align: center;
  padding: 0 1rem;
  box-sizing: border-box;
}

.menu-kit-item .menu-kit-hover-content>span:first-child {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.35;
}

/* Two-line heading: clear spacing between lines */
.menu-kit-item .menu-kit-hover-content>span:first-child .block+.block {
  margin-top: 0.25rem;
}

.menu-kit-item .menu-kit-hover-content .menu-kit-points {
  list-style: none;
  margin: 0;
  padding: 0 1rem;
  width: 100%;
  max-width: 22em;
  text-align: center;
}

.menu-kit-item .menu-kit-hover-content .menu-kit-points .menu-kit-point {
  display: block;
  text-align: center;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.menu-kit-item .menu-kit-hover-content .menu-kit-points .menu-kit-point:last-child {
  margin-bottom: 0;
}

.menu-kit-item .menu-kit-hover-content .menu-kit-points .menu-kit-point-title {
  display: block;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.35rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.menu-kit-item .menu-kit-hover-content .menu-kit-points .menu-kit-point-desc {
  display: block;
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .menu-kit-item .menu-kit-hover-content .menu-kit-points .menu-kit-point-title {
    font-size: 0.9375rem;
  }

  .menu-kit-item .menu-kit-hover-content .menu-kit-points .menu-kit-point-desc {
    font-size: 0.875rem;
  }
}

/* Image zoom: transform only, GPU layer */
/* .menu-kit-item .relative img {
  transition: transform 0.35s ease-out;
  transform: translateZ(0);
  backface-visibility: hidden;
} */

/* .menu-kit-item.group:hover .relative img {
  transform: scale(1.05) translateZ(0);
} */

/* Product section: no overflow hidden so position:sticky works on cards */
#product.product-section-sticky {
  overflow: visible;
}

/* Mobile only: taller product tier image container */
@media (max-width: 767px) {
  #product .product-tier-image-wrap {
    aspect-ratio: 4/3;
  }
}

/* Desktop: keep original aspect ratio (overrides any mobile rule above 767px) */
@media (min-width: 768px) {
  #product .product-tier-image-wrap {
    aspect-ratio: 16/8;
  }
}

/* Mobile: product section – stacked columns, larger font sizes */
@media (max-width: 767px) {
  .product-tier-grid {
    grid-template-columns: 1fr;
  }

  .product-tier-col--product p {
    max-width: 100%;
  }

  /* Larger font sizes for product tier content on mobile */
  #product .product-tier-info h3 {
    font-size: 1.35rem;
    /* ~22px, up from 18px */
  }

  #product .product-tier-desc {
    font-size: 1.1rem;
    /* ~18px, up from 14px */
  }

  #product .product-tier-col h4 {
    font-size: 1.15rem;
    /* ~18px, up from 14px */
  }

  #product .product-tier-col p {
    font-size: 1rem;
    /* 16px, up from 14px */
  }
}

/* Product section: sticky stack – on scroll, each card sticks and the next overlaps on top */
.product-tiers-stack {
  position: relative;
  padding-bottom: 2rem;
}

/* Tier card: custom gray → white → gray gradient */
.product-tier-card {
  position: sticky;
  top: 0;
  background: linear-gradient(to right, #A2A2A2 0%, #FFFFFF 64%, #9F9F9F 100%);
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease;
}

.product-tier-info,
.product-tier-grid {
  background: transparent !important;
}

/* Tier text width and alignment: two equal-width columns, strict left align, consistent text width */
.product-tier-info,
.product-tier-grid {
  text-align: left;
}

.product-tier-info h3,
.product-tier-info .product-tier-desc {
  text-align: left;
  width: 100%;
}

.product-tier-desc {
  max-width: 100%;
}

.product-tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.product-tier-col {
  text-align: left;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-tier-col h4,
.product-tier-col p {
  width: 100%;
  max-width: 100%;
  text-align: left;
}

.product-tier-col--product p {
  max-width: 100%;
}

/* First card stays at back, second and third stack on top when they scroll up */
.product-tiers-stack>.product-tier-card:nth-of-type(1) {
  z-index: 1;
}

.product-tiers-stack>.product-tier-card:nth-of-type(2) {
  z-index: 2;
}

.product-tiers-stack>.product-tier-card:nth-of-type(3) {
  z-index: 3;
}

/* Slight top offset so cards don't stick flush to viewport top (optional) */
@media (min-width: 768px) {
  .product-tier-card {
    top: 1.5rem;
  }
}