/** Shopify CDN: Minification failed

Line 731:9 Unexpected "{"
Line 731:18 Expected ":"

**/
/* =============================================================
   LAZAN BRAND — global overrides & custom component styles
   Loaded after base.css via theme.liquid
   ============================================================= */

/* ── Brand tokens ──────────────────────────────────────────── */
:root {
  --lzn-red:          #e8000f;
  --lzn-red-dk:       #8a0008;
  --lzn-red-gradient: linear-gradient(135deg, #8a0008 0%, #c8000e 55%, #e8000f 100%);
  --lzn-cream:        #ede4dd;
  --lzn-ink:          #0a0a0a;
  --lzn-r:            4px;
}

/* ── Typography — kill Cinzel, pin weights ───────────────────── */
/* base.css sets font-family:'Cinzel'!important on h1-h6.          */
/* Dawn also exposes --font-body-weight from the admin-selected    */
/* font, which can bake bold into every element. We reset it here. */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
[class*="h1"], [class*="h2"], [class*="h3"] {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  letter-spacing: -0.02em !important;
}
/* Weight scale — hero stays heavy, section headings lighter */
h1, .h1 { font-weight: 800 !important; }
h2, .h2 { font-weight: 700 !important; }
h3, .h3, h4, .h4, h5, .h5, h6, .h6 { font-weight: 600 !important; }
/* Belt-and-suspenders: reset font-family everywhere */
* { font-family: inherit; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  /* Reset Dawn's --font-body-weight which can be 700 if admin picked a bold font */
  font-weight: 400 !important;
}
body,
.body,
p, span, a, li, td, input, textarea, select, button {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
/* Body-level elements — normal weight unless explicitly set */
/* NOTE: span is excluded — hero heading spans must inherit their parent's weight */
p, li, td, label, input, textarea, select {
  font-weight: 400;
}
/* Announcement bar — clear, not heavy */
.announcement-bar__message,
.announcement-bar__message span,
.announcement-bar__message p,
.announcement-bar__link {
  font-weight: 600 !important;
  font-size: 11px !important;
  letter-spacing: 1.5px;
}

/* ── Global button accent ───────────────────────────────────── */
/* Dawn uses rgb(var(--color-button)) — but we still patch common
   classes that may not follow color-scheme vars */
.button, .btn, [data-type="button"] {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}

/* ── Announcement bar ───────────────────────────────────────── */
.utility-bar.color-scheme-5,
.utility-bar.color-base-accent-1 {
  background: var(--lzn-red-gradient) !important;
}
/* Countdown block inside ann bar */
.lzn-ann-bar-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.lzn-ann-countdown {
  font-weight: 700;
  color: inherit;
}
.lzn-ann-dot { opacity: 0.5; }

/* ── Slideshow / Hero carousel ──────────────────────────────── */

/* Dark directional gradient overlay — replaces Dawn's flat black ::after */
.slideshow .banner__media::after {
  background: linear-gradient(100deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.28) 55%, transparent 100%) !important;
  opacity: 1 !important;
}

/* Content area — left-aligned with correct inset */
.slideshow .banner__content.page-width {
  padding-left: max(48px, calc((100vw - 1280px) / 2 + 56px));
  padding-right: 48px;
  padding-top: clamp(40px, 6vw, 100px);
  padding-bottom: clamp(40px, 6vw, 100px);
}

/* Hero text box — remove Dawn's box shadow / bg, full width on dark bg */
.slideshow .slideshow__text.banner__box {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Force Inter on hero headings */
.lzn-banner__heading,
.slideshow .banner__heading,
.banner .banner__heading {
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-size: clamp(36px, 4.5vw, 70px) !important;
  font-weight: 800 !important;
  letter-spacing: -2px !important;
  line-height: 0.9 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  margin: 0 !important;
}

/* Red accent second line of hero heading */
.lzn-slide-heading-line2 {
  display: block !important;
  color: var(--lzn-red) !important;
  white-space: nowrap;
}

/* Eyebrow badge */
.lzn-slide-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: var(--lzn-red-gradient);
  padding: 4px 10px;
  border-radius: 4px;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* Subheading */
.slideshow .banner__text {
  margin: 0 !important;
}
.slideshow .banner__text p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 400px;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* Two-button row */
.lzn-banner__buttons {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 12px !important;
  align-items: center;
  margin: 0 !important;
}

/* Hero slide buttons */
.slideshow .banner__box .button {
  padding: 13px 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--lzn-r);
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.slideshow .banner__box .button--primary {
  background: #ffffff !important;
  color: #111111 !important;
  border-color: #ffffff !important;
}
.slideshow .banner__box .button--primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.slideshow .banner__box .button--secondary {
  background: transparent !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.5) !important;
}
.slideshow .banner__box .button--secondary:hover {
  border-color: #ffffff !important;
  transform: translateY(-1px);
}
/* Hero countdown rendered inside a slide */
.lzn-slide-countdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 4px;
  max-width: 480px;
}
.lzn-slide-countdown__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.lzn-slide-countdown__numbers {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lzn-cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.lzn-cd-num {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  min-width: 40px;
  text-align: center;
  letter-spacing: -1px;
  font-family: 'Inter', sans-serif;
}
.lzn-cd-num--accent { color: var(--lzn-red); }
.lzn-cd-lbl {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Inter', sans-serif;
}
.lzn-cd-sep {
  font-size: 22px;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.2);
  margin-top: -10px;
  font-family: 'Inter', sans-serif;
}

