/*
Theme Name: Astra Child
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/

/* Fonts loaded via wp_enqueue_style( letspop-fonts ) in functions.php */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Structural tokens — colors live in assets/css/theme-tokens.css */
  --font-display: 'Inter Tight', 'Inter', sans-serif;
  --font-body: 'Inter Tight', 'Inter', sans-serif;

  --radius-card: 20px;
  --radius-pill: 100px;
  --container-max: 1280px;
  --lp-announcement-height: 0px;
  --lp-content-below-header-gap: 20px;
  --lp-header-clearance: calc(64px + var(--lp-announcement-height, 0px));
  --lp-header-offset: calc(var(--lp-header-clearance) + var(--lp-content-below-header-gap));
  --lp-header-nav-font-reduce: 2px;
}

@media (min-width: 922px) {
  :root {
    --lp-header-clearance: calc(64px + var(--lp-announcement-height, 0px));
  }
}

/* ============================================
   BASE STYLES
   ============================================ */
html, body {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
}

/* Astra shell — keeps page canvas dark behind builder/header/footer */
#page,
.site {
  background-color: var(--clr-bg);
  color: var(--clr-text);
}

body.has-lp-marquee {
  --lp-announcement-height: 38px;
}

/* ============================================
   ECOMMERCE ANNOUNCEMENT MARQUEE
   ============================================ */
.lp-announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* Fixed height so the bar can slide off-screen while --lp-announcement-height handles layout only */
  height: 38px;
  background: var(--lp-marquee-bg, var(--color-marquee-bg, #F51822));
  color: var(--lp-marquee-color, var(--color-marquee-text, #ffffff));
  z-index: 10010;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateY(0);
  transition: transform 0.35s ease;
  will-change: transform;
}

.lp-announcement-bar.lp-marquee-hidden {
  pointer-events: none;
}

body.admin-bar .lp-announcement-bar {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .lp-announcement-bar {
    top: 46px;
  }
}

.lp-announcement-bar__inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.lp-announcement-bar__track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  will-change: transform;
  animation: lpMarquee var(--lp-marquee-duration, 24s) linear infinite;
}

.lp-announcement-bar:hover .lp-announcement-bar__track {
  animation-play-state: paused;
}

.lp-announcement-bar__item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding-right: 44px;
  font-size: calc(12px + var(--lp-font-bump));
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lp-announcement-bar__link {
  color: inherit;
  text-decoration: none;
}

.lp-announcement-bar__link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lp-marquee-scratch-trigger {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  vertical-align: baseline;
}

.lp-marquee-scratch-trigger:hover,
.lp-marquee-scratch-trigger:focus-visible {
  opacity: 0.92;
}

.lp-marquee-scratch-trigger:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Scratch coupon modal — dark theme */
.lp-scratch-modal {
  position: fixed;
  inset: 0;
  z-index: 100999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lp-scratch-modal.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.lp-scratch-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.lp-scratch-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 380px);
  padding: 28px 24px 24px;
  border-radius: 16px;
  background: linear-gradient(165deg, #161616 0%, #0c0c0c 100%);
  color: #f5f5f5;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-scratch-modal.is-open .lp-scratch-modal__dialog {
  transform: translateY(0) scale(1);
}

.lp-scratch-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-scratch-modal__close svg {
  display: block;
}

.lp-scratch-modal__close:hover {
  background: #ffffff;
  color: #111111;
}

.lp-scratch-modal__close:focus-visible {
  background: #ffffff;
  color: #111111;
  outline: 2px solid #111111;
  outline-offset: 2px;
}

.lp-scratch-modal__title {
  margin: 0 36px 10px 0;
  font-family: var(--font-display, Georgia, serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
}

.lp-scratch-modal__hint {
  margin: 0 0 18px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.lp-scratch-card {
  position: relative;
  width: 100%;
  height: 128px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  isolation: isolate;
  clip-path: inset(0 round 12px);
}

.lp-scratch-card__prize {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse 120% 100% at 50% 40%, #2a2a2a 0%, #141414 70%);
  border-radius: 12px;
}

.lp-scratch-card__code {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-family: var(--font-body, Inter, sans-serif);
  color: #ffffff;
}

.lp-scratch-card__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
  touch-action: none;
  border-radius: 12px;
}

.lp-scratch-card__canvas:active {
  cursor: grabbing;
}

.lp-scratch-modal__copy.button {
  width: 100%;
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: #111111;
  font-family: var(--font-body, Inter, system-ui, sans-serif);
}

.lp-scratch-modal__copy.button i {
  font-size: 1rem;
  line-height: 1;
}

.lp-scratch-modal__copy.button:hover,
.lp-scratch-modal__copy.button:focus-visible {
  background: #ffffff;
  color: #111111;
  outline: none;
  opacity: 1;
}

body.lp-scratch-modal-open {
  overflow: hidden;
}

.lp-announcement-bar__item::after {
  content: "•";
  margin-left: 22px;
  opacity: 0.7;
}

@keyframes lpMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(var(--lp-marquee-distance, -50%)); }
}

/*
 * Homepage — hero sits directly under fixed chrome (section padding, not track margin).
 * Do not zero #primary globally; other pages rely on body --lp-header-offset.
 */
body.lp-scrollsmoother .site,
body.lp-scrollsmoother .site-content,
body.lp-scrollsmoother .site-content .ast-container,
body.lp-scrollsmoother #content,
body.lp-scrollsmoother #primary,
body.lp-scrollsmoother .entry-content,
body.lp-scrollsmoother .wp-site-blocks,
body.lp-scrollsmoother .wp-block-acf-hero-slider,
body.lp-scrollsmoother .ast-plain-container .site-content,
body.home:not(.lp-scrollsmoother),
body.page-template-template-homepage:not(.lp-scrollsmoother) {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body.home:not(.lp-scrollsmoother) .site-content,
body.home:not(.lp-scrollsmoother) .site-content .ast-container,
body.home:not(.lp-scrollsmoother) #content,
body.home:not(.lp-scrollsmoother) .entry-content,
body.home:not(.lp-scrollsmoother) .ast-plain-container .site-content,
body.page-template-template-homepage:not(.lp-scrollsmoother) .site-content,
body.page-template-template-homepage:not(.lp-scrollsmoother) .site-content .ast-container,
body.page-template-template-homepage:not(.lp-scrollsmoother) #content,
body.page-template-template-homepage:not(.lp-scrollsmoother) .entry-content,
body.page-template-template-homepage:not(.lp-scrollsmoother) .ast-plain-container .site-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/*
 * Homepage — hero sits directly under fixed chrome.
 * Use padding-top on the section (not margin on .hero-track) so margin-collapse
 * cannot push the section down and expose the white body background.
 */
body.home #page,
body.home #content,
body.home #content .ast-container,
body.home #primary.site-main,
body.page-template-template-homepage #page,
body.page-template-template-homepage #content,
body.page-template-template-homepage #content .ast-container,
body.page-template-template-homepage #primary.site-main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body.home section[id^="hero-slider-"],
body.page-template-template-homepage section[id^="hero-slider-"] {
  padding-top: var(--lp-header-clearance) !important;
  margin-top: 0 !important;
  box-sizing: border-box;
  background: linear-gradient(
    to bottom,
    var(--color-header-bg) 0,
    var(--color-header-bg) var(--lp-header-clearance),
    #111111 var(--lp-header-clearance)
  );
}

body.home section[id^="hero-slider-"] .hero-track,
body.page-template-template-homepage section[id^="hero-slider-"] .hero-track {
  margin-top: 0 !important;
}

/* ScrollSmoother home — hero handles clearance (see rules below). */

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--clr-text);
  line-height: 1.15;
  font-weight: 700;
}

