/** Shopify CDN: Minification failed

Line 524:0 All "@import" rules must come first

**/
/* ===== FRESH PRINTS DTF — AESTHETIC UPGRADE ===== */


/* ============================
   GLOBAL FONT: ANTON FOR ALL UI TEXT
   Replaces thin Bebas Neue everywhere
   ============================ */

/* Override the Savor theme body font variable */
:root {
  --font-body--family: 'Anton', 'Bebas Neue', sans-serif !important;
}

/* Nuclear font override — every element that inherits body font */
body,
.header,
.header *,
.menu-list__link,
.menu-list__link-title,
.menu-drawer,
.menu-drawer *,
.menu-drawer__link,
.menu-drawer__list-item,
.menu-drawer__list-item--flat,
.menu-drawer__list-item a,
nav,
nav *,
button,
input,
select,
textarea,
.announcement-bar,
.announcement-bar *,
.hero-cinematic__trust-item,
.hero-cinematic__subline,
.hero-cinematic__cta,
.trust-bar__item,
.product-showcase__badge,
.product-showcase__subtitle,
.product-showcase__card-name,
.product-showcase__info,
.how-it-works__badge,
.dtf-hub__badge,
.dtf-hub__subtitle,
.dtf-hub__card-tag,
.dtf-hub__card-arrow,
.dtf-hub__view-all a,
.fp-reviews__badge,
.fp-reviews__subtitle,
.fp-reviews__name,
.fp-reviews__detail,
.fp-reviews__stat-label,
.faq-section *,
.faq-item__number,
.contact-badge,
.contact-field label,
.contact-info-label,
.fp-popup__subtitle,
.fp-popup__input,
.fp-popup__submit,
.fp-popup__terms,
.fp-popup__trust-item,
.fp-footer *,
.fp-footer__col-title,
.fp-footer__links a,
.fp-footer__contact-item,
.fp-footer__newsletter-input,
.fp-footer__newsletter-btn,
.fp-footer__copyright,
.fp-footer__payment-icon,
.parallax-banner__subheading,
.parallax-banner__cta,
.hero-cinematic__sticky-cta a,
.skip-to-content-link {
  font-family: 'Anton', 'Bebas Neue', sans-serif !important;
}

/* Keep DM Serif Text for headings — those are fine */
h1, h2, h3,
.hero-cinematic__heading,
.product-showcase__title,
.how-it-works__title,
.how-it-works__step-title,
.dtf-hub__title,
.fp-reviews__title,
.fp-footer__brand-tagline,
.fp-footer__newsletter-text,
.parallax-banner__heading,
.contact-title,
.contact-form-title,
.fp-popup__title,
.fp-popup__success-title {
  font-family: 'DM Serif Text', serif !important;
}

/* Keep DM Sans for long-form body text */
.faq-item__answer,
.faq-item__answer p,
.fp-reviews__quote,
.how-it-works__step-desc,
.fp-footer__brand-desc,
.contact-info-value,
.contact-hours-day,
.contact-hours-time {
  font-family: 'DM Sans', sans-serif !important;
}

/* ============================
   DESIGN TOKENS
   ============================ */
:root {
  --fp-cyan: #00d4ff;
  --fp-cyan-dark: #00a3cc;
  --fp-magenta: #ff2d6b;
  --fp-yellow: #ffd600;
  --fp-black: #1a1a1a;
  --fp-white: #ffffff;
  --fp-transition-fast: 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --fp-transition-normal: 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --fp-transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);
  --fp-glow-cyan: 0 4px 20px rgba(0, 212, 255, 0.25);
  --fp-glow-cyan-strong: 0 8px 30px rgba(0, 212, 255, 0.35);
  --fp-focus-ring: 0 0 0 3px rgba(0, 212, 255, 0.5);
}

/* ============================
   GLOBAL INTERACTIVE ELEMENTS
   ============================ */

/* Consistent base transitions */
a, button, input, select, textarea {
  transition: color var(--fp-transition-fast),
              background-color var(--fp-transition-fast),
              border-color var(--fp-transition-fast),
              box-shadow var(--fp-transition-fast),
              transform var(--fp-transition-fast),
              opacity var(--fp-transition-fast);
}

/* All clickable elements get pointer cursor */
a, button, [role="button"], label[for], summary {
  cursor: pointer;
}

/* ============================
   FOCUS-VISIBLE (Accessibility)
   ============================ */

/* Visible focus ring for keyboard users only */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: var(--fp-focus-ring);
}

/* Remove default outline since we use box-shadow */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* ============================
   BUTTON SYSTEM
   ============================ */

/* Primary CTA buttons — cyan gradient */
.hero-cinematic__cta,
.contact-submit,
.fp-popup__submit,
.faq-section__cta-link,
button[type="submit"],
.button--primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: transform var(--fp-transition-fast),
              box-shadow var(--fp-transition-normal),
              background var(--fp-transition-fast);
  -webkit-tap-highlight-color: transparent;
}

