/* =============================================================================
   1. FONTS (all pages)
   ============================================================================= */

/* bodoni-moda-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/bodoni-moda-v28-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* bodoni-moda-italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Bodoni Moda';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/bodoni-moda-v28-latin-italic.woff2') format('woff2');
}
/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/montserrat-v31-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/montserrat-v31-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* =============================================================================
   2. GLOBAL BASE (all pages)
   ============================================================================= */

* { box-sizing: border-box; }

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  background: #F9F8F4;
  color: #666666;
}

/* Sticky footer: main fills space between header (out of flow) and footer */
body > main {
  flex: 1 0 auto;
}

/* Typography */
h1 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #111111;
}
h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
h2 {
  font-size: 1.2rem;
}
h3 {
  font-size: .8rem;
  margin: 1.5em 0;
}
h6 {
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 1em 0 0 0;
  color: #bbbbbb;
}
p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
ol, ul {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  list-style: disc;
  padding-left: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: #D7798E;
}

.text_center {
  text-align: center;
}


/* =============================================================================
   3. LAYOUT (all pages; product uses a narrower wrap)
   ============================================================================= */

.wrap {
  width: min(1920px, calc(100% - 2rem));
  max-width: 1920px;
  margin: 0 auto;
}

body.page-product .wrap {
  width: min(1200px, calc(100% - 2rem));
  max-width: 1200px;
}


/* =============================================================================
   4. SITE CHROME — header & footer (all pages)
   ============================================================================= */

.site-header {
  width: 100%;
  padding: 1rem;
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.30),
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0)
  );
}
.logo-header {
  transition: all 0.2s ease;
  display: block;
  height: 80px;
  width: 80px;
  background-image: url('/assets/images/lgs-logo-color-w.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.5));
  text-indent: -9999px;
}
@media (min-width: 768px) {
  .site-header {
    padding: 1rem 2rem;
  }
  .logo-header {
    height: 90px;
    width: 90px;
  }
}
@media (min-width: 1200px) {
  .logo-header {
    height: 100px;
    width: 100px;
  }
}

nav {
  display: flex;
  gap: 1rem;
}
nav p {
  padding: 0;
  margin-top: -1rem;
}
nav a {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
nav a:hover {
  color: #222222;
  text-shadow: none;
}

.site-footer {
  flex-shrink: 0;
  margin-top: 4rem;
  border-top: 1px solid #eeeeee;
  padding: 10rem 0;
  text-align: center;
  background: #ffffff;
}
.logo-footer {
  display: block;
  height: 160px;
  width: 160px;
  background-image: url('/assets/images/lgs-logo-bw.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  /* padding-left: 100px; */
  text-indent: -9999px;
  margin: 0 auto 5rem auto;
}
footer nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
footer nav a {
  color: #000000;
  text-shadow: none;
  text-decoration: none;
}
footer nav a:hover {
  color: #D6798E;
  text-decoration: underline;
}


/* =============================================================================
   5. SHARED COMPONENTS — grids, cards, buttons (multiple pages)
   ============================================================================= */

.button {
  display: inline-block;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #111;
  border-radius: 6px;
}

.text_link {
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0;
  padding: 0;
  color: #D7798E;
  background: none;
  display: inline-flex;
  align-items: center;
}
.text_link::after {
  content: "";
  flex-shrink: 0;
  width: 0.6em;
  height: 0.6em;
  margin-left: 0.4em;
  margin-top: -0.2em;
  border-right: 0.2em solid currentColor;
  border-bottom: 0.2em solid currentColor;
  transform: rotate(45deg);
  box-sizing: border-box;
}
.text_link:hover {
  color: #000000;
  /* text-decoration: underline; */
}

.grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); */
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.card {
  overflow: hidden;
}


/* =============================================================================
   6. SHARED — media frames (listing cards + product gallery)
   ============================================================================= */

.media-frame-wrapper {
  margin-bottom: 2rem;
}
.media-frame-wrapper .section-title {
  /* text-align: center; */
  padding: 1rem 0;
  border-bottom: 1px solid #cccccc;
}
.media-frame {
  aspect-ratio: 1 / 1;
  background: #222;
  overflow: hidden;
  margin: 2rem 0;
}
.media-frame:has(video) {
  aspect-ratio: 16 / 9;
}
.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-frame-wrapper .media-frame--preview {
  position: relative;
}
.preview-video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 6rem;
  height: 6rem;
  padding: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.25s ease;
  z-index: 2;
}
.preview-video-play:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}
.preview-video-play:focus-visible {
  outline-offset: 3px;
}
.preview-video-play-icon {
  width: 75%;
  height: 75%;
}
.media-frame--preview.is-playing .preview-video-play {
  opacity: 0;
  pointer-events: none;
}