a { 
  color: var(--clr-text); 
  text-decoration: none; 
}

/* ============================================
   ASTRA OVERRIDES
   ============================================ */
.ast-article-single { padding: 0 !important; }
.entry-header { display: none !important; }
.ast-page-builder-template .site-content > .ast-container { max-width: none; padding: 0; }
.ast-container { max-width: var(--container-max); }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.lp-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

.lp-section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .lp-section {
    padding: 48px 0;
  }
  .lp-container {
    padding: 0 24px;
  }
}

/* Badge Pill */
.lp-badge {
  display: inline-block;
  background: var(--clr-badge-bg);
  color: var(--clr-badge-text);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: calc(11px + var(--lp-font-bump));
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

/* Buttons */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--clr-btn-dark);
  color: var(--clr-btn-text);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: calc(15px + var(--lp-font-bump));
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lp-btn:hover {
  background: #333333;
  transform: scale(1.02);
}

.lp-btn--inverted {
  background: var(--clr-bg);
  color: var(--clr-text);
}

.lp-btn--inverted:hover {
  background: var(--clr-surface);
}

.lp-btn--full {
  display: block;
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Arrow links */
.lp-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  transition: gap 0.2s ease;
}

.lp-arrow:hover {
  gap: 8px;
}

/* Horizontal scroll utility */
.lp-hscroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 16px;
  padding: 0 24px 16px;
}

.lp-hscroll::-webkit-scrollbar { display: none; }

.lp-hscroll > * {
  scroll-snap-align: start;
  flex-shrink: 0;
  min-width: 85vw;
}

/* ============================================
   SMART HEADER - hide on scroll down, show on scroll up
   ============================================ */

/* Header hidden state — translate distance set in JS (top offset + height) */
header#masthead.lp-header-hidden {
  pointer-events: none;
}

/* Header visible state — transform only; never animate top (prevents layout snap). */
header#masthead {
  transition: transform 0.35s ease, background-color 0.3s ease;
}

/* Header — theme-aware */
header#masthead,
.ast-main-header-wrap,
.main-header-bar,
.ast-primary-header-bar,
.site-primary-header-wrap {
  background: var(--color-header-bg) !important;
  background-color: var(--color-header-bg) !important;
  border: none !important;
}

header#masthead {
  position: fixed !important;
  top: var(--lp-announcement-height) !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  height: auto !important;
  min-height: 0 !important;
}

/* Desktop — ignore hidden mobile header bar when measuring / stacking */
@media (min-width: 922px) {
  header#masthead #ast-mobile-header {
    display: none !important;
  }
}

body.admin-bar header#masthead {
  top: calc(32px + var(--lp-announcement-height)) !important;
}

@media screen and (max-width: 782px) {
  body.admin-bar header#masthead {
    top: calc(46px + var(--lp-announcement-height)) !important;
  }
}

/* Nav links — 2px smaller than body/rem scale; bold top-level labels in the header bar */
header#masthead .site-header-section .main-header-menu > .menu-item > .menu-link,
header#masthead .site-header-section .main-header-menu > .menu-item > a,
header#masthead .main-header-menu > .menu-item > .menu-link,
header#masthead .main-header-menu > .menu-item > a,
header#masthead .ast-header-navigation > .menu-item > .menu-link,
header#masthead .ast-header-navigation > .menu-item > a,
header#masthead .ast-builder-menu-1 .main-header-menu > .menu-item > .menu-link,
header#masthead .ast-builder-menu-2 .main-header-menu > .menu-item > .menu-link {
  font-family: var(--lp-font-primary, 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif);
  font-size: calc(1rem - var(--lp-header-nav-font-reduce, 2px)) !important;
  font-weight: 700 !important;
  line-height: 1.2;
}

header#masthead .main-header-menu > .menu-item > a,
header#masthead .ast-header-navigation .menu-item > a,
header#masthead .site-title a,
header#masthead .ast-site-identity a {
  color: var(--color-header-text) !important;
  transition: color 0.3s ease;
}

header#masthead .main-header-menu > .menu-item > a:hover,
header#masthead .ast-header-navigation .menu-item > a:hover {
  color: var(--color-header-hover) !important;
}

header#masthead .ast-mobile-menu-buttons .menu-toggle,
header#masthead button.menu-toggle {
  color: var(--color-header-text) !important;
}

/* Hide site title / brand name next to logo */
.site-title,
.ast-site-title-wrap,
.site-branding .ast-site-identity .site-title {
  display: none !important;
}

/* Keep logo image visible */
.site-branding .site-logo-img {
  display: block !important;
}

header#masthead .ast-header-search .ast-icon svg,
header#masthead .ast-header-woo-cart svg,
header#masthead .ast-site-header-cart svg,
header#masthead .ast-header-account svg,
header#masthead .ast-header-account-wrap svg,
header#masthead .site-header-focus-item .ast-icon svg,
header#masthead .ast-builder-layout-element svg {
  fill: var(--color-header-icon) !important;
  color: var(--color-header-icon) !important;
}

header#masthead .ast-header-button-1 .ast-custom-button {
  color: var(--color-header-text) !important;
}

header#masthead .ast-social-icons-wrapper a {
  color: var(--color-header-text) !important;
}

/*
 * Inner pages — body clears fixed chrome + small typographic gap.
 * Pages with their own top padding (corporate, contact, Woo) are excluded.
 */
body:not(.lp-scrollsmoother):not(.home):not(.page-template-template-corporate):not(.page-template-template-contact):not(.page-template-template-about):not(.letspop-wc-account-checkout):not(.woocommerce-cart):not(.letspop-wc-order-received):not(.lp-shop-archive):not(.single-product) {
  padding-top: var(--lp-header-offset) !important;
}

/* Legal / generic inner pages — native scroll + header clearance (contact/corporate use template CSS). */
body.letspop-inner-dark:not(.lp-scrollsmoother):not(.home):not(.page-template-template-contact):not(.page-template-template-corporate):not(.page-template-template-about) {
  padding-top: var(--lp-header-clearance) !important;
}

/* PDP — clearance only (no extra 20px gap); inner wrappers stay flush. */
body.single-product:not(.lp-scrollsmoother),
/* WooCommerce + shop (native scroll) — body clears fixed marquee + header so notices/toasts aren't hidden. */
body.woocommerce-cart:not(.lp-scrollsmoother),
body.letspop-wc-account-checkout:not(.lp-scrollsmoother),
body.letspop-wc-order-received:not(.lp-scrollsmoother),
body.lp-shop-archive:not(.lp-scrollsmoother) {
  padding-top: var(--lp-header-clearance) !important;
}

/* Homepage excluded — hero section handles its own inset. */
body:not(.lp-scrollsmoother) #content.site-content,
body:not(.lp-scrollsmoother) .site-content > .ast-container {
  padding-top: 0 !important;
}

/*
 * ScrollSmoother wraps the page in #lp-smooth-wrapper / #lp-smooth-content; body padding-top
 * no longer clears the fixed masthead for in-flow content — mirror offset on smooth content.
 */
body.lp-scrollsmoother {
  padding-top: 0 !important;
}