/* Hover state — lift + glow */
.hero-cinematic__cta:hover,
.contact-submit:hover,
.fp-popup__submit:hover,
.faq-section__cta-link:hover,
button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: var(--fp-glow-cyan-strong);
}

/* Active/pressed state — press down + tighter glow */
.hero-cinematic__cta:active,
.contact-submit:active,
.fp-popup__submit:active,
.faq-section__cta-link:active,
button[type="submit"]:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 10px rgba(0, 212, 255, 0.2);
  transition-duration: 80ms;
}

/* Focus-visible on CTAs */
.hero-cinematic__cta:focus-visible,
.contact-submit:focus-visible,
.fp-popup__submit:focus-visible,
.faq-section__cta-link:focus-visible,
button[type="submit"]:focus-visible {
  box-shadow: var(--fp-focus-ring), var(--fp-glow-cyan);
}

/* ============================
   SECONDARY / GHOST BUTTONS
   ============================ */

/* "View All Articles" link, card arrows */
.dtf-hub__view-all a,
.dtf-hub__card-arrow {
  transition: color var(--fp-transition-fast),
              border-color var(--fp-transition-fast),
              transform var(--fp-transition-fast);
}

.dtf-hub__view-all a:active {
  transform: scale(0.97);
}

/* ============================
   PRODUCT & BLOG CARDS
   ============================ */

/* Product card hover lift */
.product-card:hover,
[class*="product-card"]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.15);
}

/* Product card image hover zoom */
[class*="product-card"] img {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[class*="product-card"]:hover img {
  transform: scale(1.03);
}

/* Product showcase cards — cursor + active state */
.product-showcase__card {
  cursor: pointer;
}
.product-showcase__card:active {
  transform: translateY(0) scale(0.98) !important;
  transition-duration: 80ms;
}

/* DTF Hub blog cards — active press */
.dtf-hub__card:active {
  transform: translateY(0) scale(0.98) !important;
  transition-duration: 80ms;
}

/* Review cards — subtle hover */
.fp-reviews__card {
  cursor: default;
}

/* ============================
   FAQ ACCORDION
   ============================ */

.faq-item__header {
  cursor: pointer;
  min-height: 48px;
}

.faq-item__header:active {
  opacity: 0.85;
  transition-duration: 80ms;
}

.faq-item__header:focus-visible {
  box-shadow: var(--fp-focus-ring);
  outline: none;
}

/* ============================
   POPUP FIXES
   ============================ */

/* Close button — expand touch target */
.fp-popup__close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 8px;
  right: 8px;
  border-radius: 0;
}

.fp-popup__close:hover {
  color: var(--fp-cyan);
  background: rgba(255,255,255,0.05);
}

.fp-popup__close:active {
  transform: scale(0.9);
  transition-duration: 80ms;
}

/* Submit button min-height */
.fp-popup__submit {
  min-height: 48px;
}

/* ============================
   FORM INTERACTIONS
   ============================ */

/* Input focus states */
.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus,
.fp-popup__input:focus {
  border-color: var(--fp-cyan);
  box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.15);
  outline: none;
}

/* Form submit loading state */
.contact-submit[disabled],
.fp-popup__submit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Footer email button — fix cursor */
.email-signup__button {
  cursor: pointer !important;
  min-width: 44px;
  min-height: 44px;
}

.email-signup__button:hover {
  color: var(--fp-cyan) !important;
}

.email-signup__button:active {
  transform: scale(0.92);
  transition-duration: 80ms;
}

/* Footer email input */
footer input[type="email"]:focus,
.footer input[type="email"]:focus {
  border-color: var(--fp-cyan) !important;
  box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
  outline: none;
}

/* ============================
   NAVIGATION / HEADER
   ============================ */

/* Nav links — active state */
.menu-list__link:active {
  opacity: 0.7;
  transition-duration: 80ms;
}