/* =============================================================================
   7. BROWSE / PRODUCT LISTING (/products/)
   ============================================================================= */

.page-hero-wrapper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 4rem;
}
.page-hero {
  position: relative;
  height: 10vh;
  overflow: hidden;
}
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: grayscale(100%) brightness(1.0) contrast(1.0) opacity(0.5);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  /* background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.30)
  ); */
}

.page-hero-content {
  max-width: 720px;
  color: white;
}

.page-hero-content h1 {
  margin: 0 0 0.5rem;
}

.page-hero-content p {
  margin: 0;
}

.products-page-header {
  margin: 1.25rem auto;
  text-align: center;
  border-bottom: 1px solid #cccccc;
}
.products-page-title {
  margin: 0;
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #111111;
}

.grid--products {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
@media (min-width: 1100px) {
  .grid--products {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card--product {
  display: flex;
  flex-direction: column;
}
.card--product .card__media-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.card--product .media-frame--card {
  position: relative;
  margin: 0;
  margin-bottom: .5rem;
  border-radius: 0;
}
.card--product .card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}
.card--product .card__title {
  font-size: 1rem;
  line-height: 1;
  padding: 0;
  margin: 0;
}
.card--product .card__title a {
  color: inherit;
  text-decoration: none;
}
.card--product .card__title a:hover {
  text-decoration: underline;
}
.card--product .card__subtitle {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.85;
}
.card--product .price {
  margin: 0;
  font-weight: 700;
}
.card--product .card__actions {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}
.featured-product-card__actions .download-btn {
  display: inline-block;
  margin: 0 auto;
  padding: 1rem 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: bold;
  color: #000000;
  background-color: #D7798E;
}
.featured-product-card__actions  .download-btn:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin: 2rem 0 1rem;
  font-size: 0.875rem;
}
.pagination__prev,
.pagination__next {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: inherit;
  text-decoration: none;
}
.pagination__prev:hover,
.pagination__next:hover {
  text-decoration: underline;
}
.pagination__pages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pagination__pages li {
  margin: 0;
}
.pagination__page,
.pagination__page--current {
  display: inline-flex;
  min-width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.35rem;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}
.pagination__page:hover {
  background: rgba(255, 255, 255, 0.08);
}
.pagination__page--current {
  background: #fff;
  color: #111;
}
.pagination__prev--disabled,
.pagination__next--disabled {
  opacity: 0.35;
  cursor: not-allowed;
}


/* =============================================================================
   8. HERO SLIDESHOW — home + product detail (Cycle2)
   ============================================================================= */

.hero-slideshow-wrapper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 4rem;
}
.hero-slideshow {
  position: relative;
  height: 80vh;
}
.hero-slideshow-wrapper--compact {
  margin-bottom: 2.5rem;
}
.hero-slideshow-wrapper--compact .hero-slideshow {
  height: min(38vh, 420px);
  min-height: 200px;
}
/* @media (min-width: 768px) {
  .hero-slideshow {
    height: 65vh;
  }
} */
/* @media (min-width: 1024px) {
  .hero-slideshow {
    height: 80vh;
  }
} */
@media (min-width: 1024px) {
  .homepage .hero-slideshow {
    height: 100vh;
  }
}
.hero-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.homepage .hero-slideshow img {
  filter: grayscale(0%) brightness(1.1) contrast(1.1);
}
/* Cycle2 pager dots */
.cycle-pager {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  z-index: 9999;
  height: 20px;
}
.cycle-pager span {
  display: inline-block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #cccccc;
  cursor: pointer;
  transition: background 0.2s;
  /* Hide Cycle2 default &bull; if pagerTemplate isn’t overridden */
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.cycle-pager span:hover {
  background: #cccccc;
  transition: background 0.2s;
}
.cycle-pager .cycle-pager-active {
  border:2px solid #E7708E;
  background: #E7708E;
}
.cycle-pager .cycle-pager-active:hover{
  border:2px solid #E7708E;
  background: #E7708E;
  transition: background 0.2s;
}
/* Hero slideshow click zones (match lightbox left/right nav behavior) */
.hero-slideshow-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 8888;
  pointer-events: none;
}
.hero-slideshow-nav a {
  pointer-events: auto;
  outline: none;
}
.hero-slide-prev,
.hero-slide-next {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  cursor: pointer;
  display: block;
  background-repeat: no-repeat;
}
.hero-slide-prev {
  left: 0;
  background-image: url('/assets/images/prev.png');
  background-size: 40px;
  background-position: left 48%;
}
.hero-slide-next {
  right: 0;
  background-image: url('/assets/images/next.png');
  background-size: 30px 30px;
  background-position: right 48%;
}