/* Match site chrome so ScrollSmoother layers don’t flash white before sections paint */
body.lp-scrollsmoother #lp-smooth-wrapper,
body.lp-scrollsmoother #lp-smooth-content {
  background-color: var(--color-smooth-bg);
}

/*
 * Top inset for ScrollSmoother (non-home). Home hero uses .hero-track margin-top.
 */
body.lp-scrollsmoother:not(.home) #lp-smooth-content {
  padding-top: var(--lp-smooth-content-offset, var(--lp-header-clearance)) !important;
  box-sizing: border-box;
}

body.home.lp-scrollsmoother #lp-smooth-content {
  padding-top: 0 !important;
  box-sizing: border-box;
}

/* ============================================
   HEADER BUILDER - Centered Logo Layout
   ============================================ */
/* Ensure the center column is truly centered with balanced sides */
.ast-builder-grid-row.ast-grid-center-col-layout {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  align-items: center;
}

.ast-builder-grid-row.ast-grid-center-col-layout .site-header-section {
  flex: 1 1 auto;
  min-width: 0;
}

/* Center the logo section */
.ast-builder-grid-row .site-header-section-center {
  justify-content: center !important;
}

/* Left section: align menu to the left */
.ast-builder-grid-row .site-header-section-left {
  justify-content: flex-start !important;
}

/* Right section: align icons to the right */
.ast-builder-grid-row .site-header-section-right {
  justify-content: flex-end !important;
}

.site-header-section-left .main-header-menu,
.site-header-section-right .main-header-menu {
  display: flex !important;
  align-items: center !important;
}

.site-header-section-left .main-header-menu {
  justify-content: flex-start !important;
}

.site-header-section-right .ast-builder-menu-2 .main-header-menu {
  justify-content: flex-end !important;
}

.site-header-section-right .ast-builder-layout-element {
  display: inline-flex !important;
  align-items: center !important;
}

.site-header-section-center .site-branding,
.site-header-section-center .custom-logo-link {
  display: flex !important;
  justify-content: center !important;
}

.site-header-section-center .custom-logo-link img {
  max-height: 58px;
  width: auto;
}

/* ============================================
   PRIMARY MENU — desktop dropdown (dark + submenu thumbnails)
   ============================================ */
header#masthead .site-header-section .main-header-menu .sub-menu,
header#masthead .site-header-section .main-header-menu .children {
  background-color: var(--color-surface) !important;
  background: var(--color-surface) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 12px !important;
  box-shadow: 0 18px 48px var(--color-shadow-neutral) !important;
  padding: 8px 0 !important;
  min-width: 220px !important;
}

header#masthead .site-header-section .main-header-menu .sub-menu .sub-menu,
header#masthead .site-header-section .main-header-menu .children .children {
  top: -9px !important;
}

header#masthead .site-header-section .main-header-menu .sub-menu .menu-link,
header#masthead .site-header-section .main-header-menu .sub-menu > li > a {
  color: var(--color-text-body) !important;
  background: transparent !important;
  font-size: calc(13px + var(--lp-font-bump, 0px)) !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}

header#masthead .site-header-section .main-header-menu .sub-menu .menu-item:hover > .menu-link,
header#masthead .site-header-section .main-header-menu .sub-menu .menu-item:focus-within > .menu-link,
header#masthead .site-header-section .main-header-menu .sub-menu > li > a:hover {
  background: var(--color-surface-elevated) !important;
  color: var(--color-text) !important;
}

header#masthead .site-header-section .main-header-menu .sub-menu .menu-link {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 16px !important;
}

.lp-submenu-thumb {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-submenu-thumb-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--color-border);
}

/*
 * Astra prepends a small chevron SVG to every submenu title (extras.php nav_menu_item_title).
 * Our thumbnail is output before that, so order becomes [thumb][chevron][label]. Hide only the
 * leading icon when a thumbnail is present; items with children still get the trailing dropdown toggle.
 */
header#masthead .site-header-section .main-header-menu .sub-menu .menu-link .lp-submenu-thumb + svg,
.ast-mobile-popup-drawer .main-header-menu .sub-menu .menu-link .lp-submenu-thumb + svg {
  display: none !important;
}

header#masthead .site-header-section .main-header-menu .sub-menu .menu-link .lp-submenu-thumb + span.ast-icon,
.ast-mobile-popup-drawer .main-header-menu .sub-menu .menu-link .lp-submenu-thumb + span.ast-icon {
  display: none !important;
}

.lp-submenu-title {
  flex: 1 1 auto;
  min-width: 0;
}

/* Shop submenu — coming soon badge top-right of category name (inc/menu-coming-soon.php) */
.lp-submenu-title-wrap {
  position: relative;
  display: inline-block;
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 4.75rem;
  vertical-align: middle;
}

.lp-menu-coming-soon-label {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  margin: 0;
  font-size: calc(9px + var(--lp-font-bump, 0px));
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-transform: uppercase;
  color: #f51822 !important;
  white-space: nowrap;
  pointer-events: none;
}

header#masthead .site-header-section .main-header-menu .sub-menu .lp-menu-item--coming-soon > .menu-link,
.ast-mobile-popup-drawer .main-header-menu .sub-menu .lp-menu-item--coming-soon > .menu-link {
  cursor: default;
  align-items: flex-start !important;
}

header#masthead .site-header-section .main-header-menu .sub-menu .lp-menu-item--coming-soon > .menu-link:hover,
.ast-mobile-popup-drawer .main-header-menu .sub-menu .lp-menu-item--coming-soon > .menu-link:hover {
  background: transparent !important;
  color: inherit;
}

/* Mobile drawer: keep submenu rows aligned when thumbnails are present */
.ast-mobile-popup-drawer .main-header-menu .sub-menu .menu-link {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
}

/* Header builder element spacing */
.ast-builder-layout-element {
  margin: 0 6px !important;
}

.ast-header-search .search-form,
.ast-header-search .ast-search-menu-icon .search-field,
.ast-header-search .search-submit {
  display: none !important;
}