/* ── Hero — mobile/desktop image swap ───────────────────────── */
.lzn-hero-desktop,
.lzn-hero-mobile {
  display: contents; /* pass img through to parent */
}
.lzn-hero-mobile { display: none; }
@media screen and (max-width: 749px) {
  .lzn-hero-desktop:has(+ .lzn-hero-mobile) { display: none; }
  .lzn-hero-mobile { display: contents; }
}
.lzn-hero-desktop img,
.lzn-hero-mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Marquee / Ticker strip ─────────────────────────────────── */
.marquee-promo-bar {
  background: var(--lzn-ink) !important;
}
.marquee-promo-bar .marquee-item {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
}
.marquee-promo-bar .marquee-delimiter svg {
  fill: var(--lzn-red);
  width: 6px;
  height: 6px;
}

/* ── Brand stamp (LAZAN big text above footer) ──────────────── */
.lzn-brand-stamp {
  overflow: hidden;
  background: var(--lzn-cream);
  border-bottom: 3px solid var(--lzn-red);
  padding: 16px 0 0;
  user-select: none;
  text-align: center;
}
.lzn-brand-stamp__word {
  font-size: 28.5vw;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.82;
  color: var(--lzn-red);
  display: block;
  pointer-events: none;
  font-family: 'Inter', sans-serif;
}

/* ── Trust / value strip — fully owned by sections/lzn-trust-strip.liquid ── */

/* ── Community / Connect strip ──────────────────────────────── */
.lzn-community {
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
  border-bottom: 1px solid rgba(var(--color-foreground), 0.08);
}
.lzn-community__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px 0;
}
.lzn-community__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px 20px;
  border: 1.5px solid var(--lzn-red);
  border-radius: var(--lzn-r);
  text-align: center;
  color: var(--lzn-red);
  text-decoration: none;
  transition: background 0.15s;
}
.lzn-community__col:hover { background: rgba(255, 0, 1, 0.04); }
.lzn-community__icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 0, 1, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lzn-community__cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.lzn-community__sub { font-size: 11px; opacity: 0.6; }
@media (max-width: 749px) {
  .lzn-community__grid { grid-template-columns: 1fr; }
}

/* ── Section eyebrow / labels ───────────────────────────────── */
.lzn-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lzn-red);
  font-family: 'Inter', sans-serif;
}

/* ── Steals horizontal scroll ───────────────────────────────── */
.lzn-scroll-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.lzn-scroll-track::-webkit-scrollbar { display: none; }
/* Steal card — styles now fully owned by sections/lzn-steals.liquid */
/* Only shared utility kept here */
.lzn-steal-card { text-decoration: none; display: block; }

/* ── Sticky header group ─────────────────────────────────────── */
/* Two sibling sections stacked: announcement bar fixed at top:0, */
/* nav header fixed just below it via --lzn-announcement-h var.   */
.announcement-bar-section.shopify-section-group-header-group {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  z-index: 1000 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}
.section-header.shopify-section-group-header-group {
  position: fixed !important;
  top: var(--lzn-announcement-h, 36px) !important;
  left: 0 !important;
  width: 100vw !important;
  z-index: 999 !important;
  margin: 0 !important;
  padding: 0 !important;
}
/* Kill any gap introduced by sticky-header custom element */
.section-header.shopify-section-group-header-group sticky-header,
.section-header.shopify-section-group-header-group .header-wrapper {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}
/* Neutralise Dawn's own sticky/hide behaviour */
sticky-header,
.shopify-section-header-sticky:not(.shopify-section-group-header-group),
.shopify-section-header-hidden:not(.shopify-section-group-header-group),
.section-header.animate {
  position: static !important;
  top: auto !important;
  transition: none !important;
}