.homepage-intro-wrapper {
  text-align: center;
  color: #222;
  margin: 0 auto;
  padding: 2rem 0;
}
.homepage-intro-content {
  border: 1px solid #cccccc;
  color: #222;
  max-width: 900px;
  padding: 2rem;
  margin: 2rem auto;
}
@media (min-width: 1024px) {
  .homepage-intro-content {
    padding: 4rem;
  }
}
.homepage-intro-content p {
  font-size: 1.2rem;
}



/* =============================================================================
   9. HOME — slideshow overlay, featured strip, product carousel
   ============================================================================= */

/* Hero copy + CTA: above nav hit targets; pointer-events pass through except CTA */
.hero-slideshow-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8890;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.50),
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0)
  );
}
.hero-slideshow-overlay__inner {
  max-width: 36rem;
  width: 100%;
  text-align: center;
  pointer-events: none;
  padding-bottom: 2rem;
}
.hero-slideshow-overlay__title {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: #fff;
  font-size: 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}
.hero-slideshow-overlay__desc {
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}
.hero-slideshow-overlay__cta {
  pointer-events: auto;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: #D6798E;
  color: #111111;
  max-width: 320px!important;
  padding: 1rem 2rem;
}
.hero-slideshow-overlay__cta:hover {
  text-decoration: none;
  background: #000000;
  color: #ffffff;
}

.home-featured {
  margin: 2rem 0;
}
.home-featured h2 {
  margin: 0 0 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #111111;
}
.home-featured .section-title {
  /* text-align: center; */
  padding: 1rem 0;
  border-bottom: 1px solid #cccccc;
}


.home-featured__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .home-featured__list {
    flex-direction: row;
    align-items: stretch;
  }
  .home-featured__list > .featured-product-card {
    flex: 1 1 0;
    min-width: 0;
  }
}

.featured-product-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}
.featured-product-card__media-link {
  display: block;
  width: 100%;
  flex: none;
  text-decoration: none;
  color: inherit;
}
.featured-product-card__media {
  position: relative;
  min-height: 12rem;
  margin: 0;
  margin-bottom: .5rem;
  aspect-ratio: 1 / 1;
  /* aspect-ratio: 16 / 9; */
  background: #e5e5e5;
  overflow: hidden;
}
.featured-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* .featured-product-card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}
.featured-product-card__play::after {
  content: "";
  position: absolute;
  left: 55%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 0.55rem 0 0.55rem 0.85rem;
  border-color: transparent transparent transparent #ffffff;
} */

.featured-product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.featured-product-card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}
.featured-product-card__title a {
  color: inherit;
  text-decoration: none;
}
.featured-product-card__title a:hover {
  text-decoration: underline;
}
.featured-product-card__price {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
}
.featured-product-card__desc {
  margin: 0;
  padding-top: 0.25rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #333333;
  flex: 1;
}

.featured-product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.button--featured-cart {
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
}
.button--featured-cart:hover {
  background: #333333;
  border-color: #333333;
  color: #ffffff;
}

.button--featured-outline {
  background: #ffffff;
  color: #111111;
  border: 1px solid #111111;
}
.button--featured-outline:hover {
  background: #f5f5f5;
}

/* Swiper: homepage product cards (also below product detail) */
.home-products-carousel-wrapper {
  margin: 10rem auto;
  overflow: hidden;
}
.home-products-carousel-wrapper .section-title {
  /* text-align: center; */
  padding: 1rem 0;
  border-bottom: 1px solid #cccccc;
}
.home-products-swiper {
  position: relative;
  padding-bottom: 0;
  overflow: visible;
}
.home-products-swiper .swiper-slide {
  width: min(100%, 290px);
  height: auto;
}
.home-products-swiper .card--product {
  height: 100%;
}
.home-products-swiper__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1rem;
}
.home-products-swiper__controls .home-products-swiper__pagination {
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  width: auto !important;
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  align-items: end;
  gap: 0.35rem;
}
.home-products-swiper__pagination .swiper-pagination-bullet-active {
  background: #E7708E;
}
.home-products-swiper__controls .home-products-swiper__nav {
  position: relative !important;
  inset: auto !important;
  margin: 0 !important;
  transform: none !important;
  flex-shrink: 0;
  color: #000000;
  height: 30px;
}
.home-products-swiper__controls .home-products-swiper__nav:hover {
  color: #E7708E;
}
.home-products-swiper__nav::after {
  font-size: 1.25rem;
}