.ast-header-search .ast-search-menu-icon,
.ast-header-search .astra-search-icon,
.ast-site-header-cart .cart-container {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 0 !important;
  line-height: 1 !important;
  vertical-align: middle !important;
  border: none !important;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  outline: none !important;
  box-shadow: none !important;
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.ast-header-search .ast-search-menu-icon > *,
.ast-header-search .astra-search-icon > *,
.ast-site-header-cart .cart-container > *,
.ast-header-search .ast-search-menu-icon .ast-icon,
.ast-header-search .astra-search-icon .ast-icon,
.ast-site-header-cart .cart-container .ast-icon,
.ast-site-header-cart .cart-container .ast-cart-menu-wrap {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

.ast-header-search .ast-search-menu-icon svg,
.ast-header-search .astra-search-icon svg,
.ast-site-header-cart .cart-container svg {
  display: block !important;
  width: 18px;
  height: 18px;
}

.ast-site-header-cart .cart-container .ast-cart-menu-wrap {
  position: relative;
  width: 18px;
  height: 18px;
}

.ast-site-header-cart .cart-container .count,
.ast-site-header-cart .cart-container .ast-count-text {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

.ast-header-search .ast-search-menu-icon:hover,
.ast-header-search .astra-search-icon:hover,
.ast-site-header-cart .cart-container:hover {
  background: var(--color-accent-soft);
  box-shadow: 0 12px 24px var(--color-shadow-accent);
  transform: translateY(-1px);
}

.ast-header-search .ast-search-menu-icon:focus,
.ast-header-search .ast-search-menu-icon:focus-visible,
.ast-header-search .astra-search-icon:focus,
.ast-header-search .astra-search-icon:focus-visible,
.ast-site-header-cart .cart-container:focus,
.ast-site-header-cart .cart-container:focus-visible,
.ast-mobile-menu-buttons .menu-toggle:focus,
.ast-mobile-menu-buttons .menu-toggle:focus-visible,
button.menu-toggle:focus,
button.menu-toggle:focus-visible {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.ast-site-header-cart .count {
  top: -4px !important;
  right: -3px !important;
}

/* ============================================
   MOBILE HEADER
   ============================================ */
@media (max-width: 921px) {
  .ast-header-break-point .main-header-bar {
    background: var(--color-header-bg) !important;
  }

  .ast-header-break-point .ast-mobile-menu-buttons,
  .ast-header-break-point .menu-toggle {
    display: block !important;
    color: var(--color-header-text) !important;
  }

  .ast-header-break-point .site-header-section-right {
    gap: 8px !important;
  }

  .ast-header-break-point .ast-header-search .ast-search-menu-icon,
  .ast-header-break-point .ast-site-header-cart .cart-container {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
  }

  .ast-header-break-point .main-header-menu .menu-item a {
    color: var(--color-header-text) !important;
  }

  /* ============================================
     MOBILE SIDE DRAWER MENU (slides from right)
     ============================================ */

  /* Astra off-canvas popup drawer */
  #ast-mobile-popup,
  .ast-mobile-popup-drawer {
    left: 0 !important;
    right: auto !important;
    transition: none !important;
  }

  /* The sliding inner panel */
  .ast-mobile-popup-drawer .ast-mobile-popup-inner {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    width: 80vw !important;
    max-width: 80vw !important;
    height: 100vh !important;
    background: var(--color-header-bg) !important;
    z-index: 100000 !important;
    transform: translateX(-115%) !important;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 60px 0 20px 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: -4px 0 20px rgba(0,0,0,0.5) !important;
    display: flex !important;
    flex-direction: column !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Open state - slide in from right */
  .ast-mobile-popup-drawer.active .ast-mobile-popup-inner {
    transform: translateX(0) !important;
  }

  /* Overlay backdrop */
  .ast-mobile-popup-drawer .ast-mobile-popup-overlay {
    transition: opacity 0.3s ease !important;
  }

  .ast-mobile-popup-drawer.active .ast-mobile-popup-overlay {
    opacity: 1 !important;
    visibility: visible !important;
    cursor: pointer !important;
  }

  /* Close button white */
  .ast-mobile-popup-drawer .menu-toggle-close {
    color: var(--color-header-text) !important;
  }

  /* Popup header */
  .ast-mobile-popup-drawer .ast-mobile-popup-header {
    background: var(--color-header-bg) !important;
    border-bottom: 1px solid var(--color-border) !important;
    padding: 16px 20px !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 10 !important;
  }

  /* Menu content area */
  .ast-mobile-popup-drawer .ast-mobile-popup-content,
  .ast-mobile-popup-drawer .ast-desktop-popup-content {
    background: var(--color-header-bg) !important;
    padding: 10px 20px !important;
  }

  .ast-mobile-popup-drawer .main-header-bar-navigation,
  .ast-mobile-popup-drawer .site-navigation,
  .ast-mobile-popup-drawer .main-navigation,
  .ast-mobile-popup-drawer .main-header-menu,
  .ast-mobile-popup-drawer .sub-menu,
  .ast-mobile-popup-drawer .children,
  .ast-mobile-popup-drawer .menu-item,
  .ast-mobile-popup-drawer .menu-link {
    background: var(--color-header-bg) !important;
  }

  /* Menu list in drawer */
  .ast-mobile-popup-drawer .main-header-menu {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    background: transparent !important;
  }

  .ast-mobile-popup-drawer .main-header-menu .menu-item {
    border-bottom: 1px solid var(--color-border) !important;
    margin: 0 !important;
  }

  .ast-mobile-popup-drawer .main-header-menu .menu-item a,
  .ast-mobile-popup-drawer .main-header-menu .menu-item > .menu-link {
    color: var(--color-header-text) !important;
    padding: 14px 10px !important;
    font-family: var(--lp-font-primary, 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif);
    font-size: calc(16px + var(--lp-font-bump) - var(--lp-header-nav-font-reduce, 2px)) !important;
    font-weight: 700 !important;
    display: block !important;
    background: var(--color-header-bg) !important;
  }

  /* Submenu accordion — parent items with children */
  .ast-mobile-popup-drawer .main-header-menu .menu-item-has-children {
    position: relative !important;
  }

  .ast-mobile-popup-drawer .main-header-menu .menu-item-has-children > .menu-link {
    padding-right: 52px !important;
  }

  .ast-mobile-popup-drawer .main-header-menu .menu-item-has-children > .ast-menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 48px !important;
    min-height: 48px !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    cursor: pointer !important;
    z-index: 2 !important;
    color: var(--color-header-text) !important;
    background: transparent !important;
    transition: transform 0.2s ease !important;
  }

  /* Collapse all submenus by default; expand only when toggled open */
  .ast-mobile-popup-drawer .main-header-menu .sub-menu,
  .ast-mobile-popup-drawer .main-header-menu .children {
    display: none !important;
  }

  .ast-mobile-popup-drawer .main-header-bar-navigation .menu-item-has-children.ast-submenu-expanded > .sub-menu,
  .ast-mobile-popup-drawer .main-header-bar-navigation .menu-item-has-children.ast-submenu-expanded > .children {
    display: block !important;
  }

  .ast-mobile-popup-drawer .main-header-menu .sub-menu .menu-item,
  .ast-mobile-popup-drawer .main-header-menu .children .menu-item {
    border-bottom: none !important;
  }

  .ast-mobile-popup-drawer .main-header-menu .sub-menu .menu-link,
  .ast-mobile-popup-drawer .main-header-menu .children .menu-link {
    padding-left: 20px !important;
    font-size: calc(13px + var(--lp-font-bump, 0px)) !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
  }

  .ast-mobile-popup-drawer .main-header-menu .sub-menu .sub-menu .menu-link,
  .ast-mobile-popup-drawer .main-header-menu .children .children .menu-link {
    padding-left: 32px !important;
  }

  .ast-mobile-popup-drawer .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle {
    transform: rotateX(180deg) !important;
  }

  .ast-mobile-popup-drawer .main-header-menu .menu-item.current-menu-item > a,
  .ast-mobile-popup-drawer .main-header-menu .menu-item.current_page_item > a,
  .ast-mobile-popup-drawer .main-header-menu .menu-item:hover > a,
  .ast-mobile-popup-drawer .main-header-menu .menu-link:hover {
    color: var(--color-header-text) !important;
    background: var(--color-header-bg) !important;
  }

  /* Search icon in popup */
  .ast-mobile-popup-drawer .ast-mobile-popup-content .ast-icon svg,
  .ast-mobile-popup-drawer .ast-search-menu-icon .ast-icon svg {
    fill: var(--color-header-icon) !important;
    color: var(--color-header-icon) !important;
  }

  .site-header-section-center .custom-logo-link img {
    max-height: 48px;
  }

  .ast-header-break-point .ast-mobile-menu-buttons .menu-toggle,
  .ast-header-break-point button.menu-toggle {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
  }
}

/* ============================================
   SEARCH MODAL
   ============================================ */
.lp-search-modal {
  position: fixed;
  inset: 0;
  z-index: 100100;
  overflow: hidden;
}

.lp-search-modal,
.lp-search-modal * {
  box-sizing: border-box;
}

.lp-search-modal[hidden] {
  display: none !important;
}

.lp-search-modal__backdrop {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  backdrop-filter: blur(6px);
}

.lp-search-modal__dialog {
  position: relative;
  width: min(1060px, calc(100vw - 56px));
  max-height: min(420px, calc(100vh - 96px));
  margin: min(8vh, 72px) auto 0;
  background: var(--color-surface);
  color: var(--clr-text);
  border: 1px solid var(--color-border) !important;
  border-radius: 4px;
  padding: 26px 24px 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  transform: translateY(18px);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lp-search-modal.lp-search-modal--has-results .lp-search-modal__dialog {
  max-height: min(760px, calc(100vh - 80px));
}

.lp-search-modal.is-open .lp-search-modal__dialog {
  opacity: 1;
  transform: translateY(0);
}

.lp-search-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none !important;
  outline: none !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--clr-text);
  font-size: calc(28px + var(--lp-font-bump));
  line-height: 1;
  cursor: pointer;
}

.lp-search-modal__eyebrow {
  margin: 0 0 10px;
  font-size: calc(12px + var(--lp-font-bump));
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

.lp-search-modal h2 {
  margin: 0 0 18px;
  color: var(--clr-text);
  font-size: clamp(calc(28px + var(--lp-font-bump)), 4vw, calc(42px + var(--lp-font-bump)));
}

.lp-search-modal__form .woocommerce-product-search,
.lp-search-modal__form .search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--clr-border);
}

.lp-search-modal__form {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* Astra native live-search suggestions -> chip style row */
.lp-search-modal .ast-live-search-results {
  position: static !important;
  inset: auto !important;
  width: 100% !important;
  margin: 12px 0 6px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
  z-index: auto !important;
  overflow-x: hidden;
}

.lp-search-modal .ast-live-search-results .ast-search--posttype-heading {
  display: none !important;
}

.lp-search-modal .ast-live-search-results .ast-search-item {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  margin: 0 !important;
  padding: 8px 14px !important;
  border: 1px solid var(--clr-border) !important;
  border-radius: 4px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: var(--clr-text) !important;
  font-size: calc(13px + var(--lp-font-bump)) !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
}

.lp-search-modal .ast-live-search-results .ast-search-item:hover {
  background: rgba(245, 24, 34, 0.16) !important;
  border-color: rgba(245, 24, 34, 0.42) !important;
}

.lp-search-modal .ast-live-search-results .ast-search-item span {
  white-space: nowrap;
}

.lp-search-modal__form label {
  display: none;
}

.lp-search-modal__form input[type="search"] {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 58px;
  border: none !important;
  outline: none !important;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--clr-text);
  padding: 0 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lp-search-modal__form input[type="search"]::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.lp-search-modal__form button,
.lp-search-modal__form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: none !important;
  outline: none !important;
  border-radius: 4px;
  background: var(--clr-accent-red);
  color: #ffffff;
  padding: 0 26px;
  font-weight: 600;
  box-shadow: 0 14px 26px rgba(245, 24, 34, 0.28);
  max-width: 100%;
}

.lp-search-modal__form button:hover,
.lp-search-modal__form input[type="submit"]:hover {
  background: #111111;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.35);
}

.lp-search-results {
  position: relative;
  margin-top: 24px;
  width: 100%;
  border: none !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  min-height: 0;
}

.lp-search-results__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.lp-search-results__heading {
  display: block;
  padding: 0;
  color: var(--clr-text);
  font-size: calc(18px + var(--lp-font-bump));
  font-weight: 600;
  letter-spacing: 0;
}

.lp-search-results__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 4px;
  overflow-x: hidden;
}

.lp-search-results__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--clr-text);
  text-decoration: none;
}

