/** Shopify CDN: Minification failed

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

**/
/* ============================================================
   BNDT GLOBAL DESIGN SYSTEM
   ============================================================ */

/* Hidden products */
[data-handle="loss-theft-protection"] { display: none !important; }

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.trust-badges__cards {
  height: 24px;
  width: auto;
  object-fit: contain;
}
.trust-badges__small {
  height: 20px;
  width: auto;
  object-fit: contain;
}

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --black: #0c0c0c;
  --white: #ffffff;
  --off: #f7f6f4;
  --light: #f0eeeb;
  --border: #e4e2de;
  --muted: #888480;
  --gold: #d4a843;
  --gold-bg: #fdf8ec;
  --green: #1e6641;
  --red: #c0392b;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --nav-height: 52px;
  --announce-height: 36px;
  --sweep-height: 44px;
}

/* --- Global Resets --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overscroll-behavior-x: none;
}

html {
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --- Announce Bar --- */
.announce-bar {
  width: 100%;
  height: var(--announce-height);
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  position: relative;
  z-index: 1000;
}

.announce-bar__track {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

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

.announce-bar__item {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0 24px;
  flex-shrink: 0;
}

.announce-bar__item--sweep {
  color: #e8c878;
}

.announce-bar__separator {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--muted);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Mobile Slot Machine Announce Bar --- */
@media (max-width: 768px) {
  .announce-bar {
    height: var(--announce-height);
    overflow: hidden;
  }

  /* Hide the marquee track on mobile */
  .announce-bar__track {
    display: none;
  }

  /* Show the slot rotator */
  .announce-bar__slot {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
  }

  .announce-bar__slot-item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.03em;
    white-space: nowrap;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  }

  .announce-bar__slot-item.is-active {
    transform: translateY(0);
    opacity: 1;
  }

  .announce-bar__slot-item.is-exiting {
    transform: translateY(-100%);
    opacity: 0;
  }

  .announce-bar__slot-item--sweep {
    color: #e8c878;
  }
}

/* Hide slot on desktop */
@media (min-width: 769px) {
  .announce-bar__slot {
    display: none;
  }
}

/* --- Global Nav --- */
.section-header {
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-nav {
  width: 100%;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 20px;
}

.site-nav__left {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: start;
}

.site-nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
}

.site-nav__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-nav__hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-nav__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.site-nav__hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.site-nav__logo img {
  height: 42px;
  width: auto;
}

.site-nav__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-nav__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--black);
}

.site-nav__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.site-nav__cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  line-height: 1;
  box-sizing: border-box;
}

/* Mobile Nav Drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 75%;
  max-width: 320px;
  height: 100vh;
  background: var(--white);
  z-index: 998;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 80px 24px 24px;
  overflow-y: auto;
  box-shadow: 4px 0 24px rgba(0,0,0,0.1);
}

.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-drawer__link {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--black);
}

.nav-drawer__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-drawer__overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* --- Sweep Banner --- */
.sweep-banner {
  width: 100%;
  height: var(--sweep-height);
  background: var(--off);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
}

.sweep-banner__dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.sweep-banner__text {
  color: var(--black);
}

.sweep-banner__text strong {
  font-weight: 700;
}

.sweep-banner__countdown {
  display: flex;
  gap: 6px;
}

.sweep-banner__cd-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  min-width: 36px;
  text-align: center;
}

.sweep-banner__cd-box span {
  font-size: 9px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
}

/* --- Footer --- */
.site-footer {
  background: var(--off);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.site-footer__nav-group h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  color: var(--black);
}

.site-footer__nav-group a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  padding: 4px 0;
  transition: color 0.2s;
}

.site-footer__nav-group a:hover {
  color: var(--black);
}

.site-footer__bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

.site-footer__social {
  display: flex;
  gap: 16px;
}

.site-footer__social a {
  color: var(--muted);
  transition: color 0.2s;
}

.site-footer__social a:hover {
  color: var(--black);
}

/* --- Buttons --- */
.btn-primary {
  display: block;
  width: 100%;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 24px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, transform 0.1s ease;
  line-height: 1.2;
}

.btn-primary:hover {
  background: #1a1a1a;
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  display: block;
  width: 100%;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 24px;
  border: 2px solid var(--black);
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1.2;
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
}

.btn-gold {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, #e8c878 50%, var(--gold) 100%);
  background-size: 200% 200%;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 24px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  animation: shimmer 3s ease-in-out infinite;
  line-height: 1.2;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-gold:hover {
  filter: brightness(1.05);
}

/* Inline button variants */
.btn-primary--inline,
.btn-secondary--inline {
  display: inline-block;
  width: auto;
}

/* --- Utility Classes --- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.thin-rule {
  width: 100%;
  height: 1px;
  background: var(--border);
  border: none;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* --- Social Proof Toast --- */
.social-proof {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 1100;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 14px 16px;
  max-width: 320px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

.social-proof__inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.social-proof__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--off);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-proof__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
}

.social-proof__text {
  flex: 1;
  min-width: 0;
}