.home-newsletter {
  margin: 6rem auto;
  max-width: 800px;
  background: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border: 1px solid #cccccc;
}
/* .home-newsletter__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0 0 1rem;
} */
.home-newsletter .section-title {
  /* margin: 0; */
  padding: 1rem 0 0 0;
  text-align: center;
  /* border-bottom: 1px solid #cccccc; */
}
.home-newsletter__copy {
  max-width: 60ch;
  text-align: center;
  margin: 2rem auto;
}
.home-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.home-newsletter__form input[type="email"] {
  flex: 1 1 280px;
  min-height: 46px;
  padding: 0.75rem 0.9rem;
  border: 1px solid #cccccc;
  font: inherit;
}
.home-newsletter__form .button {
  width: auto;
  max-width: none;
  min-height: 46px;
  padding-inline: 1.25rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


/* =============================================================================
   10. PRODUCT DETAIL (body.page-product content)
   ============================================================================= */

.product-hero {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.meta {
  margin: 1.5rem 0;
}

.product-description-wrapper {
  color: #222;
  margin: 4rem 0;
}

@media (min-width: 1024px) {
  .product-description-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}


.subpage-content-wrapper{
  width: 100%;
}
.subpage-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
.subpage-content h2 {
  margin: 2rem 0 1rem 0;
}
.subpage-content a {
  font-weight: 700;
  color: #D7708E;
  text-decoration: underline;
}
.subpage-content a:hover {
  color: #000000;
  text-decoration: none;
}

.cancel-browse-all {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
}


.image-grid-wrapper {
  margin: 6rem 0;
}
.image-grid-wrapper .section-title {
  /* text-align: center; */
  padding: 1rem 0;
  border-bottom: 1px solid #cccccc;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin: 2rem 0;
}
.image-grid a {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}
.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lightbox img {
  cursor: pointer;
}
.image-grid a.image-grid-extra {
  display: none;
}
.image-grid-wrapper.is-expanded .image-grid a.image-grid-extra {
  display: block;
}
.image-grid-view-all-wrapper {
  text-align: left;
  margin: 0;
  margin-top: -1rem;
}
.image-grid-wrapper.is-expanded .image-grid-view-all-wrapper {
  display: none;
}
/* Center Lightbox2 when open only (see lightbox.js: lb-lightbox-open) */
body.lb-lightbox-open #lightbox.lightbox {
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  min-height: 100vh !important;
  min-height: 100dvh !important;/* better on mobile browsers */
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;/* keeps image off edges on small screens */
  padding: 1rem;
  background-color: transparent;
}

.download-wrapper {
  width: 100%;
  margin: 2rem auto;
  border: 1px solid #cccccc;
  padding: 0 1rem;
}
.button {
  width: 100%;
  max-width: 440px;
  font-size: 1rem;
  border-radius: 0;
  text-align: center;
}
button.download-btn {
  cursor: pointer;
  border: none;
  font: inherit;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: bold;
}
.download-btn {
  display: inline-block;
  padding: 1rem 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: bold;
  color: #000000;
  background-color: #D7798E;
}
.download-btn:hover {
  background-color: #000000;
  color: #FFFFFF;
}
.button--cart.download-btn {
  display: inline-block;
  padding: 1rem 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: bold;
  color: #FFFFFF;
  background-color: #000000;
}
.button--cart.download-btn:hover {
  background-color: #D7798E;
  color: #000000;
}

/* Success page */
.success-status {
  text-align: center;
  margin: 4rem 0;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.6);
}
.success-status .download-btn {
  display: inline-block;
  padding: 1rem 2rem;
  margin: 1rem 0;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-decoration: none;
}
.success-status .btn--primary {
  background: #D7798E;
  color: #000000;
  text-decoration: none;
}
.success-status .btn--primary:hover {
  background: #000;
  color: #fff;
}