.lp-search-results__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: auto;
  min-height: 0;
  max-height: none;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
}

.lp-search-results__media img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.lp-search-results__meta {
  display: grid;
  gap: 6px;
}

.lp-search-results__title {
  font-size: calc(15px + var(--lp-font-bump));
  line-height: 1.3;
  color: var(--clr-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp-search-results__price {
  font-size: calc(14px + var(--lp-font-bump));
  font-weight: 700;
  color: var(--clr-accent-red);
}

.lp-search-results__footer {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.lp-search-results__view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 62px;
  padding: 0 28px;
  border-radius: 4px;
  background: var(--clr-accent-red);
  color: #ffffff;
  text-decoration: none;
  font-size: calc(18px + var(--lp-font-bump));
  font-weight: 500;
  box-shadow: 0 14px 26px rgba(245, 24, 34, 0.28);
}

.lp-search-results__view-all:hover {
  color: #ffffff;
  background: #111111;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.35);
}

.lp-search-modal__form:not(.lp-live-ready) .lp-search-results {
  display: none !important;
}

.lp-product-search-page {
  background: linear-gradient(180deg, #0a0a0a 0%, var(--clr-bg) 100%);
  min-height: calc(100vh - 80px);
  padding: 44px 20px 64px;
}

.lp-product-search-shell {
  max-width: 1240px;
  margin: 0 auto;
}

.lp-product-search-head {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.lp-product-search-kicker {
  margin: 0;
  color: var(--clr-muted);
  font-size: calc(13px + var(--lp-font-bump));
  text-transform: uppercase;
}

.lp-product-search-title {
  margin: 0;
  color: var(--clr-text);
}

.lp-product-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  max-width: 760px;
}

.lp-product-search-form input[type="search"] {
  min-height: 56px;
  border: none;
  border-radius: 999px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--clr-text);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.lp-product-search-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.lp-product-search-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: transparent;
  text-decoration: none;
  box-shadow: none;
  border: 1px solid var(--lp-product-card-border, #00000014);
}

.lp-product-search-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background: var(--clr-surface-img);
  overflow: hidden;
}

.lp-product-search-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-product-search-card__body {
  display: grid;
  gap: 8px;
}

.lp-product-search-card__title {
  color: var(--clr-text);
  font-size: calc(17px + var(--lp-font-bump));
  line-height: 1.35;
}

.lp-product-search-card__price,
.lp-product-search-card__price .amount {
  color: var(--clr-accent-red);
  font-weight: 700;
}

.lp-product-search-empty {
  padding: 44px 28px;
  border-radius: 18px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
}

body.lp-search-modal-open,
body.lp-mobile-drawer-open,
body.lp-cart-drawer-open {
  overflow: hidden;
}

html,
body {
  max-width: 100%;
}

html,
body {
  overflow-x: hidden;
}

body.lp-search-modal-open {
  overflow-x: hidden !important;
}

@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .lp-search-modal {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .lp-search-modal__dialog {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: 100%;
    max-height: 100dvh;
    height: 100dvh;
    margin: 0;
    border-radius: 0;
    padding: calc(14px + env(safe-area-inset-top, 0px)) 14px calc(14px + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
  }

  .lp-search-modal__form .woocommerce-product-search,
  .lp-search-modal__form .search-form {
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
  }

  .lp-search-modal__form {
    flex: 1;
    overflow: hidden;
    min-width: 0;
  }

  .lp-search-results {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    margin-top: 14px;
  }

  .lp-search-results__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-height: none;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 8px;
    min-width: 0;
  }

  .lp-search-results__media {
    min-height: 0;
    max-height: none;
  }

  .lp-search-results__media img {
    height: 130px;
  }

  .lp-search-results__title {
    font-size: calc(14px + var(--lp-font-bump));
  }

  .lp-search-results__price {
    font-size: calc(13px + var(--lp-font-bump));
  }

  .lp-search-results__view-all {
    min-height: 50px;
    min-width: 136px;
    border-radius: 4px;
    font-size: calc(15px + var(--lp-font-bump));
  }

  .lp-search-results__footer {
    margin-top: 14px;
    padding-bottom: 2px;
  }

  .lp-search-modal .ast-live-search-results {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px !important;
  }

  .lp-search-modal .ast-live-search-results::-webkit-scrollbar {
    display: none;
  }

  .lp-search-modal .ast-live-search-results .ast-search-item {
    flex: 0 0 auto;
    max-width: calc(100vw - 80px);
  }

  .lp-product-search-form,
  .lp-product-search-grid {
    grid-template-columns: 1fr;
  }
}

/* Cart drawer + cart page visuals → assets/css/cart-drawer-cart-page.css */

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce input[type="submit"],
.ast-button,
.button,
button,
input[type=button],
input[type=reset],
input[type=submit] {
  background: var(--color-btn-primary-bg);
  border: none !important;
  outline: none !important;
  color: var(--color-btn-primary-text);
  border-radius: 999px;
  box-shadow: 0 12px 24px var(--color-shadow-accent);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce input[type="submit"]:hover,
.ast-button:hover,
.button:hover,
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  background: var(--color-btn-primary-hover-bg);
  color: var(--color-btn-primary-hover-text);
  box-shadow: 0 12px 24px var(--color-shadow-neutral);
}

@media (max-width: 921px) {
  #astra-mobile-cart-drawer.astra-cart-drawer {
    position: fixed !important;
    top: 0 !important;
    width: 80vw !important;
    max-width: 80vw !important;
    right: 0 !important;
    left: auto !important;
    transform: translateX(100%) !important;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: none !important;
  }

  #astra-mobile-cart-drawer.astra-cart-drawer.active {
    right: 0 !important;
    left: auto !important;
    transform: translateX(0) !important;
  }

  .astra-mobile-cart-overlay {
    left: 0 !important;
    right: 0 !important;
  }
}

