* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --accent: #00d4ff;
  --container: 1400px;
  --section-x: 40px;
  --section-y: 80px;
  --divider: rgba(0, 0, 0, 0.10);
  --divider-invert: rgba(255, 255, 255, 0.12);
  --header-h: 96px; /* JS will override */
  /* Hero top alignment for TITAN1 + specs (tuned lower as requested) */
  --hero-pad-top: 15.5rem;
}

@media (max-width: 768px) {:root {
    --section-x: 1.5rem;
    --section-y: 4rem;
    --hero-pad-top: 12.25rem;
  }}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: white;
  overflow-x: hidden;
}

/* ✅ HERO */
/* ✅ Layout tokens */
.container{
  max-width: var(--container);
  margin: 0 auto;
}

.section-pad{
  padding: var(--section-y) var(--section-x);
}

.section-divider{
  height: 1px;
  background: var(--divider);
  width: min(var(--container), calc(100% - (var(--section-x) * 2)));
  margin: 0 auto;
}

/* Give sections a subtle 1px separation */
section:not(.hero-section){
  border-top: 1px solid var(--divider);
}

/* Lightbox lock */
body.is-locked{
  overflow: hidden;
}



.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;   /* ✅ was height: 100vh; */
  overflow: hidden;
}

.video-background {
  position: absolute;
  inset: 0;            /* ✅ was top/left/width/height */
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay {
  position: absolute;
  inset: 0;            /* ✅ was top/left/width/height */
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

/* ✅ SITE HEADER (fixed + premium sticky state) */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-sticky{
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 16px 40px rgba(0,0,0,0.24);
}

.header-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 2.1rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  transition: padding 220ms ease;
}

.site-header.is-sticky .header-inner{
  padding: 1.15rem 4rem;
}

.logo{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-img{
  height: 50px;  /* adjust to taste */
  filter: brightness(0) invert(1);
  width: auto;
  display: block;
}

.header.is-sticky .logo-img{
  height: 20px;
}

.main-nav{
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 8px 15px;
  border: 1px solid rgba(255,255,255,0.10);
}

.site-header.is-sticky .main-nav{
  background: rgba(255, 255, 255, 0.10);
}

.main-nav ul{
  display: flex;
  gap: 2rem;
  list-style: none;
}

.main-nav a{
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 8px 16px;
  display: block;
  opacity: 0.92;
  position: relative;
  transition: opacity 180ms ease;
}

.main-nav a::after{
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  opacity: 0.95;
}

.main-nav a:hover{
  opacity: 1;
}

.main-nav a:hover::after{
  transform: scaleX(1);
}

@media (max-width: 768px){.header-inner{
    padding: 1.25rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
  }

  .site-header.is-sticky .header-inner{
    padding: 0.9rem 1.5rem;
  }

  .main-nav{
    width: 100%;
    padding: 10px;
  }

  .main-nav ul{
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .main-nav a{
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  .main-nav a::after{
    left: 12px;
    right: 12px;
    bottom: 4px;
  }}

/* ✅ Anchor offset for fixed header */
section[id]{
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.hero-content {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--hero-pad-top) 4rem; /* aligned with header */
  z-index: 10;
}

.hero-title{
  font-family: "League Spartan", "Bebas Neue", "Oswald", "Arial Black", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.9;
  font-size: 4.8rem;
}

.hero-title__num{
  color: rgba(255,255,255,0.45); /* grey-ish like your reference */
  margin-left: 0.02em;
}

.hero-subtitle {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.hero-description {
  max-width: 500px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.specs {
  position: absolute;
  top: var(--hero-pad-top);
  transform: none;
  text-align: right;

  /* aligned to same 1400px container as header/pill */
  right: max(4rem, calc((100vw - 1400px) / 2 + 4rem));
  z-index: 10; /* ✅ ensure above overlay */
}

.spec-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.spec-value {
  font-size: 1rem;
  font-weight: 600;
}

.spec-item {
  margin-bottom: 2rem;
}

/* ✅ MOBILE: single clean block (no conflicting paddings) */
@media (max-width: 768px) {.hero-content {
    padding: var(--hero-pad-top) 1.5rem; /* ✅ keep inline with header */
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 0.9rem;
    max-width: 100%;
  }

  /* ✅ Make specs visible + aligned (no clipping now because hero can grow) */
  .specs {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    text-align: left;

    max-width: 1400px;
    margin: 2.5rem auto 0;
    padding: 0 1.5rem;
  }

  .spec-item {
    margin-bottom: 1.5rem;
  }

  .spec-value {
    font-size: 1.5rem;
  }}

/* Product Gallery Section */
.product-gallery {
  position: relative;
  background: #e8e8e8;
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  /* Background behind the slider (place the file in /images/) */
  --product-gallery-bg: url("images/adventure-1851092_1920.jpg");
}

.gallery-container {
  position: relative;
  isolation: isolate; /* ensures ::before stays behind content */
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.gallery-container::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--product-gallery-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.10;          /* subtle */
  filter: saturate(0.9) contrast(1.05);
  pointer-events: none;
  z-index: 0;
}

/* keep slider + arrows above the background */
.gallery-container > *{
  position: relative;
  z-index: 1;
}

.gallery-nav {
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gallery-nav:hover {
  opacity: 0.6;
}

.gallery-nav.prev {
  left: 3rem;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
}

.gallery-nav.next {
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  background: #656548;
  color: white;
  padding: 1.5rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
}

.product-showcase {
  width: 100%;
  max-width: 900px;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none; /* prevent hidden slides stealing clicks */
  z-index: 1;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.slide.active {
  opacity: 1;
}

.product-info {
  background: white;
  padding: 3rem 4rem;
  color: #333;
}

.info-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.product-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.product-description {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: #333;
}

.product-features {
  list-style: none;
  margin-bottom: 3rem;
  padding-left: 0;
}

.product-features li {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: #333;
  padding-left: 1.2rem;
  position: relative;
}

.product-features li:before {
  content: "•";
  position: absolute;
  left: 0;
}

.product-cta {
  border-top: 1px solid #ddd;
  padding: 2.5rem 0;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.product-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 4px;
  margin: 0;
}

.buy-button {
  background: #000;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;

  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.buy-button .icon{
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.buy-button:hover {
  background: #333;
}

.shipping-info {
  font-size: 0.85rem;
  color: #666;
  margin-top: 2rem;

  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.shipping-info .icon{
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid #ddd;
  padding-top: 2.5rem;
}

.spec-box {
  text-align: center;
}

.spec-title {
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.spec-detail {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

@media (max-width: 968px) {.product-showcase {
    height: 50vh;
  }

  .gallery-nav.prev {
    left: 1rem;
  }

  .gallery-nav.next {
    right: 1rem;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .product-info {
    padding: 2rem 1.5rem;
  }

  .product-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .product-title {
    font-size: 2rem;
  }

  .buy-button {
    width: 100%;
    padding: 1rem;
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }}

/* Cooking Modes Section */
.cooking-modes {
  background: #f0f0f0;
  padding: 80px 40px;
}

.modes-header{
  max-width: 1400px;
  margin: 0 auto 36px;
}

.modes-kicker{
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  color: rgba(0,0,0,0.55);
  position: relative;
}

.modes-kicker::after{
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  background: var(--accent);
  margin-top: 10px;
}

.modes-title{
  font-size: 44px;
  font-weight: 700;
  margin: 14px 0 10px 0;
  color: #111;
  letter-spacing: 0.2px;
}

.modes-subtitle{
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0,0,0,0.60);
  max-width: 720px;
}

.modes-grid{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

/* No “card frame” — square, clean */
.mode-card{
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.mode-image{
  width: 100%;
  height: auto;      /* ✅ no cropping, no letterbox frame */
  display: block;
  border-radius: 0;  /* ✅ square corners */
}

.mode-content{
  padding: 18px 0 0 0;
}

.mode-title{
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #111;
  letter-spacing: 0.2px;
}

.mode-description{
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0,0,0,0.68);
  margin: 0;
  max-width: 520px;
}

/* “Best for / Setup” row */
.mode-meta{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.mode-meta-item{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mode-meta-label{
  font-size: 11px;
  letter-spacing: 1.6px;
  font-weight: 700;
  color: rgba(0,0,0,0.55);
  text-transform: uppercase;
}

.mode-meta-value{
  font-size: 13px;
  font-weight: 600;
  color: rgba(0,0,0,0.85);
}

@media (max-width: 968px){.cooking-modes{
    padding: 4rem 1.5rem;
  }

  .modes-title{
    font-size: 32px;
  }

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

  .mode-description{
    max-width: 100%;
  }}
/* Horizontal Video Section (UPDATED: center/focus the grill) */
.video-section {
  width: 100%;
  height: clamp(320px, 45vw, 650px);
  overflow: hidden;
  background: #000;
}

.horizontal-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 70%;
}

/* Accessories Section */
.accessories-section {
  background: #f5f5f5;
  padding: 80px 40px;
}

.accessory-item {
  max-width: 1200px;
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.accessory-item:last-child {
  margin-bottom: 0;
}

.accessory-item.reverse .accessory-content {
  order: 2;
}

.accessory-item.reverse .accessory-image{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.accessory-img{
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
}

.accessory-content {
  padding: 20px;
}

.accessory-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1a1a1a;
}

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

.accessory-features li {
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.accessory-features li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1a1a1a;
}

.accessory-image{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

@media (max-width: 968px) {.accessory-item,
  .accessory-item.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .accessory-item.reverse .accessory-content,
  .accessory-item.reverse .accessory-image {
    order: initial;
  }

  .accessory-image {
    padding: 12px;
  }

  .accessories-section {
    padding: 4rem 1.5rem;
  }

  .accessory-item {
    margin-bottom: 60px;
  }

  .accessory-title {
    font-size: 24px;
  }

  .accessory-content {
    padding: 0;
  }}

/* Technical Sheet Section */
.technical-section {
  background: #f5f5f5;
  padding: 80px 40px;
}

.technical-container {
  max-width: 1200px;
  margin: 0 auto;
}

.technical-header {
  margin-bottom: 40px;
}

.technical-badge {
  display: inline-block;
  background: #656548;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 15px;
}

.technical-subtitle {
  font-size: 16px;
  color: #1a1a1a;
  margin: 15px 0 0 0;
}

.technical-specs {
  background: white;
  border-radius: 8px;
  overflow: hidden;
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 20px 30px;
  border-bottom: 1px solid #e5e5e5;
  align-items: center;
}

.spec-row:last-child {
  border-bottom: none;
}

.technical-section .spec-label {
  font-size: 13px;
  color: #666;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

.technical-section .spec-value {
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 400;
}

@media (max-width: 768px) {.spec-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 20px;
  }

  .technical-section {
    padding: 4rem 1.5rem;
  }

  .technical-badge {
    font-size: 12px;
    padding: 6px 16px;
  }

  .technical-subtitle {
    font-size: 14px;
  }}

/* Dual Video Section */
.dual-video-section {
  background: #f5f5f5;
  padding: 0;
}

.video-container-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 100%;
  margin: 0 auto;
}

.video-block {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  cursor: pointer;
}

.video-block video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 10;
  color: white;
  max-width: 400px;
}

.video-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #000;
}

.video-description {
  font-size: 15px;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0;
}

@media (max-width: 968px) {.video-container-dual {
    grid-template-columns: 1fr;
  }

  .video-block {
    height: 400px;
  }

  .video-overlay {
    top: 20px;
    left: 20px;
  }

  .video-title {
    font-size: 24px;
  }}

/* Gallery Section */
.gallery-section {
  background: #f5f5f5;
  border-top: 1px solid var(--line);
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-title {
  font-size: 42px;
  font-weight: 650;
  color: #111;
  margin: 8px 0 12px 0;
}

.social-icons {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid #e2e2e2;
  color: #111;
  text-decoration: none;
  background: rgba(255,255,255,0.65);
  transition: border-color 0.2s, transform 0.2s, color 0.2s;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 14px;
}

.gallery-item {
  margin: 0;
  background: transparent;
  border: none;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-item.large {
  grid-row: span 2;
}

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

@media (max-width: 968px) {.gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 220px);
  }

  .gallery-item.large {
    grid-row: span 1;
  }

  .gallery-title {
    font-size: 28px;
  }}

/* Shared section headings */
.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #777;
  margin: 0 0 10px 0;
}

.section-title {
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 650;
  color: #111;
  margin: 0 0 12px 0;
}

.section-lead {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

/* Anchor offset for sticky nav */
section[id] {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

/* Trust row */
.trust-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #555;
  font-size: 14px;
}

.trust-item .icon {
  width: 16px;
  height: 16px;
}

.order-note {
  margin: 10px 0 0 0;
  color: #666;
  font-size: 14px;
}

/* Bundle strip */




















@media (max-width: 900px) {}

@media (max-width: 520px){
  :root{ --orderbar-h: 88px; }

  

  .orderbar-left{ display:none; }

  .orderbar-inner{
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
  }

  .orderbar-title{ font-size: 11px; letter-spacing: 2px; }
  .orderbar-sub{ font-size: 10px; margin-top: 3px; }

  .orderbar-right{
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 12px;
  }

  .orderbar-meta{
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
  }

  .orderbar-sep{ display: none; }

  .orderbar-cta{
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
    font-size: 13px;
  }
}
@media (max-width: 520px) {}

/* Field notes */
.notes-section {
  background: #fff;
  border-top: 1px solid var(--line);
}

.notes-header {
  text-align: center;
  margin-bottom: 30px;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.note-card {
  border: 1px solid #e7e7e7;
  background: #fafafa;
  padding: 18px;
}

.note-icon{
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  background: rgba(0,0,0,0.06);
  color: #111;
}

.note-icon svg{
  width: 18px;
  height: 18px;
  display: block;
}

.note-icon svg *{
  stroke: currentColor; /* in case any paths lose stroke */
}

.note-card h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: #111;
}

.note-card p {
  margin: 0;
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}

@media (max-width: 900px) {.notes-grid {
    grid-template-columns: 1fr;
  }}

/* FAQ */
.faq-section {
  background: #f5f5f5;
  border-top: 1px solid var(--line);
}

.faq-header {
  text-align: center;
  margin-bottom: 26px;
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid #e7e7e7;
  background: #fff;
}

.faq-item {
  border-top: 1px solid #e7e7e7;
}

.faq-item:first-child {
  border-top: none;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 18px;
  font-weight: 600;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: #777;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
  color: var(--accent);
}

.faq-content {
  padding: 0 18px 18px 18px;
  color: #666;
  line-height: 1.7;
  font-size: 14px;
}

.faq-content p {
  margin: 0;
}

/* Local alignment overrides */
.contact-copy .section-lead {
  margin-left: 0;
  margin-right: 0;
  max-width: 62ch;
}

.contact-copy .section-title,
.contact-copy .section-eyebrow {
  text-align: left;
}

.contact-copy {
  text-align: left;
}

/* Contact */
.contact-section {
  background: #fff;
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
  align-items: start;
}

.contact-points {
  display: grid;
  gap: 10px;
  margin: 18px 0 0 0;
}

.contact-point {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #555;
  font-size: 14px;
}

.contact-point .icon {
  width: 18px;
  height: 18px;
}

.contact-small {
  margin: 14px 0 0 0;
  color: #777;
  font-size: 14px;
}

.text-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.text-link:hover {
  border-bottom-color: var(--accent);
}

.contact-form {
  border: 1px solid rgba(0,0,0,0.06);
  background: #fff;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

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

.form-full {
  display: block;
  margin-bottom: 12px;
}

.contact-form label span {
  display: block;
  font-size: 11px;
  color: #666;
  margin-bottom: 7px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid transparent;
  background: #f4f4f4;
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
  transition: box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  width: 100%;
  border: 1px solid transparent;
  background: #f4f4f4;
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
  transition: box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.form-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #111;
  color: #fff;
  padding: 14px 16px;
  font-weight: 650;
  border: 1px solid rgba(0,0,0,0.35);
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease;
}

.form-submit:hover {
  transform: translateY(-1px);
  filter: brightness(0.95);
}

.form-submit-ico svg {
  width: 18px;
  height: 18px;
}

.form-note {
  margin: 10px 0 0 0;
  color: #777;
  font-size: 13px;
  line-height: 1.5;
}

.form-status {
  margin: 10px 0 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #0b7a2e;
}

.form-status.is-error {
  color: #b00020;
}


/* Contact: full-screen thank you state (Web3Forms success) */
.contact-thanks {
  display: none;
}

.contact-section.is-thanks .contact-grid {
  display: none;
}

.contact-section.is-thanks .contact-thanks {
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  padding: 56px 22px;
  color: #111;
  background: #fff;
}

.contact-section.is-thanks .container.section-pad {
  padding-top: 0;
  padding-bottom: 0;
}

.contact-thanks-inner {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.thanks-title {
  margin: 18px 0 8px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.08;
  font-size: clamp(28px, 4.8vw, 56px);
}

.thanks-sub {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.thanks-check {
  width: 104px;
  height: 104px;
  margin: 0 auto;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(11, 122, 46, 0.10);
}

.thanks-check svg {
  width: 70px;
  height: 70px;
}

.thanks-check-ring,
.thanks-check-mark {
  fill: none;
  stroke: #0b7a2e;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thanks-check-ring {
  opacity: 0.25;
}

.thanks-anim {
  position: relative;
  height: 150px;
  width: min(560px, 100%);
  margin: 28px auto 0;
}

.thanks-mailbox {
  position: absolute;
  right: 0;
  bottom: 28px;
  width: 96px;
  height: 64px;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  background: #f7f7f7;
  transform: translateY(0);
}

.thanks-mailbox::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 18px;
  height: 8px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.18);
}

.thanks-mailbox::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 10px;
  width: 16px;
  height: 8px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
  transform-origin: left center;
  transform: rotate(-18deg);
}

.thanks-envelope {
  position: absolute;
  left: -8px;
  bottom: 56px;
  width: 56px;
  height: 36px;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  background: #fff;
  transform: rotate(-10deg);
  opacity: 0;
}

.thanks-envelope::before,
.thanks-envelope::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 50%;
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
  transform-origin: center;
}

.thanks-envelope::before {
  transform: translateY(-1px) rotate(28deg);
}

.thanks-envelope::after {
  transform: translateY(-1px) rotate(-28deg);
}

.thanks-bird {
  position: absolute;
  left: -18px;
  bottom: 96px;
  width: 34px;
  height: 24px;
  opacity: 0;
}

.thanks-bird::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 18px;
  height: 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
}

.thanks-bird::after {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 12px;
  border-radius: 0 12px 12px 0;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-left: 0;
  transform: rotate(-12deg);
}

.contact-thanks.is-run .thanks-envelope {
  animation: thanks-envelope-fly 2.1s ease-in-out forwards;
}

.contact-thanks.is-run .thanks-bird {
  animation: thanks-bird-fly 2.1s ease-in-out forwards;
}

.contact-thanks.is-run .thanks-mailbox {
  animation: thanks-mailbox-pop 0.35s ease-out 1.85s forwards;
}

.contact-thanks.is-run .thanks-check {
  animation: thanks-pop 420ms ease-out both;
}

.contact-thanks.is-run .thanks-check-mark {
  stroke-dasharray: 64;
  stroke-dashoffset: 64;
  animation: thanks-draw 520ms ease-out 220ms forwards;
}

@keyframes thanks-pop {
  from { transform: scale(0.82); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes thanks-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes thanks-bird-fly {
  0% { transform: translate(0, 0); opacity: 0; }
  12% { opacity: 1; }
  55% { transform: translate(calc(50% - 40px), -22px); }
  100% { transform: translate(calc(100% - 140px), 0); opacity: 1; }
}

@keyframes thanks-envelope-fly {
  0% { transform: translate(0, 0) rotate(-10deg); opacity: 0; }
  12% { opacity: 1; }
  70% { transform: translate(calc(65% - 60px), 10px) rotate(6deg); opacity: 1; }
  92% { transform: translate(calc(100% - 150px), 22px) rotate(10deg); opacity: 1; }
  100% { transform: translate(calc(100% - 150px), 22px) rotate(10deg); opacity: 0; }
}

@keyframes thanks-mailbox-pop {
  0% { transform: translateY(0); }
  60% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .contact-thanks.is-run .thanks-envelope,
  .contact-thanks.is-run .thanks-bird,
  .contact-thanks.is-run .thanks-mailbox,
  .contact-thanks.is-run .thanks-check,
  .contact-thanks.is-run .thanks-check-mark {
    animation: none !important;
  }

  .thanks-envelope,
  .thanks-bird {
    opacity: 1;
  }
}
.h-captcha {
  margin: 12px 0 10px;
}

@media (max-width: 900px) {.contact-grid {
    grid-template-columns: 1fr;
  }

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

/* Mobile sticky CTA */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0; /* remove light border frame around the button */
  background: #000;
  z-index: 1100;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}


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

.mobile-cta-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 15px 16px calc(15px + env(safe-area-inset-bottom));
}


.mobile-cta-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
}

.mobile-cta-left svg {
  width: 18px;
  height: 18px;
}

.mobile-cta-price {
  font-weight: 650;
  color: #fff;
  opacity: 0.95;
}

@media (min-width: 900px) {.mobile-cta {
    display: none;
  }}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 40px 30px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 80px;
  margin-bottom: 50px;
}

.footer-divider {
  background: #444;
  width: 1px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}


/* Footer: brand-only left column (no newsletter), centered */
.footer-left{
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
}

.footer-logo-img{
  height: 125px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-tagline {
  font-size: 14px;
  margin-bottom: 15px;
  color: #ccc;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.email-input {
  flex: 1;
  padding: 12px 15px;
  background: transparent;
  border: 1px solid #444;
  color: white;
  font-size: 14px;
}

.email-input::placeholder {
  color: #666;
}

.subscribe-btn {
  padding: 12px 25px;
  background: transparent;
  border: 1px solid #444;
  color: white;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.subscribe-btn:hover {
  background: #333;
}

.footer-note {
  font-size: 12px;
  color: #888;
}

.footer-right {
  position: relative;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 15px;
}

.scroll-top-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: #656548;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}

.scroll-top-btn:hover {
  background: #7a7a5a;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #888;
}

@media (max-width: 968px) {.gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }

  .gallery-item.large {
    grid-row: span 1;
  }

  .gallery-section {
    padding: 4rem 1.5rem;
  }

  .gallery-title {
    font-size: 28px;
  }

  .social-links {
    font-size: 13px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 1.5rem;
  }

  .footer-divider {
    display: none;
  }

  .footer {
    padding: 3rem 1.5rem 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .scroll-top-btn {
    position: static;
    margin-top: 20px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .email-input,
  .subscribe-btn {
    width: 100%;
  }}


/* ----------------------------
   Product Info refinements
   (clean, square, better rhythm)
-----------------------------*/
.product-info{
  padding: 4.5rem 4rem;
}

.product-top{
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
  align-items: start;
}

.product-copy .product-description{
  font-size: 1.15rem;
  line-height: 1.7;
  color: #1a1a1a;
  max-width: 70ch;
}

.product-copy .product-features{
  margin: 0;
}

.product-buy{
  border-left: 1px solid #e9e9e9;
  padding-left: 3rem;
}

.product-info .product-cta{
  border-top: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.25rem;
}

.product-actions{
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-info .buy-button{
  border-radius: 0;
  padding: 0.95rem 1.35rem;
}

.product-price{
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #111;
  white-space: nowrap;
}

.product-info .shipping-info{
  margin-top: 1.25rem;
  margin-bottom: 0;
  color: #666;
}

.product-info .specs-grid{
  border-top: 1px solid #e9e9e9;
  padding-top: 2rem;
  margin-top: 2.75rem;
  gap: 0;
}

.product-info .spec-box{
  padding: 0 2rem;
}

.product-info .spec-box:not(:first-child){
  border-left: 1px solid #ededed;
}

@media (max-width: 968px){.product-info{
    padding: 3rem 1.5rem;
  }

  .product-top{
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-buy{
    border-left: none;
    padding-left: 0;
  }

  .product-info .product-cta{
    align-items: flex-start;
  }

  .product-info .buy-button{
    width: 100%;
  }

  .product-info .specs-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .product-info .spec-box{
    padding: 0;
    border-left: none !important;
    text-align: left;
  }}



/* =========================================================
   V7 updates
   - Gallery: caption + dots + counter + grain overlay
   - Product CTA: single pill button with icon + price
   - Accessories: remove white card background, prevent odd blocks
   - Technical sheet: new layout + updated specs + care notes
========================================================= */

/* --- Product Gallery UI --- */
.gallery-container{
  flex-direction: column;      /* allow caption + dots below image */
  gap: 1.25rem;
  padding: 3rem 2rem;
}

/* subtle grain on top of background image */
.gallery-container::after{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  opacity: 0.10;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0; /* still behind content due to isolation */
}

.gallery-meta{
  width: min(900px, 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.gallery-caption{
  margin: 0;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.58);
}

.gallery-progress{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gallery-dots{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.gallery-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.28);
  background: rgba(0,0,0,0.08);
  padding: 0;
  cursor: pointer;
}

.gallery-dot.active{
  background: var(--accent);
  border-color: var(--accent);
}

.gallery-counter{
  font-size: 12px;
  letter-spacing: 1.6px;
  color: rgba(0,0,0,0.55);
  text-transform: uppercase;
  white-space: nowrap;
}

.gallery-counter .sep{
  padding: 0 6px;
  opacity: 0.7;
}

@media (max-width: 968px){.gallery-container{
    padding: 2.25rem 1.25rem;
  }

  .gallery-progress{
    justify-content: center;
  }

  .gallery-counter{
    display: none; /* keep clean on mobile */
  }}

/* --- Product CTA pill --- */
.product-actions{
  width: 100%;
}

.buy-pill{
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 0.7rem;
  background: #0b0b0b;
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
  white-space: nowrap;
  flex: 0 0 auto;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.buy-pill:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.16);
  background: #111;
}

.buy-pill:hover{
  background: #111;
}

.buy-pill .icon{
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.buy-pill-text{
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.buy-pill-divider{
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.35);
}

.buy-pill-price{
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.buy-pill-price{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  line-height:1.05;
}
.buy-price-main{
  font-weight:750;
}
.buy-tax{
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.65;
  margin-top:2px;
}

.buy-specs{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid var(--line);
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px 16px;
}
.buy-spec{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.buy-spec-ico{
  width:30px;
  height:30px;
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.65);
}
.buy-spec-ico svg{
  width:18px;
  height:18px;
  opacity:.85;
}
.buy-spec-k{
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  margin-top:2px;
}
.buy-spec-v{
  margin-top:4px;
  font-weight:650;
}

.order-tax-note{
  margin-left:.35em;
  color:var(--muted);
  font-size:12px;
  white-space:nowrap;
}

@media (max-width: 520px){/* Keep key specs in two columns on mobile (less vertical scrolling) */
  .buy-specs{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
  }
  .buy-spec-ico{ width: 26px; height: 26px; }
  .buy-spec-k{ font-size: 11px; letter-spacing: .18em; }
  .buy-spec-v{ font-size: 14px; }}


/* make the buy area stack nicer */
.product-info .product-cta{
  justify-content: flex-start;
  gap: 1.15rem;
}

/* --- Accessories: remove the white card bg behind images --- */
.accessory-image{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.accessory-item.reverse .accessory-image{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.accessory-img{
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
}

/* --- Technical sheet: new layout --- */
.technical-header{
  display: grid;
  gap: 10px;
}

.technical-title{
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.2px;
}

.technical-grid{
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 36px;
  align-items: start;
}

.technical-card{
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 0;           /* square, premium */
  overflow: hidden;
}

.tech-list{
  margin: 0;
  padding: 10px 28px;
}

.tech-item{
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #efefef;
}

.tech-item:last-child{
  border-bottom: none;
}

.tech-item dt{
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  font-weight: 700;
}

.tech-item dd{
  margin: 0;
  font-size: 14px;
  color: rgba(0,0,0,0.85);
  font-weight: 600;
  line-height: 1.5;
}

.tech-muted{
  font-weight: 600;
  color: rgba(0,0,0,0.50);
}

.tech-notes{
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 0;
  padding: 18px 20px;
}

.tech-notes-title{
  margin: 0 0 12px 0;
  font-size: 14px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.70);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tech-notes-title .icon{
  width: 18px;
  height: 18px;
}

.tech-notes-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(0,0,0,0.70);
  line-height: 1.7;
  font-size: 14px;
}

@media (max-width: 968px){.technical-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tech-list{
    padding: 8px 18px;
  }

  .tech-item{
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 0;
  }

  .technical-title{
    font-size: 28px;
  }}


/* Product buy layout tweaks */
.product-buy{
  border-left: 1px solid #e9e9e9;
  padding-left: 3rem;
}
.buy-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
@media (max-width: 968px){.product-buy{
    border-left: none;
    padding-left: 0;
  }
  .buy-row{
    flex-direction: column;
    align-items: flex-start;
  }
  .buy-pill{
    width: 100%;
    justify-content: center;
  }}

/* Spec icons */
.specs-grid{
  border-top: 1px solid #e9e9e9;
  padding-top: 2rem;
}
.spec-box{
  display: grid;
  justify-items: center;
  gap: 0.35rem;
}
.spec-icon{
  width: 22px;
  height: 22px;
  color: #666;
  margin-bottom: 0.2rem;
}

/* How it works (dual videos) */
.how-section{
  background: #f5f5f5;
  padding: 90px 40px;
}
.how-container{
  max-width: 1400px;
  margin: 0 auto;
}
.how-header{
  margin-bottom: 26px;
}
.how-title{
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.how-subtitle{
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.6;
}

.how-duo{
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 70px;
  align-items: start;
  padding-top: 10px;
}
.how-divider{
  width: 1px;
  background: rgba(0,0,0,0.10);
  align-self: stretch;
}

.how-col-head h3{
  font-size: 28px;
  margin: 0 0 10px 0;
  color: #111;
  letter-spacing: 0.2px;
}
.how-col-head p{
  margin: 0;
  color: #4a4a4a;
  line-height: 1.7;
  font-size: 15px;
  max-width: 520px;
}

.how-col-media{
  margin-top: 18px;
}
.how-col-media video{
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
}

@media (max-width: 968px){.how-section{padding: 4rem 1.5rem;}
  .how-title{font-size: 30px;}
  .how-duo{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .how-divider{display: none;}
  .how-col-head p{max-width: none;}}

/* Click-to-zoom */
.zoomable{
  cursor: zoom-in;
}
.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.lightbox.is-open{
  display: block;
}
.lightbox-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}
.lightbox-dialog{
  position: relative;
  max-width: min(1100px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  margin: 24px auto;
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.lightbox-close{
  position: absolute;
  top: 10px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: none;
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover{
  background: rgba(255,255,255,0.16);
}
.lightbox-img{
  width: 100%;
  height: auto;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  background: #ffffff;
  display: block;
}
.lightbox-caption{
  padding: 12px 16px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
body.is-locked{
  overflow: hidden;
}


/* ✅ Accent micro-interactions */
.buy-pill:hover{
  border-color: rgba(0,212,255,0.35);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
}

.buy-pill:hover .icon{
  color: var(--accent);
}

.shipping-info:hover .icon{
  color: var(--accent);
}



/* ✅ Scroll-reveal (subtle) */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible{
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce){.reveal{
    opacity: 1;
    transform: none;
    transition: none;
  }}

/* ✅ Consistent section padding */
.cooking-modes,
.accessories-section,
.technical-section,
.gallery-section{
  padding: var(--section-y) var(--section-x);
}


/* Lightbox navigation */
.lightbox-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgb(0, 0, 0);
  color: #fff;
  cursor: pointer;
  user-select: none;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.lightbox-nav svg{ width: 18px; height: 18px; display:block; }
.lightbox-nav.prev{ left: 14px; }
.lightbox-nav.next{ right: 14px; }
.lightbox-nav:hover{
  border-color: rgba(0, 0, 0, 0.45);
  background: rgb(0, 0, 0);
}
.lightbox-nav:active{ transform: translateY(-50%) scale(0.98); }
.lightbox-nav.is-disabled{
  opacity: 0.35;
  pointer-events: none;
}

@media (max-width: 600px){.lightbox-nav{ width: 40px; height: 40px; }
  .lightbox-nav.prev{ left: 10px; }
  .lightbox-nav.next{ right: 10px; }}


/* =========================
   Included mini grid
   ========================= */
.included-wrap {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #efefef;
}

.included-title {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 12px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #e7e7e7;
  background: #fff;
}

.included-item span {
  font-size: 13px;
  color: #222;
  line-height: 1.2;
}

.included-icon {
  width: 18px;
  height: 18px;
  color: #111;
  flex: 0 0 auto;
}

.included-note {
  margin-top: 12px;
  font-size: 13px;
  color: #666;
}

@media (max-width: 768px) {.included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}

/* =========================
   Sticky order bar
   ========================= */
:root { --orderbar-h: 56px; }

.orderbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  transform: translateY(110%);
  transition: transform 250ms ease, opacity 250ms ease;
  opacity: 0;
  pointer-events: none;
}

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

.orderbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.52);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.orderbar-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 14px calc(8px + env(safe-area-inset-bottom));
display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  color: #fff;
}

.orderbar-title {
  font-size: 12px;
  letter-spacing: 2.5px;
  font-weight: 700;
}

.orderbar-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.72);
  margin-top: 4px;
}

.orderbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.orderbar-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  white-space: nowrap;
}

.orderbar-price {
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.4px;
}

.orderbar-sep {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.18);
}

.orderbar-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.orderbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #111;
  text-decoration: none;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: transform 120ms ease, opacity 160ms ease;
  white-space: nowrap;
}

.orderbar-cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.orderbar .icon {
  width: 16px;
  height: 16px;
}

body.orderbar-visible {
  padding-bottom: calc(var(--orderbar-h) + env(safe-area-inset-bottom));
}

@media (max-width: 968px) {.orderbar-inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .orderbar-right {
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }

  .orderbar-meta {
    flex-wrap: wrap;
    gap: 8px 12px;
  }}

@media (max-width: 520px) {.orderbar-cta {
    width: 100%;
    justify-content: center;
  }}



.note-photo{
  position:relative;
  width:100%;
  height:220px;
  margin-bottom:14px;
  background:linear-gradient(180deg, rgba(0,0,0,0.03), rgba(0,0,0,0.01));
  border:1px solid var(--line);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
.note-photo img{
  width:100%;
  height:100%;
  object-fit:contain;
  image-rendering:auto;
}
.note-badge{
  position:absolute;
  top:12px;
  left:12px;
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.92);
}
.note-badge svg{
  width:18px;
  height:18px;
  opacity:.9;
}



.orderbar-price{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  line-height:1.05;
}
.orderbar-tax{
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.6;
  margin-top:2px;
}

.orderbar.is-hidden{
  transform:translateY(120%);
  opacity:0;
  pointer-events:none;
}

/* =========================
   Bundle + Field Notes (large visuals)
   ========================= */

/* Bigger, more “ecommerce” bundle cards */























/* Stack on mobile */
@media (max-width: 1100px){}

@media (max-width: 760px){
  
  }

/* Field notes: big images */
.notes-grid{
  gap: 18px;
}

.note-card{
  padding: 0;
  background: #fff;
  overflow: hidden;
  border-radius: 0;
}

.note-photo{
  height: clamp(260px, 44vh, 560px);
  margin: 0 0 0 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.note-photo img{
  object-fit: contain; /* switch to cover when you add lifestyle photos */
}

.note-card h3{
  padding: 16px 18px 0 18px;
  font-size: 18px;
}

.note-card p{
  padding: 0 18px 18px 18px;
  font-size: 14px;
}

/* Etsy button */
.buy-alt{
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.etsy-pill{
  display: flex;
  box-sizing: border-box;
  width: auto;
  margin: 0;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  padding: 0px 18px;
  border-radius: 999px;
  background: #f1641e;
  color: #fff;
  font-weight: 750;
  letter-spacing: 0.2px;
  border: 1px solid rgba(0,0,0,0.12);
  transition: transform 160ms ease, filter 160ms ease;
}

.etsy-pill:hover{
  transform: translateY(-1px);
  filter: brightness(0.96);
}

.etsy-pill .icon{
  width: 18px;
  height: 18px;
}

.buy-alt-note{
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
/* =========================
   Used-for strip (ecommerce)
   ========================= */
/* Used-for strip (compact, black) */
.usedfor-section{
  padding: 0;
  background: #0b0b0b;
  color: #fff;
}
.usedfor-section .container{
  max-width: none;
  width: 100%;
  padding-left: clamp(16px, 4vw, 64px);
  padding-right: clamp(16px, 4vw, 64px);
}
.usedfor{
  border: none;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}
.usedfor-kicker{
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
  white-space: nowrap;
}
.usedfor-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.usedfor-tag{
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  line-height: 1;
  border-radius: 0; /* sharp */
}

@media (max-width: 520px){/* Smaller purchase pills on mobile */
  .buy-pill{
    min-height: 48px;
    padding: 0.7rem 0.95rem;
    gap: 0.55rem;
  }
  .buy-pill-text{ font-size: 0.9rem; }
  .buy-pill-price{ font-size: 0.9rem; }
  .buy-pill-divider{ height: 16px; }

  .etsy-pill{
    min-height: 48px;
    padding: 0 14px;
    gap: 8px;
    font-size: 0.95rem;
  }
  .etsy-pill .icon{ width: 16px; height: 16px; }

  .usedfor{ padding: 12px 0; }
  .usedfor-tag{ padding: 8px 10px; font-size: 12px; }}



/* =========================
   FINAL TWEAKS (alignment + density)
   ========================= */

/* Product subtitle row: keep "Used for" on the same line */
.product-subrow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.product-usedfor-label{
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  opacity: 0.95;
}

/* Used-for strip: make it a true strip (short) + plain white text */
.usedfor-section{
  background:#0b0b0b;
}
.usedfor{
  padding: 8px 0;
  align-items:center;
  justify-content:center;
}
.usedfor-tags{
  justify-content:center;
  gap: 22px;
}
.usedfor-tag{
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  line-height: 1;
}

/* Slightly tighter on mobile */
@media (max-width: 520px){.product-subrow{ justify-content:flex-start; flex-wrap:wrap; }
  .product-usedfor-label{ margin-left: 0; }
  .usedfor{ padding: 7px 0; }
  .usedfor-tags{ gap: 14px; }
  .usedfor-tag{ font-size: 12px; }}

/* Bundle heading: align + size like other hero section titles */




/* Bundle cards: 3-up full width, borderless (no bootstrap vibe) */







/* Responsive: keep 3, then 2, then 1 */
@media (max-width: 1200px){}
@media (max-width: 760px){
  }

/* Header / menu density: smaller overall, and even smaller when sticky */
.header-inner{
  padding: 1.55rem 4rem;
}
.site-header.is-sticky .header-inner{
  padding: 0.85rem 4rem;
}
.main-nav{
  padding: 6px 12px;
}
.main-nav ul{
  gap: 1.25rem;
}
.main-nav a{
  font-size: 0.9rem;
  padding: 6px 12px;
}
.site-header.is-sticky .main-nav a{
  padding: 5px 10px;
}

@media (max-width: 768px){.header-inner{
    padding: 1.05rem 1.25rem;
    gap: 0.75rem;
  }
  .site-header.is-sticky .header-inner{
    padding: 0.72rem 1.25rem;
  }
  .main-nav ul{
    gap: 0.9rem;
    flex-wrap: wrap;
    justify-content:center;
  }
  .main-nav a{
    padding: 6px 10px;
    font-size: 0.88rem;
  }}

/* =========================================
   PATCH: Icon field-notes + fuller images
   ========================================= */

/* Field notes: icon cards (no photos) */
.note-photo{ display: none !important; }
.note-card{
  border: 1px solid var(--line) !important;
  background: #fff !important;
}
.note-iconrow{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 6px;
}
.note-kicker{
  margin: 0;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
}
.note-icon{
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  background: rgba(0,0,0,0.06);
  color: #111;
}
.note-icon svg{
  width: 18px;
  height: 18px;
  display: block;
}
.note-card h3{
  padding: 0 18px 10px !important;
  margin: 0 !important;
}
.note-card p{
  padding: 0 18px 18px !important;
  margin: 0 !important;
}

/* Bundle: make images fill the card area + add breathing room for text */





/* Follow-us grid: make images fill their tiles */
.gallery-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


/* ------------------------------------------------
   Bundle (Option B): Featured image + selectable list
   ------------------------------------------------ */
.bundleB .bundleB-layout{
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 28px;
  align-items: stretch;
}

.bundleB .bundleB-media{
  margin: 0;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.bundleB .bundleB-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #f3f3f3;
}

.bundleB .bundleB-caption{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 14px 16px;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0));
  pointer-events: none;
}

.bundleB .bundleB-list{
  border-top: 1px solid rgba(0,0,0,0.10);
}

.bundleB .bundleB-item{
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 14px 0;
  cursor: pointer;
  border-bottom: 1px solid rgba(0,0,0,0.10);
  transition: background 160ms ease, padding-left 160ms ease;
}

.bundleB .bundleB-itemTop{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.bundleB .bundleB-kicker{
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #777;
}

.bundleB .bundleB-num{
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #aaa;
}

.bundleB .bundleB-name{
  font-weight: 750;
  font-size: 18px;
  margin-bottom: 6px;
  color: #111;
}

.bundleB .bundleB-desc{
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  max-width: 42ch;
}

.bundleB .bundleB-item:hover,
.bundleB .bundleB-item.is-active{
  background: rgba(0,0,0,0.04);
  padding-left: 12px;
}

.bundleB .bundleB-item.is-active .bundleB-kicker,
.bundleB .bundleB-item.is-active .bundleB-num{
  color: #555;
}

.bundleB-hidden{
  display: none;
}

@media (max-width: 900px){
  .bundleB .bundleB-layout{
    grid-template-columns: 1fr;
  }
  .bundleB .bundleB-desc{
    max-width: none;
  }

  /* Make the featured image behave nicely on smaller screens */
  .bundleB .bundleB-media{ height: auto; }
  .bundleB .bundleB-img{ height: auto; aspect-ratio: 16 / 10; }
  .bundleB .bundleB-caption{
    position: static;
    margin: 10px 0 0 0;
    padding: 0;
    background: none;
    color: #666;
    pointer-events: auto;
  }
}

@media (max-width: 520px){
  .bundleB .bundleB-img{
    aspect-ratio: 4 / 3;
  }
  .bundleB .bundleB-name{
    font-size: 16px;
  }
}


/* Force readable text on purchase CTAs (white on dark/orange) */
.product-buy .buy-pill,
.product-buy .buy-pill *,
.product-buy .etsy-pill,
.product-buy .etsy-pill *{
  color: #fff !important;
}
.product-buy .buy-pill svg,
.product-buy .etsy-pill svg{
  stroke: currentColor;
}


/* =========================
   Lightbox: full-viewport, white background, stable nav
   ========================= */
.lightbox-backdrop{
  background: rgba(255,255,255,0.92) !important;
}
.lightbox-dialog{
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  margin: 0 !important;
  border: 0 !important;
  background: #fff !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}
.lightbox-img{
  flex: 1 1 auto !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: calc(100vh - 64px) !important;
  margin: auto !important;
  object-fit: contain !important;
  background: #fff !important;
}
.lightbox-caption{
  color: rgba(0,0,0,0.78) !important;
  border-top: 1px solid rgba(0,0,0,0.08) !important;
}
.lightbox-close{
  background: rgba(255,255,255,0.7) !important;
  border: 1px solid rgba(0,0,0,0.14) !important;
  color: #111 !important;
}
.lightbox-close:hover{
  background: rgba(255,255,255,0.92) !important;
}
.lightbox-nav{
  border: 1px solid rgba(0,0,0,0.16) !important;
  background: rgba(255,255,255,0.65) !important;
  color: #111 !important;
}
.lightbox-nav:hover{
  background: rgba(255,255,255,0.92) !important;
}


/* =========================
   MOBILE PATCH: burger menu + bundle stack + CTA polish
   ========================= */

/* Burger menu button (mobile only) */
.nav-toggle{
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-lines{
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-lines span{
  width: 18px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 2px;
}

.nav-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  border: 0;
  padding: 0;
  margin: 0;
  display: none;
  z-index: 900; /* below header, above page */
}

body.nav-open .nav-backdrop{ display: block; }
body.nav-open .mobile-cta{ display: none !important; } /* avoid overlap */
body.orderbar-visible .mobile-cta{ display: none !important; } /* orderbar already has CTA */

@media (max-width: 760px){
  .nav-toggle{ display: inline-flex; }

  /* keep header compact and make space for burger */
  .header-inner{
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  /* hide desktop nav, show as dropdown when opened */
  .main-nav{
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    padding: 12px;
    background: #000;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1400;
    max-height: calc(100vh - 120px);
    overflow: auto;
  }

  .site-header.nav-open .main-nav{ display: block; }

  .main-nav ul{
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    flex-wrap: nowrap;
  }

  .main-nav a{
    padding: 12px 14px;
    font-size: 1rem;
  }
}

/* Bundle: mobile gets stacked photos (no tab switching / autoplay scroll) */
.bundleB.is-mobile-stack .bundleB-layout{ display: none; }
.bundleB.is-mobile-stack .bundleB-hidden{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
}

.bundleB.is-mobile-stack .bundleB-stack-figure{
  margin: 0;
  border: 1px solid rgba(0,0,0,0.10);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.bundleB.is-mobile-stack .bundleB-stack-figure img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.bundleB.is-mobile-stack .bundleB-stack-caption{
  padding: 10px 12px 12px;
  font-size: 13px;
  color: #666;
}

/* =========================
   MOBILE: unify sticky CTA style
   - Use ONLY the black bottom "Contact to order" bar on mobile
   - Add delivery hint (truck + 3–4 days) right in the CTA
   ========================= */

.mobile-cta-left::after{
  content: " · 🚚 3–4 days";
  font-weight: 600;
  opacity: 0.88;
  font-size: 0.92em;
}

@media (max-width: 900px){
  /* Hide the translucent orderbar on mobile to avoid 2 different CTA styles */
  .orderbar{ display: none !important; }

  /* Even if JS toggles orderbar-visible, never hide the mobile CTA */
  body.orderbar-visible .mobile-cta{ display: block !important; }
}
/* Mobile: when burger menu is open, make header/menu fully opaque black */
@media (max-width: 760px){
  body.nav-open .site-header,
  body.nav-open .site-header.is-sticky{
    background: #000 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Safety: if your dropdown itself has a bg, force it black too */
  body.nav-open .main-nav{
    background: #000 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* =========================================================
   iOS / Mobile: prevent sideways (horizontal) white scroll
   - guards against oversized SVG/logo or any element overflow
========================================================= */
html, body{
  width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}
@supports (overflow-x: clip){
  html, body{ overflow-x: clip; }
}

/* Make sure media never exceeds viewport width */
img, svg{
  max-width: 100%;
}

/* Footer logo: keep it sane on mobile */
@media (max-width: 768px){
  .footer-logo-img{
    display: block;
    width: 220px;
    max-width: 70vw;
    height: auto;
  }
}

/* =========================================================
   Mobile CTA bar: stabilize layout on mobile Chrome/iOS
   - fixes odd vertical alignment / wrapping
========================================================= */
.mobile-cta{
  box-sizing: border-box;
  max-width: 100%;
}

.mobile-cta-btn{
  box-sizing: border-box;
  min-height: 56px;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.mobile-cta-left{
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100vw - 120px); /* reserve room for price */
}

.mobile-cta-price{
  flex: 0 0 auto;
  white-space: nowrap;
  line-height: 1.1;
}

/* =========================
   Mobile polish (pills + gallery nav + overflow)
   ========================= */
@media (max-width: 600px){
  /* Avoid CTA pills getting clipped on smaller Android devices */
  .product-info .product-cta{
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .product-info .product-cta > *{ min-width: 0; }
  .product-actions,
  .buy-row,
  .buy-alt{ width: 100%; }
  .buy-pill,
  .etsy-pill{
    width: 100%;
    max-width: 100%;
  }
}

/* Make the Bundle gallery nav easier to tap on mobile */
@media (max-width: 768px){
  .bundle-gallery .gallery-nav.next,
  .bundle-gallery .gallery-nav.prev{
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 999px;
    background: rgba(0,0,0,0.40);
    border: 1px solid rgba(255,255,255,0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
  }
  .bundle-gallery .gallery-nav.next{ right: 14px; }
  .bundle-gallery .gallery-nav.prev{ left: 14px; }

  .bundle-gallery .gallery-nav.next span{ display: none; } /* hide "Next" text */
  .bundle-gallery .gallery-nav svg{
    width: 24px;
    height: 24px;
  }
}