/* ── Sticky bottom marquee ───────────────────────────────────── */
.lzn-marquee-section.lzn-sticky-bottom {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 90 !important;
}

/* ── Header — match HTML preview layout ─────────────────────── */
/* 3-col grid: nav | logo | icons. Keep Shopify's markup, restyle it */
.header-wrapper {
  border-bottom: 1px solid #e5e4df !important;
}
.header.page-width {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  height: 72px;
}
/* Logo — left-aligned, constrained height */
.header__heading {
  margin: 0 !important;
  text-align: left !important;
}
.header__heading-link {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}
.header__heading-logo {
  max-height: 56px !important;
  width: auto !important;
  display: block !important;
}
@media screen and (max-width: 989px) {
  .header__heading-logo {
    max-height: 54px !important;
  }
}

/* Desktop: logo left | nav centered | icons right */
@media screen and (min-width: 990px) {
  /* Hide mobile drawer — not needed on desktop */
  .header.page-width > header-drawer {
    display: none !important;
  }
  .header.page-width {
    display: grid !important;
    /* logo auto-width | nav fills middle | icons auto-width */
    grid-template-columns: auto 1fr auto !important;
    column-gap: 0 !important;
    align-items: center !important;
    padding-left: clamp(24px, 4vw, 72px) !important;
    padding-right: clamp(24px, 4vw, 72px) !important;
  }
  /* Logo — col 1, pinned left, breathing room before nav */
  .header__heading {
    grid-column: 1 !important;
    justify-self: start !important;
    padding-right: 32px !important;
  }
  /* Nav — col 2, links centered in available space */
  .header__inline-menu {
    grid-column: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 0;
    overflow: hidden;
    margin-left: 0 !important;
  }
  /* Icons — col 3, right-aligned */
  .header__icons {
    grid-column: 3 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 14px !important;
    padding-left: 32px !important;
  }
  .header__menu-item span,
  .header__menu-item .header__active-menu-item {
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    font-family: 'Inter', sans-serif !important;
  }
}

/* Mobile: hide the inline nav — Dawn's hamburger drawer handles it */
@media screen and (max-width: 989px) {
  .header__inline-menu {
    display: none !important;
  }
  /* Slim announcement bar — clamp height at every DOM level */
  .announcement-bar-section.shopify-section-group-header-group {
    max-height: 28px !important;
  }
  .utility-bar,
  .utility-bar__grid,
  .announcement-bar,
  .announcement-bar__announcement {
    height: 28px !important;
    min-height: 0 !important;
  }
  .announcement-bar__message {
    padding: 0 !important;
    min-height: 0 !important;
    height: 28px !important;
    line-height: 28px !important;
    display: block !important;
  }
  .announcement-bar__message,
  .announcement-bar__message span,
  .announcement-bar__message p,
  .announcement-bar__link {
    font-size: 10px !important;
    letter-spacing: 1px;
  }
  .utility-bar__grid.page-width {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  /* Mobile header: hamburger | logo (grid centre) | icons */
  /* 3-column grid: equal outer cols keep logo perfectly centred on every page */
  .header.page-width {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    height: 68px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    position: static !important;
  }
  .header.page-width > header-drawer {
    grid-column: 1 !important;
    justify-self: start !important;
    display: flex !important;
    align-items: center !important;
  }
  header-drawer .header__icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  /* Logo — grid col 2, always centred */
  .section-header .header__heading {
    grid-column: 2 !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
  }
  .section-header .header__heading-link {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  /* Icons — grid col 3, right-aligned */
  .header__icons {
    grid-column: 3 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    margin-left: 0 !important;
  }
}

/* Reserve space so page content is not hidden under the fixed header */
body {
  padding-top: var(--lzn-header-h, 108px) !important;
}
/* Homepage: hero extends behind the translucent header */
body.template-index {
  padding-top: 0 !important;
}
body.template-index .slideshow .banner__content,
body.template-index .slideshow .banner__content.page-width {
  padding-top: calc(var(--lzn-header-h, 108px) + 40px) !important;
}
body.template-index .slideshow.banner--large {
  min-height: 100svh !important;
}

/* ── Translucent header → solid white on scroll ─────────────── */
.section-header .header-wrapper {
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  background-color: rgba(255,255,255,0.55) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}
.section-header.lzn-scrolled .header-wrapper {
  background-color: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}


/* ── Hero progress bar ──────────────────────────────────────── */
.slideshow {
  position: relative;
}
.lzn-hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--lzn-red);
  width: 0%;
  z-index: 10;
  transition: none;
}