/* ============================================
   SECTION 1: HERO
   ============================================ */
#hero {
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  background: var(--clr-bg);
  margin-top: 0 !important;
}

#hero .lp-container {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 60px;
  align-items: center;
}

#hero h1 {
  font-size: calc(64px + var(--lp-font-bump));
  margin-bottom: 24px;
}

#hero .hero-tagline {
  font-size: calc(18px + var(--lp-font-bump));
  color: var(--clr-body);
  margin-bottom: 16px;
}

#hero .hero-desc {
  font-size: calc(16px + var(--lp-font-bump));
  color: var(--clr-muted);
  margin-bottom: 32px;
}

#hero .hero-image {
  text-align: center;
}

#hero .hero-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  #hero .lp-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  #hero h1 {
    font-size: calc(42px + var(--lp-font-bump));
  }
  #hero .hero-image img {
    max-width: 280px;
  }
}

/* ============================================
   SECTION 2: EXPERIENCE
   ============================================ */
#experience {
  background: var(--clr-bg);
}

#experience .lp-container {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 60px;
  align-items: center;
}

#experience h2 {
  font-size: calc(42px + var(--lp-font-bump));
  margin-bottom: 24px;
}

#experience p {
  color: var(--clr-body);
  margin-bottom: 16px;
}

#experience .experience-cta {
  margin-top: 24px;
}

#experience .experience-image img {
  border-radius: var(--radius-card);
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  #experience .lp-container {
    grid-template-columns: 1fr;
  }
  #experience h2 {
    font-size: calc(32px + var(--lp-font-bump));
  }
}

/* ============================================
   SECTION 3: BESTSELLERS
   ============================================ */
#services {
  background: var(--clr-bg);
  padding-bottom: 0;
}

#services h2 {
  font-size: calc(48px + var(--lp-font-bump));
  margin-bottom: 32px;
}

/* Full-width carousel */
.bestsellers-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.bestsellers-track::-webkit-scrollbar { display: none; }

.bestseller-card {
  scroll-snap-align: start;
  min-width: 75vw;
  flex-shrink: 0;
  min-height: 580px;
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
}

.bestseller-card--red { background: var(--clr-accent-red); }
.bestseller-card--yellow { background: var(--clr-accent-yel); }
.bestseller-card--green { background: var(--clr-accent-grn); }

.bestseller-card__number {
  font-family: var(--font-display);
  font-size: calc(180px + var(--lp-font-bump));
  font-weight: 700;
  line-height: 1;
  color: var(--clr-text);
  margin-bottom: 16px;
}

.bestseller-card__name {
  font-family: var(--font-display);
  font-size: calc(40px + var(--lp-font-bump));
  font-weight: 700;
  margin-bottom: 16px;
}

.bestseller-card__desc {
  font-size: calc(16px + var(--lp-font-bump));
  color: rgba(17, 17, 17, 0.8);
  margin-bottom: 24px;
}

.bestseller-card__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bestseller-card__image img {
  max-width: 380px;
  max-height: 90%;
  object-fit: contain;
}

/* Feature Highlights */
.feature-highlights {
  padding: 48px 0;
  background: var(--clr-bg);
}

.feature-highlights .lp-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--clr-surface);
  border-radius: 16px;
  padding: 28px;
}

.feature-card__icon {
  font-size: calc(32px + var(--lp-font-bump));
  margin-bottom: 16px;
  color: var(--clr-accent-red);
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: calc(20px + var(--lp-font-bump));
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: calc(15px + var(--lp-font-bump));
  color: var(--clr-body);
}

@media (max-width: 768px) {
  .bestseller-card {
    min-width: 100vw;
    max-width: 100vw;
    grid-template-columns: 1fr;
    padding: 40px 24px;
    min-height: 520px;
  }
  .bestseller-card__number {
    font-size: calc(120px + var(--lp-font-bump));
  }
  .bestseller-card__name {
    font-size: calc(32px + var(--lp-font-bump));
  }
  .bestseller-card__image img {
    max-width: 280px;
  }
  .feature-highlights .lp-container {
    grid-template-columns: 1fr;
  }
  .feature-highlights .lp-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 24px 16px;
  }
  .feature-card {
    scroll-snap-align: start;
    flex-shrink: 0;
    min-width: 75vw;
  }
}

/* ============================================
   SECTION 4: SNACK MATCH
   ============================================ */
#snack-match {
  background: var(--clr-bg);
  text-align: center;
}

#snack-match h2 {
  font-size: calc(42px + var(--lp-font-bump));
  margin-bottom: 16px;
}

#snack-match .section-subtitle {
  color: var(--clr-body);
  margin-bottom: 48px;
}

.snack-selector {
  max-width: 600px;
  margin: 0 auto;
}

.selector-row {
  margin-bottom: 24px;
}

.selector-label {
  font-weight: 600;
  font-size: calc(14px + var(--lp-font-bump));
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-muted);
  margin-bottom: 12px;
}