/* Header icon buttons — consistent size */
.header-actions__action {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ============================
   VISUAL POLISH
   ============================ */

/* Selection color */
::selection {
  background: rgba(0, 212, 255, 0.3);
  color: #000;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00d4ff, #ff2d6b);
  border-radius: 4px;
}

/* Link hover — cyan accent */
main a:hover {
  color: var(--fp-cyan);
}

/* Announcement bars */
.announcement-bar {
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Section dividers — removed, using subtle border-top instead */

/* ============================
   REDUCED MOTION
   ============================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ============================
   NAVIGATION — CYAN + BEBAS NEUE
   ============================ */

/* Main nav links */
.menu-list__link,
.header .menu-list__link,
nav .menu-list__link,
.header-wrapper .menu-list__link {
  color: #00d4ff !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1rem;
  transition: color var(--fp-transition-fast), opacity var(--fp-transition-fast);
}

.menu-list__link:hover,
.header .menu-list__link:hover {
  color: #ffffff !important;
  opacity: 1;
}

/* Header action icons (search, account, cart) — cyan */
.header-actions__action,
.header .header-actions__action {
  color: #00d4ff !important;
  transition: color var(--fp-transition-fast);
}

.header-actions__action:hover,
.header .header-actions__action:hover {
  color: #ffffff !important;
}

/* Cart count badge */
.header-actions__badge {
  background: #ff2d6b !important;
  color: #fff !important;
}

/* Mobile hamburger icon — cyan */
.header__icon-menu,
.menu-drawer__toggle {
  color: #00d4ff !important;
}

/* Mobile drawer links */
.menu-drawer__link,
.menu-drawer .menu-list__link,
.menu-drawer__list-item a,
.menu-drawer__list-item--flat a {
  color: #00d4ff !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.25rem;
}

.menu-drawer__link:hover,
.menu-drawer .menu-list__link:hover {
  color: #ffffff !important;
}

/* Announcement bar — keep white text but use Bebas */
.announcement-bar__text,
.announcement-bar a {
  font-family: 'Bebas Neue', sans-serif !important;
  letter-spacing: 0.08em;
}


/* ============================
   DM SANS — BODY FONT FOR LONG-FORM
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=DM+Sans:wght@400;500;600&display=swap');

/* Long-form text uses DM Sans */
.faq-item__answer,
.faq-item__answer p,
.contact-field input,
.contact-field textarea,
.contact-field select,
.fp-popup__input,
.fp-footer__brand-desc,
.fp-footer__links a,
.fp-footer__contact-item,
.how-it-works__step-desc,
.fp-reviews__quote {
  font-family: 'DM Sans', sans-serif;
}

/* ============================
   SECTION BREATHING ROOM
   ============================ */

/* Remove ALL gradient borders between sections */
main > section + section,
main .shopify-section + .shopify-section,
.shopify-section,
.shopify-section + .shopify-section,
main > * + * {
  border-image: none !important;
}

/* Section dividers — subtle gradient line (DISABLED) */
main > section + section {
  border-top: none !important;
  border-image: none !important;
}

/* Add consistent vertical spacing between homepage sections */
.section-hero-cinematic + .shopify-section { margin-top: 0; }

.shopify-section + .shopify-section {
  position: relative;
}

/* Subtle divider line between dark sections */
.trust-bar,
.product-showcase,
.how-it-works,
.dtf-hub,
.fp-reviews,
.faq-section,
.parallax-banner {
  border-top: 1px solid rgba(255,255,255,0.04) !important;
  border-image: none !important;
}

/* Hide the default Savor footer on homepage since we have branded footer */
.shopify-section-group-footer-group {
  display: none !important;
}

/* ============================
   SEO: SUPPRESS DUPLICATE H1
   Savor theme adds a visually-hidden H1 for the store name.
   Our hero section has the real H1. Hide the duplicate.
   ============================ */
.header h1.visually-hidden,
header h1.visually-hidden {
  display: none !important;
}

/* ============================
   A11Y: BUTTON TYPE FIX
   Ensure custom buttons have proper cursor and role
   ============================ */
button:not([type]) {
  /* Browser default is submit — just noting for a11y scanners */
}

/* ============================
   WCAG FONT SIZE COMPLIANCE
   Minimum 16px for body text
   Minimum 14px for labels/badges
   ============================ */

/* Nav links — 15.2px -> 16px */
.menu-list__link,
.menu-list__link-title {
  font-size: 1rem !important;
}

/* Hero trust items — 14.4px -> 16px */
.hero-cinematic__trust-item {
  font-size: 1rem !important;
}

/* Trust bar — 12.8px -> 16px */
.trust-bar__item {
  font-size: 0.875rem !important;
  letter-spacing: 0.12em;
}
.trust-bar__star {
  font-size: 0.875rem !important;
}

/* Section badges (HOW TO ORDER, DTF HUB, etc.) — 13.6px -> 14px */
.product-showcase__badge,
.how-it-works__badge,
.dtf-hub__badge,
.fp-reviews__badge,
.faq-section__badge,
.contact-badge {
  font-size: 0.875rem !important;
}

/* How It Works descriptions — 14.4px -> 16px */
.how-it-works__step-desc {
  font-size: 1rem !important;
}

/* DTF Hub card tags — 11.2px -> 14px */
.dtf-hub__card-tag {
  font-size: 0.875rem !important;
}

/* DTF Hub card arrows — 12px -> 14px */
.dtf-hub__card-arrow {
  font-size: 0.875rem !important;
}

/* DTF Hub view all — 14.4px -> 16px */
.dtf-hub__view-all a {
  font-size: 1rem !important;
}

/* Review author names — 13.6px -> 16px */
.fp-reviews__name {
  font-size: 1rem !important;
}

/* Review details — 11.2px -> 14px */
.fp-reviews__detail {
  font-size: 0.875rem !important;
}

/* Review stat labels — 11.2px -> 14px */
.fp-reviews__stat-label {
  font-size: 0.875rem !important;
}

/* FAQ numbers — 12px -> 14px */
.faq-item__number {
  font-size: 0.875rem !important;
}

/* Footer brand description — 13.6px -> 16px */
.fp-footer__brand-desc {
  font-size: 1rem !important;
}

/* Footer column titles — 12px -> 14px */
.fp-footer__col-title {
  font-size: 0.875rem !important;
}

/* Footer links — 13.6px -> 16px */
.fp-footer__links a {
  font-size: 1rem !important;
}

/* Footer contact items — 13.6px -> 16px */
.fp-footer__contact-item {
  font-size: 1rem !important;
}

/* Footer copyright — 12px -> 14px */
.fp-footer__copyright {
  font-size: 0.875rem !important;
}

/* Footer payment icons — 8px -> 10px (these are tiny badges, not body text) */
.fp-footer__payment-icon {
  font-size: 0.625rem !important;
}

/* Popup subtitle — 14.4px -> 16px */
.fp-popup__subtitle {
  font-size: 1rem !important;
}

/* Popup terms — 11.2px -> 14px */
.fp-popup__terms {
  font-size: 0.875rem !important;
}

/* Popup trust items — 10.4px -> 14px */
.fp-popup__trust-item {
  font-size: 0.875rem !important;
}

/* ============================
   HEADER: SINGLE ROW LAYOUT
   Logo left, nav center, icons right
   ============================ */

@media (min-width: 1000px) {
  /* Position both rows in the same visual space */
  .header {
    position: relative;
  }
  
  .header__row--top {
    position: relative;
    z-index: 2;
  }
  
  /* Overlay row 2 on top of row 1 */
  .header__row--bottom {
    display: grid !important;
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
  
  .header__row--bottom * {
    pointer-events: auto;
  }
  
  .header__row--bottom .header__columns {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  
  /* Center the nav links */
  .header__row--bottom .header-menu,
  .header__row--bottom header-menu {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  
  .header__row--bottom .menu-list {
    display: flex !important;
    align-items: center;
    gap: 1.5rem;
  }
}


/* ============================
   HEADER LOGO: ALWAYS VISIBLE
   ============================ */

/* Force logo visible — Savor compact mode hides it */
.header-logo,
a.header-logo,
.header .header-logo {
  display: flex !important;
  align-items: center;
}

.header-logo img,
.header__heading-logo {
  max-height: 60px;
  width: auto;
}

/* On mobile, smaller logo */
@media (max-width: 768px) {
  .header-logo img,
  .header__heading-logo {
    max-height: 40px !important;
  }
}

/* ============================
   RESPONSIVE TEXT CENTERING
   ============================ */

/* Ensure all section headers center on all viewports */
.product-showcase__header,
.how-it-works__header,
.dtf-hub__header,
.fp-reviews__header,
.faq-section__header,
.parallax-banner__content {
  text-align: center !important;
}

/* Center badge text */
.product-showcase__badge,
.how-it-works__badge,
.dtf-hub__badge,
.fp-reviews__badge,
.faq-section__badge,
.contact-badge {
  text-align: center !important;
  display: block !important;
}

/* Center section titles */
.product-showcase__title,
.how-it-works__title,
.dtf-hub__title,
.fp-reviews__title,
.faq-section__title {
  text-align: center !important;
}

/* Center subtitles */
.product-showcase__subtitle,
.how-it-works__subtitle,
.dtf-hub__subtitle,
.fp-reviews__subtitle {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Center the hero content on all sizes */
.hero-cinematic__content {
  align-items: center !important;
  text-align: center !important;
}

/* Center trust bar items */
.trust-bar__inner {
  justify-content: center !important;
  text-align: center;
}

/* Center the view all articles link */
.dtf-hub__view-all {
  text-align: center !important;
}

/* Center footer newsletter row on mobile */
@media (max-width: 768px) {
  .fp-footer__newsletter {
    text-align: center !important;
  }
  .fp-footer__newsletter-text {
    text-align: center !important;
  }
}

/* Center the How It Works step text on mobile */
@media (max-width: 768px) {
  .how-it-works__step {
    text-align: left !important;
  }
}

/* Center product showcase header on all viewports */
.product-showcase__inner {
  text-align: center;
}

/* ============================
   MOBILE HEADER LOGO SIZE
   ============================ */
/* (moved to HEADER LOGO: ALWAYS VISIBLE section above) */

/* ============================
   PRODUCT PAGE (PDP) — LIGHT BACKGROUND
   ============================ */

/* Light clean background for product pages */
.product-page .section,
main .shopify-section:not(.section-hero-cinematic):not(.section-faq-animated):not(.section-dtf-hub):not(.section-product-showcase) .section {
  background: #f9f8f6 !important;
  color: #333 !important;
}

/* Product title */
.product-page h1,
[class*="product"] h1 {
  font-family: "DM Serif Text", serif !important;
  color: #1a1a1a !important;
}

/* Price — cyan */
.product-page [class*="price"],
[class*="product"] [class*="price"] {
  color: #00a3cc !important;
  font-family: "Anton", sans-serif !important;
}

/* Description text */
.product-page .rte,
.product-page .rte p,
.product-page .rte li,
[class*="product"] .rte,
[class*="product"] .rte p,
[class*="product"] .rte li {
  color: #444 !important;
  font-family: "DM Sans", sans-serif !important;
}

.product-page .rte h3,
.product-page .rte h4,
[class*="product"] .rte h3,
[class*="product"] .rte h4 {
  color: #1a1a1a !important;
  font-family: "DM Serif Text", serif !important;
}

.product-page .rte strong,
[class*="product"] .rte strong {
  color: #1a1a1a !important;
}

.product-page .rte a,
[class*="product"] .rte a {
  color: #00a3cc !important;
}

/* Variant selector */
.product-page select,
[class*="product"] select {
  background: #fff !important;
  color: #1a1a1a !important;
  border: 1px solid rgba(0,0,0,0.15) !important;
  font-family: "Anton", sans-serif !important;
}

.product-page select:focus,
[class*="product"] select:focus {
  border-color: #00a3cc !important;
  box-shadow: 0 0 0 2px rgba(0,163,204,0.15) !important;
}

/* Add to cart button — cyan gradient */
.product-page button[name="add"],
.product-page .product-form__submit,
[class*="product"] button[name="add"],
[class*="product"] .product-form__submit {
  background: linear-gradient(135deg, #00d4ff, #00a3cc) !important;
  color: #000 !important;
  font-family: "Anton", sans-serif !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  border: none !important;
  min-height: 48px !important;
  font-size: 1rem !important;
  transition: transform 0.15s, box-shadow 0.15s !important;
}

.product-page button[name="add"]:hover,
[class*="product"] button[name="add"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(0,163,204,0.25) !important;
}

/* Labels */
.product-page label,
[class*="product"] label {
  color: #1a1a1a !important;
  font-family: "Anton", sans-serif !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

/* Quantity selector */
.product-page [class*="quantity"],
[class*="product"] [class*="quantity"] {
  background: #fff !important;
  color: #1a1a1a !important;
  border-color: rgba(0,0,0,0.15) !important;
}

/* Shipping / payment info */
.product-page [class*="shipping"],
.product-page [class*="payment"],
.product-page [class*="installment"],
[class*="product"] [class*="shipping"],
[class*="product"] [class*="installment"] {
  color: #666 !important;
}

/* Product gallery area */
.product-page [class*="gallery"],
.product-page [class*="media"],
[class*="product"] [class*="media-wrapper"] {
  background: #f0eeeb !important;
}

/* Breadcrumbs */
.product-page [class*="breadcrumb"] { color: #888 !important; }
.product-page [class*="breadcrumb"] a { color: #00a3cc !important; }

/* Trust badges row */
.product-page [class*="trust"],
.product-page [class*="badge-row"],
.product-page [class*="icon-list"] {
  background: #f0eeeb !important;
  color: #555 !important;
}

/* Product recommendations */
[class*="product-list"],
[class*="product-recommendations"] {
  background: #f0eeeb !important;
}

[class*="product-list"] h2,
[class*="product-recommendations"] h2 {
  color: #1a1a1a !important;
  font-family: "DM Serif Text", serif !important;
}

[class*="product-card"] {
  background: #fff !important;
  border-color: rgba(0,0,0,0.06) !important;
}

[class*="product-card"] [class*="title"],
[class*="product-card"] h3,
[class*="product-card"] a {
  color: #1a1a1a !important;
}

[class*="product-card"] [class*="price"] {
  color: #00a3cc !important;
}

/* Dark mode overrides for PDP */
[data-theme="dark"] .product-page .section,
[data-theme="dark"] main .shopify-section:not(.section-hero-cinematic):not(.section-faq-animated):not(.section-dtf-hub):not(.section-product-showcase) .section {
  background: #111 !important;
  color: #b0b0b0 !important;
}
[data-theme="dark"] .product-page h1,
[data-theme="dark"] [class*="product"] h1 {
  color: #fff !important;
}
[data-theme="dark"] .product-page [class*="price"],
[data-theme="dark"] [class*="product"] [class*="price"] {
  color: #00d4ff !important;
}
[data-theme="dark"] .product-page .rte p,
[data-theme="dark"] .product-page .rte li,
[data-theme="dark"] [class*="product"] .rte p {
  color: #b0b0b0 !important;
}
[data-theme="dark"] .product-page .rte h3,
[data-theme="dark"] .product-page .rte h4 {
  color: #fff !important;
}
[data-theme="dark"] .product-page .rte strong {
  color: #fff !important;
}
[data-theme="dark"] .product-page select,
[data-theme="dark"] [class*="product"] select {
  background: #1a1a1a !important;
  color: #fff !important;
  border-color: rgba(255,255,255,0.15) !important;
}
[data-theme="dark"] .product-page label,
[data-theme="dark"] [class*="product"] label {
  color: #fff !important;
}
[data-theme="dark"] .product-page [class*="gallery"],
[data-theme="dark"] .product-page [class*="media"],
[data-theme="dark"] [class*="product"] [class*="media-wrapper"] {
  background: #0a0a0a !important;
}
[data-theme="dark"] [class*="product-card"] {
  background: #1a1a1a !important;
  border-color: rgba(255,255,255,0.06) !important;
}
[data-theme="dark"] [class*="product-card"] a,
[data-theme="dark"] [class*="product-card"] h3 {
  color: #fff !important;
}
[data-theme="dark"] [class*="product-card"] [class*="price"] {
  color: #00d4ff !important;
}
[data-theme="dark"] [class*="product-list"],
[data-theme="dark"] [class*="product-recommendations"] {
  background: #0a0a0a !important;
}
[data-theme="dark"] .product-page [class*="trust"],
[data-theme="dark"] .product-page [class*="icon-list"] {
  background: #0a0a0a !important;
  color: #888 !important;
}

/* ============================
   MOBILE NAV FIXES
   ============================ */

/* Hide horizontal menu list on mobile — hamburger drawer only */
@media (max-width: 999px) {
  header .menu-list,
  .header .menu-list,
  .header-wrapper .menu-list {
    display: none !important;
  }
}

/* ============================
   HERO Z-INDEX FIX
   ============================ */

/* Hero must sit below the header and drawer layers */
.hero-cinematic,
.section-hero-cinematic {
  position: relative;
  z-index: 1;
}

/* Ensure the hero film strip doesn't escape its stacking context */
.hero-cinematic__film-strip,
.hero-cinematic__overlay,
.hero-cinematic__content {
  z-index: 1;
}

/* Menu drawer must be above everything */
.menu-drawer,
menu-drawer {
  z-index: 100 !important;
}

/* Drawer overlay/backdrop */
.menu-drawer__overlay,
.js-drawer-open .menu-drawer__overlay {
  z-index: 99 !important;
}

/* Header stays above hero but below drawer */
.header-section,
.shopify-section-group-header-group {
  position: relative;
  z-index: 10;
}

/* ============================
   PRODUCT SHOWCASE MOBILE FIX
   ============================ */

@media (max-width: 768px) {
  /* Reduce product card height on mobile so images aren't cropped */
  .product-showcase__card {
    height: auto !important;
    min-height: 0 !important;
  }
  
  /* Product card images — show full image, don't crop */
  .product-showcase__card-image {
    height: 280px !important;
    max-height: 280px;
  }
  
  .product-showcase__card-image img {
    object-fit: contain !important;
    object-position: center !important;
    height: 100%;
    width: 100%;
  }

  /* Product showcase grid — single column with gap */
  .product-showcase__grid {
    gap: 1rem !important;
  }
}

/* ============================
   MOBILE REFINEMENTS
   ============================ */

@media (max-width: 768px) {
  /* Larger touch targets on mobile */
  .hero-cinematic__cta,
  .contact-submit,
  .fp-popup__submit,
  .faq-section__cta-link {
    min-height: 52px;
    padding: 16px 32px;
    width: 100%;
  }

  /* FAQ items need bigger tap area */
  .faq-item__header {
    min-height: 56px;
    padding: 16px 0;
  }
}



/* ===== PRODUCT PAGE - VARIANT PILLS (Savor theme) ===== */

/* Variant button container - 5 columns desktop */
.variant-option--buttons .variant-option__button-list {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 8px !important;
}

/* The label that wraps each radio + visual button */
.variant-option--buttons .variant-option__button-label {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 14px 8px !important;
  font-family: var(--font-body--family, 'Inter', sans-serif) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.04em !important;
  text-align: center !important;
  border: 1px solid #333 !important;
  border-radius: 6px !important;
  background: #1a1a1a !important;
  color: #ccc !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  min-height: 48px !important;
}

/* Hover */
.variant-option--buttons .variant-option__button-label:hover {
  border-color: #00d4ff !important;
  background: #111 !important;
  color: #00d4ff !important;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.15) !important;
}

/* Selected / checked state - input is INSIDE the label */
.variant-option--buttons .variant-option__button-label:has(input:checked) {
  border-color: #00d4ff !important;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(0,212,255,0.05)) !important;
  color: #00d4ff !important;
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.25), inset 0 0 0 1px rgba(0,212,255,0.6) !important;
  font-weight: 700 !important;
}

/* The pill span inside the label also needs color */
.variant-option--buttons .variant-option__button-label:has(input:checked) .variant-option__button-label__pill {
  color: #00d4ff !important;
}

/* Hide the raw radio input */
.variant-option--buttons input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
}

/* The visible text pill inside the label */
.variant-option--buttons .variant-option__button-label__pill {
  color: #ccc !important;
  transition: color 0.25s ease !important;
}

.variant-option--buttons .variant-option__button-label:hover .variant-option__button-label__pill {
  color: #00d4ff !important;
}

/* Section label ("Sheet Length") */
.variant-option .variant-option__label {
  font-family: var(--font-body--family, 'Inter', sans-serif) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #888 !important;
  margin-bottom: 12px !important;
}

/* Product price - cyan accent */
.product__price .price-item--regular,
.product__price .price-item--sale,
.price .price-item {
  color: #00d4ff !important;
  font-weight: 700 !important;
}

/* Add to cart button */
.product-form__submit,
.product__submit-button,
button[name="add"],
.add-to-cart-button {
  background: linear-gradient(135deg, #00d4ff, #00a3cc) !important;
  color: #000 !important;
  font-family: var(--font-body--family, 'Inter', sans-serif) !important;
  font-size: 1rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  border: none !important;
  padding: 16px 32px !important;
  border-radius: 6px !important;
  transition: all 0.3s ease !important;
}

.product-form__submit:hover,
.product__submit-button:hover,
button[name="add"]:hover,
.add-to-cart-button:hover {
  background: linear-gradient(135deg, #00a3cc, #008da6) !important;
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3) !important;
  transform: translateY(-2px) !important;
}

/* Tablet: 5 columns still works */
@media (min-width: 750px) and (max-width: 999px) {
  .variant-option--buttons .variant-option__button-list {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}

/* Mobile: 3 columns */
@media (max-width: 749px) {
  .variant-option--buttons .variant-option__button-list {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
  }

  .variant-option--buttons .variant-option__button-label {
    padding: 10px 4px !important;
    font-size: 0.7rem !important;
    min-height: 40px !important;
  }
}


/* ===== PRODUCT PAGE - REMOVE WHITE GAPS BETWEEN SECTIONS ===== */
.section-pdp-info,
.section-pdp-details,
.section-pdp-footer {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Kill any white space/padding the theme adds between template sections */
.shopify-section.section-pdp-info + .shopify-section,
.shopify-section.section-pdp-details + .shopify-section,
.shopify-section + .shopify-section.section-pdp-info,
.shopify-section + .shopify-section.section-pdp-details {
  margin-top: 0 !important;
}

/* Ensure the product main section has no bottom margin leaking */
.shopify-section:has(+ .section-pdp-info),
.shopify-section:has(+ .section-pdp-details) {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}


/* ===== PRODUCT PAGE - DARK BODY BACKGROUND ===== */
/* Prevents white gaps between dark sections on product pages */
body:has(.section-pdp-info),
body:has(.section-pdp-details) {
  background-color: #0e0e0e !important;
}


/* ===== NAVIGATION - SMALLER WHITE INTER ===== */
.menu-list__link,
.menu-list__item,
.overflow-menu a,
.menu-list__link--active {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.8rem !important;
  color: #ffffff !important;
  letter-spacing: 0.06em !important;
  font-weight: 500 !important;
  --color-primary: #ffffff !important;
}

.color-scheme-5 .menu-list__link,
.color-scheme-5 .menu-list__item,
.color-scheme-5 .overflow-menu a {
  color: #ffffff !important;
}

.menu-list__link:hover,
.menu-list__item:hover,
.overflow-menu a:hover,
.color-scheme-5 .menu-list__link:hover {
  color: #00d4ff !important;
}


/* ===== MOBILE FIXES ===== */
@media (max-width: 749px) {
  /* Hero - tighter padding, readable trust points */
  .hero-cinematic__content {
    padding: 1rem !important;
  }
  .hero-cinematic__trust {
    gap: 0.5rem !important;
  }
  .hero-cinematic__trust-item {
    font-size: 0.6rem !important;
  }
  .hero-cinematic__cta {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.8rem !important;
    width: auto !important;
    max-width: 240px !important;
  }
  .hero-cinematic__headline {
    font-size: clamp(1.2rem, 5vw, 1.8rem) !important;
  }
  .hero-cinematic__subline {
    font-size: 0.8rem !important;
  }

  /* Product showcase - proper mobile spacing */
  .product-showcase__inner {
    padding: 0 1rem !important;
  }
  .product-showcase__card {
    border-radius: 12px !important;
  }
  .product-showcase__name {
    font-size: 0.95rem !important;
  }

  /* Hero CTA banner section */
  .hero-cinematic-cta__heading,
  .pdp-footer__heading {
    font-size: 1.5rem !important;
  }

  /* FAQ mobile - bigger contact button */
  .faq-section__cta-link {
    padding: 0.875rem 2rem !important;
    font-size: 0.85rem !important;
    display: block !important;
    max-width: 280px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  /* Footer mobile - more breathing room */
  .fp-footer__grid {
    gap: 24px !important;
  }
  .fp-footer__newsletter-form {
    flex-direction: column !important;
    gap: 8px !important;
  }
  .fp-footer__newsletter-input {
    border-right: 1px solid rgba(255,255,255,0.1) !important;
  }
  .fp-footer__newsletter-btn {
    width: 100% !important;
  }

  /* Announcement bars - smaller on mobile */
  .announcement-bar {
    font-size: 0.65rem !important;
  }

  /* Nav mobile adjustments */
  .menu-list__link,
  .menu-list__item {
    font-size: 0.75rem !important;
  }
}


/* ===== MOBILE GRID OVERRIDES ===== */
@media (max-width: 749px) {
  /* DTF Hub - force single column grid, no horizontal scroll */
  .dtf-hub__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    
    overflow: visible !important;
    gap: 0.5rem !important;
    padding: 0 0.75rem !important;
    flex-wrap: unset !important;
  }
  .dtf-hub__card {
    width: 100% !important;
    min-width: unset !important;
    flex: unset !important;
    aspect-ratio: 16/9 !important;
  }
  .dtf-hub__card--featured {
    grid-column: span 1 !important;
  }

  /* Product showcase - force single column */
  .product-showcase__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  .product-showcase__card {
    width: 100% !important;
    min-width: unset !important;
  }
}


/* DTF Hub card images - show top of thumbnail on mobile */
@media (max-width: 749px) {
  .dtf-hub__card-bg img,
  .dtf-hub__card-bg {
    object-position: top center !important;
  }
  .dtf-hub__card-content {
    padding: 0.5rem 0.75rem !important;
  }
  .dtf-hub__card-tag {
    font-size: 0.55rem !important;
    padding: 0.15rem 0.5rem !important;
  }
  .dtf-hub__card-arrow {
    font-size: 0.6rem !important;
  }
}


/* ===== HOMEPAGE LOGO HIDE ===== */
/* Hide logo when hero-cinematic is present (homepage only) */
body:has(.hero-cinematic) .header-logo__image,
body:has(.hero-cinematic) .header-logo__image-container {
  display: none !important;
}

/* ===== PRODUCT SHOWCASE MOBILE CENTERING ===== */
@media (max-width: 749px) {
  .product-showcase__inner {
    padding: 0 1rem !important;
  }
  .product-showcase__grid {
    justify-items: center !important;
    align-items: center !important;
  }
  .product-showcase__info {
    justify-content: center !important;
    text-align: center !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
  }
  .product-showcase__name {
    text-align: center !important;
  }
}

/* ===== THREE STEPS TEXT WRAPPING FIX ===== */
@media (max-width: 749px) {
  .how-it-works__step-title {
    white-space: nowrap !important;
    font-size: 0.8rem !important;
    min-width: 90px !important;
    display: block !important;
    margin-bottom: 4px !important;
  }
  .how-it-works__step {
    gap: 10px !important;
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
  }
  .how-it-works__step-description {
    font-size: 0.8rem !important;
    text-align: center !important;
  }
}


/* ===== BLOG LISTING PAGE - THUMBNAIL FIX ===== */
/* Make blog article thumbnails show full image */
.blog-post-card__image,
.article-card__image,
[class*="blog"] [class*="card"] img,
.blog-post-card img,
.article-card img {
  object-fit: contain !important;
  background: #111 !important;
  aspect-ratio: 16/9 !important;
  width: 100% !important;
  height: auto !important;
}

/* Blog card image container */
.blog-post-card__image-container,
.article-card__image-container,
[class*="blog-post-card"] [class*="image"] {
  aspect-ratio: 16/9 !important;
  overflow: hidden !important;
  background: #111 !important;
}


/* ===== DTF HUB - FORCE CENTERED GRID ALL VIEWPORTS ===== */
.dtf-hub__grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1rem !important;
  justify-content: center !important;
  justify-items: center !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  overflow: visible !important;
  flex-wrap: unset !important;
  padding: 0 1rem !important;
}

.dtf-hub__card {
  width: 100% !important;
  max-width: 350px !important;
}