.social-proof__headline {
  font-size: 13px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.3;
  margin: 0;
}

.social-proof__headline strong {
  font-weight: 600;
}

.social-proof__product {
  font-size: 13px;
  color: var(--black);
  line-height: 1.3;
  margin: 2px 0 0;
}

.social-proof__product strong {
  font-weight: 600;
  color: var(--green);
}

.social-proof__time {
  font-size: 11px;
  color: var(--muted);
  margin: 4px 0 0;
}

.social-proof__close {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--muted);
  line-height: 1;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}

.social-proof__close:hover {
  color: var(--black);
}

/* --- Exit Intent Popup --- */
.exit-popup__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.exit-popup__overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.exit-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 2001;
  width: 90%;
  max-width: 440px;
  background: var(--black);
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: 16px;
  padding: 36px 32px 28px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.exit-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.exit-popup__close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  color: rgba(255,255,255,0.4);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}

.exit-popup__close:hover {
  color: var(--white);
}

.exit-popup__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: #e8c878;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.exit-popup__headline {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}

.exit-popup__gold {
  color: #e8c878;
}

.exit-popup__sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 22px;
}

.exit-popup__sub strong {
  color: var(--white);
  font-weight: 600;
}

.exit-popup__cta {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #d4a843 0%, #e8c878 50%, #d4a843 100%);
  background-size: 200% 200%;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 24px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  animation: shimmer 3s ease-in-out infinite;
  transition: filter 0.2s;
}

.exit-popup__cta:hover {
  filter: brightness(1.08);
}

.exit-popup__fine {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 14px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .exit-popup {
    padding: 28px 20px 22px;
    border-radius: 12px;
  }
  .exit-popup__headline {
    font-size: 24px;
  }
  .exit-popup__sub {
    font-size: 14px;
  }
  .exit-popup__cta {
    font-size: 16px;
    padding: 12px 20px;
  }
}

/* --- 5x Entry Banner --- */
.five-x-banner {
  width: 100%;
  background: linear-gradient(135deg, #d4a843 0%, #e8c878 50%, #d4a843 100%);
  background-size: 200% 200%;
  animation: shimmer 3s ease-in-out infinite;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  z-index: 1000;
}

.five-x-banner__icon {
  font-size: 16px;
  flex-shrink: 0;
}

.five-x-banner strong {
  font-weight: 800;
  letter-spacing: 0.04em;
}

.five-x-banner__timer {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  background: rgba(0,0,0,0.12);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 4px;
}

@media (max-width: 768px) {
  .five-x-banner {
    font-size: 11px;
    padding: 8px 12px;
    gap: 6px;
    flex-wrap: wrap;
  }
}

/* --- 5x Active Entry Badge Overrides --- */
.five-x-active .coll__card-entries,
.five-x-active .home-featured__card-entry {
  background: linear-gradient(135deg, #d4a843 0%, #e8c878 50%, #d4a843 100%) !important;
  color: #0c0c0c !important;
  font-weight: 700 !important;
  border-color: rgba(212,168,67,0.4) !important;
}

.five-x-active .coll__card-entries-icon,
.five-x-active .entry-badge-icon {
  filter: grayscale(1) brightness(0.3);
}

.five-x-active .coll__entries-nudge {
  background: linear-gradient(135deg, #d4a843 0%, #e8c878 50%, #d4a843 100%);
  color: #0c0c0c;
  border-color: rgba(212,168,67,0.4);
}

.five-x-active .pdp__entries,
.five-x-active .pdp__sticky-entries-wrap {
  background: linear-gradient(135deg, rgba(212,168,67,0.15) 0%, rgba(232,200,120,0.15) 100%) !important;
  border-color: rgba(212,168,67,0.4) !important;
}

.five-x-active .cart-page__entries {
  background: linear-gradient(135deg, rgba(212,168,67,0.12) 0%, rgba(232,200,120,0.12) 100%) !important;
  border-left-color: #d4a843 !important;
}

.five-x-active .cart-page__summary-row--entries {
  color: #d4a843 !important;
}

/* --- Sweep Geo-Block (NY, FL, RI) --- */
.sweep-geo-blocked .sweep-banner,
.sweep-geo-blocked .pdp__sweep-interlude,
.sweep-geo-blocked .pdp__entries,
.sweep-geo-blocked .coll__sweep-interlude,
.sweep-geo-blocked .sweep-capture,
.sweep-geo-blocked .announce-bar__item--sweep {
  display: none !important;
}

/* --- Mobile Responsive (768px) --- */
@media (max-width: 768px) {
  :root {
    --nav-height: 48px;
    --announce-height: 32px;
    --sweep-height: 40px;
  }

  .site-nav__logo {
    font-size: 20px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

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

  .sweep-banner {
    font-size: 11px;
    gap: 8px;
    padding: 0 10px;
  }

  .sweep-banner__cd-box {
    padding: 2px 5px;
    font-size: 12px;
    min-width: 28px;
  }

  .announce-bar__item {
    font-size: 11px;
    padding: 0 16px;
  }
}