.selector-options {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.selector-pill {
  background: var(--clr-surface);
  border: 1.5px solid var(--clr-border);
  color: var(--clr-body);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: calc(14px + var(--lp-font-bump));
  cursor: pointer;
  transition: all 0.2s ease;
}

.selector-pill:hover {
  border-color: var(--clr-text);
}

.selector-pill.active {
  background: var(--clr-btn-dark);
  color: var(--clr-btn-text);
  border-color: var(--clr-btn-dark);
}

.snack-result {
  margin-top: 40px;
  padding: 32px;
  background: var(--clr-surface);
  border-radius: var(--radius-card);
  display: none;
}

.snack-result.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.snack-result img {
  max-width: 200px;
  margin-bottom: 16px;
}

/* ============================================
   SECTION 5: PRODUCTS
   ============================================ */
#products {
  background: var(--clr-bg);
}

#products h2 {
  font-size: calc(42px + var(--lp-font-bump));
  margin-bottom: 16px;
}

#products .section-subtitle {
  color: var(--clr-body);
  margin-bottom: 48px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: transparent;
  border: 1px solid var(--lp-product-card-border, #00000014);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.product-card:hover {
  box-shadow: none;
  transform: none;
}

.product-card__image {
  background: #f0f0f0;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__image img {
  max-height: 90%;
  object-fit: contain;
}

.product-card__content {
  padding: 20px;
}

.product-card__content h3 {
  font-family: var(--font-body);
  font-size: calc(18px + var(--lp-font-bump));
  font-weight: 600;
  margin-bottom: 8px;
}

.product-card__content p {
  font-size: calc(14px + var(--lp-font-bump));
  color: var(--clr-muted);
  margin-bottom: 12px;
}

.product-card__price {
  font-size: calc(20px + var(--lp-font-bump));
  font-weight: 700;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .products-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 24px 16px;
  }
  .products-grid::-webkit-scrollbar { display: none; }
  .product-card {
    scroll-snap-align: start;
    flex-shrink: 0;
    min-width: 85vw;
  }
}

/* ============================================
   SECTION 6: COMING THIS MONTH
   ============================================ */
#coming-month {
  background: var(--clr-bg);
  text-align: center;
}

#coming-month h2 {
  font-size: calc(42px + var(--lp-font-bump));
  margin-bottom: 16px;
}

#coming-month .section-subtitle {
  color: var(--clr-body);
  margin-bottom: 48px;
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.coming-soon-card {
  background: transparent;
  border: 1px solid var(--lp-product-card-border, #00000014);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.coming-soon-card__image {
  background: linear-gradient(145deg, #f5f5f5 0%, #e0e0e0 100%);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-card__image img {
  max-height: 90%;
  object-fit: contain;
}

.coming-soon-card__content {
  padding: 20px 24px 24px;
  text-align: center;
}

.coming-soon-card__content h3 {
  font-family: var(--font-body);
  font-size: calc(22px + var(--lp-font-bump));
  font-weight: 600;
  margin-bottom: 8px;
}

.coming-soon-card__content p {
  font-size: calc(14px + var(--lp-font-bump));
  color: var(--clr-muted);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .coming-soon-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 24px 16px;
  }
  .coming-soon-grid::-webkit-scrollbar { display: none; }
  .coming-soon-card {
    scroll-snap-align: start;
    flex-shrink: 0;
    min-width: 85vw;
  }
}

/* ============================================
   SECTION 7: BULK GIFTING
   ============================================ */
#bulk-gifting {
  background: var(--clr-surface);
}

#bulk-gifting .lp-container {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 60px;
  align-items: center;
}

#bulk-gifting h2 {
  font-size: calc(42px + var(--lp-font-bump));
  margin-bottom: 24px;
}

#bulk-gifting p {
  color: var(--clr-body);
  margin-bottom: 24px;
}

.bulk-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.bulk-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--clr-body);
}

.bulk-features li::before {
  content: "→";
  color: var(--clr-accent-red);
  font-weight: 700;
}

#bulk-gifting .bulk-image img {
  border-radius: var(--radius-card);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  #bulk-gifting .lp-container {
    grid-template-columns: 1fr;
  }
  #bulk-gifting h2 {
    font-size: calc(32px + var(--lp-font-bump));
  }
}

/* ============================================
   SECTION 8: WHERE TO BUY
   ============================================ */
#where-to-buy {
  background: var(--clr-bg);
  text-align: center;
}

#where-to-buy h2 {
  font-size: calc(42px + var(--lp-font-bump));
  margin-bottom: 16px;
}

#where-to-buy .section-subtitle {
  color: var(--clr-body);
  margin-bottom: 48px;
}

.platform-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.platform-btn {
  background: var(--clr-bg);
  border: 2px solid var(--clr-border);
  border-radius: 16px;
  padding: 20px 40px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: calc(18px + var(--lp-font-bump));
  color: var(--clr-text);
  cursor: pointer;
  transition: all 0.2s ease;
}

.platform-btn:hover {
  border-color: var(--clr-text);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .platform-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ============================================
   SECTION 9: STATS BAR
   ============================================ */
#stats {
  background: var(--clr-text);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: calc(56px + var(--lp-font-bump));
  font-weight: 700;
  color: var(--clr-accent-red);
  margin-bottom: 8px;
}

.stat-label {
  font-weight: 700;
  font-size: calc(13px + var(--lp-font-bump));
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-bg);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: calc(14px + var(--lp-font-bump));
  color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 32px;
  }
  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ============================================
   SECTION 10: TESTIMONIALS
   ============================================ */
#testimonials {
  background: var(--clr-bg);
}

#testimonials h2 {
  font-size: calc(42px + var(--lp-font-bump));
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--clr-surface);
  border-radius: var(--radius-card);
  padding: 28px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--clr-bg);
}

.testimonial-avatar--red { background: var(--clr-accent-red); }
.testimonial-avatar--yellow { background: var(--clr-accent-yel); }
.testimonial-avatar--green { background: var(--clr-accent-grn); }

.testimonial-name {
  font-weight: 600;
  font-size: calc(16px + var(--lp-font-bump));
}

.testimonial-quote {
  font-style: italic;
  color: var(--clr-body);
  margin-bottom: 16px;
}

.testimonial-stars {
  color: var(--clr-accent-yel);
  margin-bottom: 8px;
}

.testimonial-location {
  font-size: calc(13px + var(--lp-font-bump));
  color: var(--clr-muted);
}

@media (max-width: 768px) {
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 24px 16px;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testimonial-card {
    scroll-snap-align: start;
    flex-shrink: 0;
    min-width: 85vw;
  }
}

/* ============================================
   SECTION 11: CTA BANNER
   ============================================ */
#cta-banner {
  background: var(--clr-accent-red);
  padding: 80px 0;
  text-align: center;
}

#cta-banner h2 {
  color: var(--clr-bg);
  font-size: calc(40px + var(--lp-font-bump));
  margin-bottom: 32px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer,
#colophon {
  display: none !important;
}

#lp-footer {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  color: var(--clr-text);
  width: 100%;
  overflow: hidden;
}

#lp-footer * {
  box-sizing: border-box;
}

#lp-footer .lp-footer-shell {
  width: min(100%, 100%);
  margin: 0 auto;
}

#lp-footer .lp-footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px 24px 16px;
}