/* ── Carousel arrow buttons ─────────────────────────────────── */
.lzn-carousel-wrap {
  position: relative;
}
.lzn-arrow-btn {
  display: none; /* hidden on mobile */
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.15);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s, opacity 0.15s;
  color: #111;
  padding: 0;
  flex-shrink: 0;
}
.lzn-arrow-btn:hover {
  background: #f0f0f0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
  transform: translateY(calc(-50% - 1px));
}
.lzn-arrow-btn[data-hidden] {
  opacity: 0;
  pointer-events: none;
}
.lzn-arrow-btn--prev { left: -22px; }
.lzn-arrow-btn--next { right: -22px; }
/* Dark variant — solid dark pill on dark backgrounds */
.lzn-arrow-dark .lzn-arrow-btn {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.lzn-arrow-dark .lzn-arrow-btn:hover {
  background: rgba(255,255,255,0.32);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}
@media screen and (min-width: 750px) {
  .lzn-arrow-btn { display: flex; }
}

/* ── Section side padding — responsive, matches HTML preview ───── */
/* clamp(60px, 6vw, 100px) → ~60px mobile, ~82px at 1366px, 100px max */
.shopify-section:not(.shopify-section-header):not(.shopify-section-footer):not(.lzn-brand-stamp-section):not(.announcement-bar-section) .page-width {
  padding-left: clamp(24px, 6vw, 100px) !important;
  padding-right: clamp(24px, 6vw, 100px) !important;
}
/* Never apply extra padding to full-bleed hero */
.slideshow-section .page-width,
.banner-section .page-width {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ── Hero slide content indent — match HTML preview left margin ── */
/* Dawn default is padding: 5rem (50px). We push it to 6vw to align */
/* with section content. Applied only on desktop (750px+).          */
@media screen and (min-width: 750px) {
  .slideshow .banner__content {
    padding-left: clamp(40px, 6vw, 100px) !important;
    padding-right: clamp(40px, 6vw, 100px) !important;
  }
}

/* ── Hero height — cap at viewport so marquee peeks in below ────── */
/* Dawn's large banner is min-height:72rem (720px); we cap it so the  */
/* marquee strip is just visible at the bottom of the first fold.     */
.slideshow.banner--large {
  min-height: min(72rem, calc(100svh - var(--lzn-header-h, 108px))) !important;
}

/* ── Video testimonials — 4-col desktop, carousel mobile ────── */
#lzn-vt-{{ section.id }} .lzn-vt-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 989px) {
  .lzn-video-testimonials-section .lzn-vt-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 14px !important;
  }
  .lzn-video-testimonials-section .lzn-vt-grid::-webkit-scrollbar { display: none; }
  .lzn-video-testimonials-section .lzn-vt-card {
    flex: 0 0 72vw !important;
    scroll-snap-align: start !important;
  }
}
@media (max-width: 599px) {
  .lzn-video-testimonials-section .lzn-vt-card {
    flex: 0 0 80vw !important;
  }
}
/* Desktop: auto-fit so cards fill space regardless of count */
@media (min-width: 990px) {
  .lzn-video-testimonials-section .lzn-vt-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
    display: grid !important;
  }
}

/* ── Hero slider — dots → thin rounded dashes ───────────────── */
.slider-counter__link--dots {
  padding: 8px 4px !important;
}
.slider-counter__link--dots .dot {
  width: 20px !important;
  height: 3px !important;
  border-radius: 99px !important;
  background: rgba(255,255,255,0.35) !important;
  border: none !important;
  transition: width 0.2s ease, background 0.2s ease !important;
}
.slider-counter__link--active.slider-counter__link--dots .dot {
  background: #ffffff !important;
  width: 28px !important;
}
.slider-counter__link--dots:not(.slider-counter__link--active):hover .dot {
  background: rgba(255,255,255,0.65) !important;
  transform: none !important;
}
/* Kill the scale transform on dashes */
.slider-counter__link--dots .dot,
.slider-counter__link--active.slider-counter__link--dots .dot {
  transform: none !important;
}