#lp-footer .lp-footer-left {
  display: grid;
  gap: 8px;
  justify-items: start;
}

#lp-footer .lp-footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

#lp-footer .lp-footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--clr-border);
  border-radius: 999px;
  color: var(--clr-text);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

#lp-footer .lp-footer-social__link:hover,
#lp-footer .lp-footer-social__link:focus-visible {
  color: var(--clr-accent-red);
  border-color: var(--clr-accent-red);
}

#lp-footer .lp-footer-social__icon {
  display: block;
  width: 18px;
  height: 18px;
}

#lp-footer .lp-footer-copy,
#lp-footer .lp-footer-tagline {
  margin: 0;
  font-size: calc(14px + var(--lp-font-bump));
  line-height: 1.25;
  color: var(--clr-body);
}

#lp-footer .lp-footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.4vw, 44px);
}

#lp-footer .lp-footer-nav a {
  color: var(--clr-text);
  font-size: calc(14px + var(--lp-font-bump));
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.2s ease;
}

#lp-footer .lp-footer-nav a:hover,
#lp-footer .lp-footer-nav a:focus-visible {
  color: var(--clr-muted);
}

#lp-footer .lp-footer-tagline {
  text-align: right;
  justify-self: end;
}

@media (max-width: 980px) {
  #lp-footer .lp-footer-top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 14px;
    padding: 18px 16px 16px;
  }

  #lp-footer .lp-footer-left {
    justify-items: center;
    gap: 10px;
    order: 1;
  }

  #lp-footer .lp-footer-nav {
    order: 2;
    gap: 22px;
    flex-wrap: wrap;
  }

  #lp-footer .lp-footer-nav a {
    font-size: calc(15px + var(--lp-font-bump));
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 4px 2px;
  }

  #lp-footer .lp-footer-tagline {
    text-align: center;
    justify-self: center;
    order: 3;
    max-width: 32ch;
  }
}

@media (max-width: 640px) {
  #lp-footer .lp-footer-top {
    gap: 12px;
    padding: 16px 12px 14px;
  }

  #lp-footer .lp-footer-social__link {
    width: 34px;
    height: 34px;
  }

  #lp-footer .lp-footer-social__icon {
    width: 16px;
    height: 16px;
  }

  #lp-footer .lp-footer-copy,
  #lp-footer .lp-footer-tagline {
    font-size: calc(13px + var(--lp-font-bump));
  }
}

/* ============================================
   PRODUCTS CAROUSEL — quick-view drawer (global)
   ============================================ */
body.lpc-drawer-open {
  overflow: hidden;
}

#lpc-global-product-drawer.lpc-product-drawer {
  position: fixed;
  inset: 0;
  z-index: 100050;
  display: none;
  pointer-events: none;
}

#lpc-global-product-drawer.lpc-product-drawer.is-open {
  display: block;
  pointer-events: auto;
}

#lpc-global-product-drawer .lpc-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  backdrop-filter: blur(2px);
}

#lpc-global-product-drawer .lpc-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 480px);
  max-width: 100vw;
  height: 100%;
  max-height: 100%;
  background: var(--clr-bg);
  box-shadow: -12px 0 40px var(--color-shadow-neutral);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: var(--lp-font-primary, 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif);
}

#lpc-global-product-drawer .lpc-drawer__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  box-sizing: border-box;
  width: 44px !important;
  min-width: 44px;
  max-width: 44px;
  height: 44px;
  min-height: 44px;
  max-height: 44px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex: 0 0 44px;
  background: var(--color-surface);
  color: var(--clr-text);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: background 0.15s ease, transform 0.15s ease;
}

#lpc-global-product-drawer .lpc-drawer__close svg {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

#lpc-global-product-drawer .lpc-drawer__close:hover {
  background: var(--clr-bg);
  transform: scale(1.05);
}

#lpc-global-product-drawer .lpc-drawer__scroller {
  flex: 1;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
}

#lpc-global-product-drawer .lpc-drawer__inner {
  padding: 24px 24px 32px;
  padding-top: 56px;
}

#lpc-global-product-drawer .lpc-drawer__img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 100%;
  margin: 0 0 20px;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--lp-bg-cream, #faf9f7);
}

#lpc-global-product-drawer .lpc-drawer__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

#lpc-global-product-drawer .lpc-drawer__title {
  font-family: var(--font-display, var(--lp-font-primary));
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--lp-text-primary, #1a1a1a);
  margin: 0 0 10px;
}

#lpc-global-product-drawer .lpc-drawer__price {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--lp-text-primary, #1a1a1a);
}

#lpc-global-product-drawer .lpc-drawer__price del {
  color: var(--lp-text-light, #9a9a9a);
  font-weight: 400;
  margin-right: 0.4em;
}

#lpc-global-product-drawer .lpc-drawer__variations {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

#lpc-global-product-drawer .lpc-drawer__var-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lp-text-primary, #1a1a1a);
  margin-bottom: 10px;
}

#lpc-global-product-drawer .lpc-drawer__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

#lpc-global-product-drawer .lpc-drawer__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  border: 1px solid var(--lp-border-light, #e0e0e0);
  border-radius: 9999px;
  background: #fafafa;
  color: var(--lp-text-primary, #1a1a1a);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

#lpc-global-product-drawer .lpc-drawer__pill:hover {
  background: #fff;
  border-color: #c8c8c8;
}

#lpc-global-product-drawer .lpc-drawer__pill.is-active {
  background: var(--lp-color-primary, #1a1a1a);
  border-color: var(--lp-color-primary, #1a1a1a);
  color: #fff;
}

#lpc-global-product-drawer .lpc-drawer__pill:focus {
  outline: 2px solid rgba(26, 26, 26, 0.35);
  outline-offset: 2px;
}

#lpc-global-product-drawer .lpc-drawer__pill:focus:not(:focus-visible) {
  outline: none;
}

#lpc-global-product-drawer .lpc-drawer__desc-block {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--lp-border-light, #ececec);
}

#lpc-global-product-drawer .lpc-drawer__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--lp-text-muted, #5a5a5a);
}

#lpc-global-product-drawer .lpc-drawer__desc--short {
  margin-bottom: 18px;
}

#lpc-global-product-drawer .lpc-drawer__desc--short:last-child {
  margin-bottom: 0;
}

#lpc-global-product-drawer .lpc-drawer__desc p:first-child {
  margin-top: 0;
}

#lpc-global-product-drawer .lpc-drawer__foot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0;
  margin-bottom: 0;
}

#lpc-global-product-drawer .lpc-drawer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 9999px;
  font-size: calc(15px + var(--lp-font-bump));
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

#lpc-global-product-drawer .lpc-drawer__btn--primary {
  background: var(--lp-color-primary, #1a1a1a);
  color: #fff;
}

#lpc-global-product-drawer .lpc-drawer__btn--primary:hover {
  background: #333;
  color: #fff;
}

#lpc-global-product-drawer .lpc-drawer__link {
  font-size: calc(14px + var(--lp-font-bump));
  text-align: center;
  color: var(--lp-text-muted, #6a6a6a);
  text-decoration: underline;
  text-underline-offset: 3px;
}

#lpc-global-product-drawer .lpc-drawer__link:hover {
  color: #1a1a1a;
}

@media (max-width: 768px) {
  #lpc-global-product-drawer .lpc-drawer__panel {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: min(92vh, 100%);
    max-height: min(92vh, 100%);
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
  }
}