/* ── Scroll reveal — sections fade + rise on scroll ─────────── */
.lzn-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.lzn-reveal.lzn-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Urgency / sold-today badge ──────────────────────────────── */
@keyframes lznPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}
.lzn-sold-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
}
.lzn-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff0001;
  flex-shrink: 0;
  animation: lznPulse 1.6s ease-in-out infinite;
}
.lzn-sold-text {
  font-size: 9px;
  font-weight: 600;
  color: #ff0001;
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

/* ── Product page price ──────────────────────────────────────── */
.price--large .price-item--regular,
.price--large .price-item--sale {
  font-size: 1.8rem !important;
}

/* ── Product page title ──────────────────────────────────────── */
.product__title h1 {
  font-size: clamp(22px, 3vw, 32px) !important;
}

/* ── Product form buttons — unified style ────────────────────── */
/* Equal-width side-by-side buttons */
@media screen and (min-width: 750px) {
  .product-form__buttons {
    display: flex !important;
    gap: 12px !important;
  }
  .product-form__submit {
    flex: 1 !important;
  }
  .shopify-payment-button {
    flex: 1 !important;
  }
  .shopify-payment-button__button--unbranded {
    width: 100% !important;
  }
}
/* Both buttons: same height, font, spacing */
.product-form__submit,
.shopify-payment-button__button--unbranded {
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  height: 54px !important;
  min-height: 54px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
/* Buy it now — gradient red */
.shopify-payment-button__button--unbranded {
  background: var(--lzn-red-gradient) !important;
  background-color: transparent !important;
}
.shopify-payment-button__button--unbranded::after,
.shopify-payment-button__button--unbranded::before {
  display: none !important;
}

/* ── Sort-by dropdown — force Inter ─────────────────────────── */
.facets__sort,
.facets__sort label,
.facets__sort select,
.facets__sort .select__select,
.facets__sort .caption-large,
#SortBy,
label[for="SortBy"] {
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

/* ── Mobile drawer — Shop All parent link ───────────────────── */
.lzn-shop-all-link {
  font-weight: 700 !important;
  color: var(--lzn-red) !important;
  font-size: 13px !important;
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
  margin-bottom: 4px !important;
  display: block !important;
}

/* ── Related products — card title size ─────────────────────── */
.related-products .card__heading,
.related-products .card__heading a {
  font-size: 14px !important;
}

/* ── Related products — brand-matched styling ───────────────── */
.related-products .related-products__title,
.related-products .section-heading {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.3px !important;
}
/* Card bottom-border hover accent */
.related-products .card-wrapper .card--card {
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.related-products .card-wrapper:hover .card--card {
  border-bottom-color: #ff0001;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
/* Price — small and dark, no red */
.related-products .price__sale .price-item--sale,
.related-products .price-item {
  color: #111111 !important;
  font-size: 13px !important;
}

/* ── Inline product trust (inside right panel) ───────────────── */
.lzn-inline-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 14px 0 4px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.lzn-inline-trust__item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  background: #fafaf8;
  border: 1px solid #ede9e4;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #333;
  font-family: 'Inter', sans-serif;
}
.lzn-inline-trust__icon {
  color: #ff0001;
  flex-shrink: 0;
  display: flex;
}

/* ── Product gallery overlay arrows (desktop) ───────────────── */
@media screen and (min-width: 750px) {
  [id^="GalleryViewer"] { position: relative; }

  /* Hide the default counter text */
  [id^="GalleryViewer"] .slider-counter { display: none !important; }

  /* Position slider-buttons individually left/right centre */
  [id^="GalleryViewer"] .slider-buttons {
    display: block !important;
    position: static;
    pointer-events: none;
  }

  [id^="GalleryViewer"] .slider-button {
    pointer-events: all;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9) !important;
    border: 1.5px solid rgba(0,0,0,0.1) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, box-shadow 0.15s;
    color: #111;
    z-index: 10;
  }
  [id^="GalleryViewer"] .slider-button--prev { left: 12px; }
  [id^="GalleryViewer"] .slider-button--next { right: 12px; }
  [id^="GalleryViewer"] .slider-button:hover {
    background: #ffffff !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  }
  [id^="GalleryViewer"] .slider-button .svg-wrapper svg {
    width: 14px;
    height: 14px;
  }
}
