/** Shopify CDN: Minification failed

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

**/
/* ============================================================
   STICK THE WORLD — Custom styles for Shopify Horizon theme
   File: assets/sticktheworld.css
   How to use: paste this file content into Horizon's
   assets/sticktheworld.css via the code editor,
   then reference it in layout/theme.liquid
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  --stw-bg:      #0C0F0A;
  --stw-bg2:     #111410;
  --stw-bg3:     #161A12;
  --stw-bg4:     #1C2018;
  --stw-lime:    #B8F000;
  --stw-lime-dk: #8AB800;
  --stw-white:   #F2F5E8;
  --stw-grey:    #2E332A;
  --stw-mid:     #6B7260;
  --stw-red:     #E63B2E;
  --stw-amber:   #F0A500;
  --stw-border:  rgba(242,245,232,0.07);
}

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=DM+Mono:wght@300;400;500&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ── GLOBAL RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  background: var(--stw-bg) !important;
  color: var(--stw-white) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 300;
  overflow-x: hidden;
}

/* Subtle grid overlay on entire page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,240,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,240,0,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── CUSTOM CURSOR ── */
.stw-cursor {
  width: 10px;
  height: 10px;
  background: var(--stw-lime);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.18s, height 0.18s;
  mix-blend-mode: difference;
}

/* ══════════════════════════════════════
   ANNOUNCEMENT BAR / TICKER
══════════════════════════════════════ */
.stw-ticker {
  background: var(--stw-lime);
  color: var(--stw-bg);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
  z-index: 50;
}

.stw-ticker__inner {
  display: inline-flex;
  animation: stw-tick 50s linear infinite;
}

.stw-ticker__item {
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.stw-ticker__dot {
  width: 4px;
  height: 4px;
  background: var(--stw-bg);
  border-radius: 50%;
  opacity: 0.35;
  flex-shrink: 0;
}

@keyframes stw-tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Override Horizon's default announcement bar if present */
.announcement-bar {
  display: none !important;
}

/* ══════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════ */
.header,
.site-header,
header[role="banner"],
.shopify-section-header-sticky .header {
  background: rgba(12, 15, 10, 0.94) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(184, 240, 0, 0.08) !important;
  box-shadow: none !important;
}

/* Logo */
.header__heading-link,
.header__heading,
.site-header__logo {
  font-family: 'Dela Gothic One', sans-serif !important;
  font-size: 20px !important;
  letter-spacing: -0.01em !important;
  color: var(--stw-white) !important;
  text-decoration: none !important;
}

/* Nav links */
.header__menu-item,
.header__menu-item a,
.site-nav__link {
  font-family: 'DM Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #F2F5E8 !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
  opacity: 1 !important;
}

.header__menu-item:hover a,
.header__menu-item a:hover,
.site-nav__link:hover {
  color: var(--stw-lime) !important;
}

/* Cart button in nav */
.header__icon--cart,
.cart-count-bubble,
.site-header__cart {
  background: var(--stw-lime) !important;
  color: var(--stw-bg) !important;
  border-radius: 2px !important;
  font-family: 'DM Mono', monospace !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 8px 16px !important;
}

.header__icon--cart svg path,
.header__icon--cart svg {
  fill: var(--stw-bg) !important;
  color: var(--stw-bg) !important;
}

/* Search icon */
.header__icon--search svg path {
  stroke: var(--stw-mid) !important;
}
.header__icon--search:hover svg path {
  stroke: var(--stw-lime) !important;
}

/* ══════════════════════════════════════
   STW HERO SECTION
══════════════════════════════════════ */
.stw-hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
  background: var(--stw-bg);
}

.stw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,240,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,240,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.stw-hero__left {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  border-right: 1px solid var(--stw-border);
}

.stw-hero__eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stw-lime);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.stw-hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--stw-lime);
}

.stw-hero__headline {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: clamp(64px, 9vw, 130px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}

.stw-hero__line-1 { color: var(--stw-white); display: block; }
.stw-hero__line-2 { color: var(--stw-lime); display: block; }
.stw-hero__line-3 {
  color: rgba(242,245,232,0.12);
  display: block;
  -webkit-text-stroke: 1px rgba(184,240,0,0.25);
}

.stw-hero__sub {
  font-size: 15px;
  color: var(--stw-mid);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 44px;
  letter-spacing: 0.01em;
}

.stw-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.stw-hero__stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--stw-border);
}

.stw-stat__num {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 28px;
  color: var(--stw-white);
  line-height: 1;
}

.stw-stat__lbl {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stw-mid);
  margin-top: 4px;
}

/* Hero right — orbit visual */
.stw-hero__right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
}

.stw-hero__right::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184,240,0,0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

/* Orbit */
.stw-orbit {
  position: relative;
  width: 380px;
  height: 380px;
}

.stw-orbit__ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(184,240,0,0.1);
  transform: translate(-50%, -50%);
}

.stw-orbit__ring--1 {
  width: 200px; height: 200px;
  animation: stw-spin 18s linear infinite;
}

.stw-orbit__ring--2 {
  width: 300px; height: 300px;
  animation: stw-spin 28s linear infinite reverse;
  border-style: dashed;
  border-color: rgba(184,240,0,0.06);
}

.stw-orbit__ring--3 {
  width: 380px; height: 380px;
  border-color: rgba(184,240,0,0.04);
}

@keyframes stw-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.stw-orbit__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--stw-lime);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Dela Gothic One', sans-serif;
  color: var(--stw-bg);
  z-index: 5;
  animation: stw-pulse 3s ease-in-out infinite;
  box-shadow: 0 0 60px rgba(184,240,0,0.35), 0 0 120px rgba(184,240,0,0.1);
}

.stw-orbit__center .globe { font-size: 38px; }
.stw-orbit__center .label { font-size: 10px; letter-spacing: 0.08em; margin-top: 3px; }

@keyframes stw-pulse {
  0%, 100% { box-shadow: 0 0 60px rgba(184,240,0,0.35), 0 0 120px rgba(184,240,0,0.1); }
  50%       { box-shadow: 0 0 80px rgba(184,240,0,0.55), 0 0 160px rgba(184,240,0,0.18); }
}

/* Floating sticker circles */
.stw-float {
  position: absolute;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Dela Gothic One', sans-serif;
  z-index: 4;
  cursor: pointer;
  transition: transform 0.3s;
}
.stw-float:hover { transform: scale(1.12) !important; }

.stw-float--tokyo {
  width: 80px; height: 80px;
  background: var(--stw-red);
  color: white;
  top: 18px; right: 55px;
  animation: stw-floatA 4s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(230,59,46,0.4);
}
.stw-float--paris {
  width: 72px; height: 72px;
  background: var(--stw-amber);
  color: var(--stw-bg);
  bottom: 75px; right: 35px;
  animation: stw-floatB 5s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(240,165,0,0.35);
}
.stw-float--nyc {
  width: 68px; height: 68px;
  background: var(--stw-bg3);
  border: 1.5px solid rgba(184,240,0,0.3);
  color: var(--stw-lime);
  top: 80px; left: 38px;
  animation: stw-floatC 4.5s ease-in-out infinite;
}
.stw-float--car {
  width: 76px; height: 76px;
  background: white;
  color: var(--stw-bg);
  bottom: 55px; left: 55px;
  animation: stw-floatA 5.5s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

.stw-float__emoji { font-size: 22px; line-height: 1; margin-bottom: 2px; }
.stw-float__name  { font-size: 10px; letter-spacing: 0.04em; line-height: 1; }
.stw-float__sub   {
  font-family: 'DM Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-top: 1px;
}

@keyframes stw-floatA {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(-12px) rotate(2deg); }
}
@keyframes stw-floatB {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50%       { transform: translateY(-16px) rotate(-2deg); }
}
@keyframes stw-floatC {
  0%, 100% { transform: translateY(-6px) rotate(2deg); }
  50%       { transform: translateY(8px) rotate(-3deg); }
}

/* ══════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════ */
.stw-marquee {
  border-top: 1px solid var(--stw-grey);
  border-bottom: 1px solid var(--stw-grey);
  background: var(--stw-bg2);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.stw-marquee__inner {
  display: inline-flex;
  animation: stw-marquee 33s linear infinite;
}

.stw-marquee__item {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: clamp(26px, 3.5vw, 44px);
  color: rgba(242,245,232,0.06);
  padding: 0 36px;
  -webkit-text-stroke: 1px rgba(184,240,0,0.14);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.stw-marquee__item--lit {
  color: var(--stw-lime);
  -webkit-text-stroke: 0;
}

@keyframes stw-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   BUTTONS — override Horizon defaults
══════════════════════════════════════ */
.btn,
.button,
.shopify-payment-button__button,
button[type="submit"]:not(.search__button),
.product-form__submit {
  border-radius: 2px !important;
  font-family: 'DM Mono', monospace !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  transition: background 0.2s, transform 0.15s, border-color 0.2s !important;
}

/* Primary / solid button */
.button--primary,
.btn--primary,
.product-form__submit {
  background: var(--stw-lime) !important;
  color: var(--stw-bg) !important;
  border: none !important;
}
.button--primary:hover,
.btn--primary:hover,
.product-form__submit:hover {
  background: #CDF520 !important;
  transform: translateY(-1px) !important;
}

/* Secondary / ghost button */
.button--secondary,
.btn--secondary {
  background: transparent !important;
  color: var(--stw-white) !important;
  border: 1px solid rgba(242,245,232,0.18) !important;
}
.button--secondary:hover,
.btn--secondary:hover {
  border-color: var(--stw-lime) !important;
  color: var(--stw-lime) !important;
}

/* ══════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════ */
.card-wrapper,
.product-card,
.card {
  background: var(--stw-bg3) !important;
  border: 1px solid var(--stw-border) !important;
  border-radius: 4px !important;
  transition: border-color 0.3s !important;
  overflow: hidden !important;
}

.card-wrapper:hover,
.product-card:hover,
.card:hover {
  border-color: rgba(184,240,0,0.25) !important;
}

/* Card image area */
.card__media,
.card-media {
  background: var(--stw-bg2) !important;
}

/* Card title */
.card__heading,
.card__heading a,
.card-information__text {
  font-family: 'Dela Gothic One', sans-serif !important;
  font-size: 15px !important;
  letter-spacing: 0.02em !important;
  color: var(--stw-white) !important;
}

/* Price */
.price,
.price__regular,
.price-item,
.price-item--regular {
  font-family: 'Dela Gothic One', sans-serif !important;
  font-size: 36px !important;
  color: #B8F000 !important;
  line-height: 1 !important;
  letter-spacing: 0.06em !important;
}

/* Compare price */
.price__sale,
.price-item--sale {
  color: var(--stw-lime) !important;
}

/* Badge / tag */
.badge,
.card__badge {
  background: var(--stw-lime) !important;
  color: var(--stw-bg) !important;
  font-family: 'DM Mono', monospace !important;
  font-size: 9px !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border-radius: 2px !important;
}

/* ══════════════════════════════════════
   SECTION HEADINGS
══════════════════════════════════════ */
.section-header__title {
  font-family: 'Dela Gothic One', sans-serif !important;
  letter-spacing: -0.01em !important;
  color: var(--stw-white) !important;
}
h1 {
  font-family: 'Dela Gothic One', sans-serif !important;
  font-size: clamp(32px, 4vw, 56px) !important;
  line-height: 1.0 !important;
  letter-spacing: -0.01em !important;
  text-transform: uppercase !important;
}
h2 {
  font-family: 'Dela Gothic One', sans-serif !important;
  font-size: clamp(24px, 3vw, 40px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.01em !important;
  text-transform: uppercase !important;
}
h3 {
  font-family: 'Dela Gothic One', sans-serif !important;
  font-size: clamp(18px, 2vw, 28px) !important;
  line-height: 1.1 !important;
  letter-spacing: 0em !important;
  text-transform: uppercase !important;
}

/* Section eyebrow labels */
.section-header__subheading,
.subheading {
  font-family: 'DM Mono', monospace !important;
  font-size: 10px !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: var(--stw-lime) !important;
}

/* Section links */
.link,
a {
  color: var(--stw-white);
  transition: color 0.2s;
}
a:hover { color: var(--stw-lime); }

.stw-prod__breadcrumb {
  color: #F2F5E8 !important;
  opacity: 1 !important;
}
.stw-prod__bc-current,
.stw-prod__breadcrumb span:last-child,
nav[aria-label="breadcrumbs"] span:last-child {
  color: #F2F5E8 !important;
  opacity: 1 !important;
}

/* ══════════════════════════════════════
   COLLECTION CARDS
══════════════════════════════════════ */
.collection-card,
.collection-list__item {
  background: var(--stw-bg3) !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  transition: transform 0.3s !important;
}
.collection-card:hover,
.collection-list__item:hover {
  transform: scale(1.01) !important;
}

.collection-card__title {
  font-family: 'Dela Gothic One', sans-serif !important;
  font-size: 20px !important;
  letter-spacing: 0.04em !important;
  color: var(--stw-white) !important;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer,
.site-footer {
  background: var(--stw-bg2) !important;
  border-top: 1px solid var(--stw-border) !important;
  color: var(--stw-mid) !important;
}

.footer__heading,
.footer-block__heading {
  font-family: 'DM Mono', monospace !important;
  font-size: 10px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--stw-white) !important;
}

.footer a {
  color: var(--stw-mid) !important;
  font-size: 13px !important;
  transition: color 0.2s !important;
}
.footer a:hover { color: var(--stw-lime) !important; }

/* ══════════════════════════════════════
   INPUTS / FORMS
══════════════════════════════════════ */
input[type="text"],
input[type="email"],
input[type="search"],
textarea,
select {
  background: var(--stw-bg3) !important;
  border: 1px solid var(--stw-border) !important;
  border-radius: 3px !important;
  color: var(--stw-white) !important;
  font-family: 'DM Mono', monospace !important;
  font-size: 12px !important;
}

input:focus, textarea:focus, select:focus {
  border-color: rgba(184,240,0,0.4) !important;
  outline: none !important;
}

input::placeholder { color: var(--stw-mid) !important; }

/* ══════════════════════════════════════
   CART DRAWER
══════════════════════════════════════ */
.cart-drawer,
#CartDrawer {
  background: var(--stw-bg2) !important;
  border-left: 1px solid var(--stw-border) !important;
  color: var(--stw-white) !important;
}

.cart-drawer__header {
  border-bottom: 1px solid var(--stw-border) !important;
  font-family: 'Dela Gothic One', sans-serif !important;
  font-size: 20px !important;
  color: var(--stw-white) !important;
}

/* -- Item count badge (lime pill) ----------------------------------- */
.cart-title .cart-bubble {
  background-color: transparent !important;
  width: auto !important;
  height: auto !important;
  min-width: 22px !important;
  min-height: 22px !important;
  aspect-ratio: auto !important;
  border-radius: 100px !important;
  padding: 3px 8px !important;
}
.cart-title .cart-bubble__background {
  background-color: #B8F000 !important;
  border-radius: 100px !important;
}
.cart-title .cart-bubble__text {
  color: #0C0F0A !important;
  font-family: 'DM Mono', monospace !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  line-height: 1 !important;
}
.cart-title .cart-bubble__text-count {
  color: #0C0F0A !important;
}

/* -- Line item layout: 2-col grid, price absolute top-right --------- */
.cart-drawer .cart-items__table-row,
.cart-drawer .cart-items__table-row--full-width-variants {
  position: relative !important;
  grid-template-columns: clamp(2.5rem, 15cqi, 7.5rem) minmax(0, 1fr) !important;
  grid-template-rows: min-content min-content min-content !important;
  grid-template-areas: 'media details' 'media quantity' 'media error' !important;
}
/* Undo display:contents so the details cell is a normal block column */
.cart-drawer .cart-items__table-row--full-width-variants .cart-items__details {
  display: block !important;
  grid-area: details !important;
}
/* Lift the price out of the grid flow; pin it top-right of the row */
.cart-drawer .cart-items__price {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  text-align: right !important;
}
/* Title: lime, full width with right-padding so it clears the price */
.cart-drawer .cart-items__title {
  color: #B8F000 !important;
  padding-right: 4.5rem !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}
/* Quantity row: right-aligned below info */
.cart-drawer .cart-items__quantity {
  grid-area: quantity !important;
  justify-content: flex-end !important;
  width: 100% !important;
}
.cart-drawer .cart-items__quantity-controls {
  justify-content: flex-end !important;
}
/* Unit price under variant: hidden (line total on the right is the price) */
.cart-drawer .cart-items__unit-price-wrapper {
  display: none !important;
}
/* Line total: DM Mono weight 500, slightly larger, off-white */
.cart-drawer .cart-items__price {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #F2F5E8 !important;
  letter-spacing: 0.03em !important;
}

/* ══════════════════════════════════════
   PRODUCT PAGE
══════════════════════════════════════ */
.product__title {
  font-family: 'Dela Gothic One', sans-serif !important;
  font-size: clamp(24px, 2.8vw, 34px) !important;
  line-height: 1.05 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #F2F5E8 !important;
  margin-bottom: 18px !important;
}

.product__vendor {
  font-family: 'DM Mono', monospace !important;
  font-size: 10px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--stw-lime) !important;
}

.product__description {
  color: var(--stw-mid) !important;
  line-height: 1.8 !important;
}

/* Variant buttons */
.variant-button,
.swatch,
.color-swatch {
  border: 1.5px solid var(--stw-border) !important;
  border-radius: 3px !important;
  background: var(--stw-bg3) !important;
  color: var(--stw-white) !important;
  font-family: 'DM Mono', monospace !important;
  font-size: 11px !important;
  transition: border-color 0.2s !important;
}

.variant-button--active,
.variant-button:hover,
.swatch--active {
  border-color: var(--stw-lime) !important;
  color: var(--stw-lime) !important;
}

/* ══════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════ */
.stw-prod__breadcrumb,
nav[aria-label="breadcrumbs"],
.breadcrumb,
.stw-col__breadcrumb {
  font-family: 'DM Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #F2F5E8 !important;
  padding: 14px 48px !important;
  border-bottom: 1px solid rgba(242,245,232,0.07) !important;
  border-left: 2px solid #B8F000 !important;
  background: rgba(12,15,10,0.8) !important;
}

.stw-prod__breadcrumb a,
nav[aria-label="breadcrumbs"] a,
.breadcrumb a,
.stw-col__breadcrumb a {
  color: #B8F000 !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}

.stw-prod__breadcrumb a:hover,
nav[aria-label="breadcrumbs"] a:hover,
.breadcrumb a:hover,
.stw-col__breadcrumb a:hover {
  color: #F2F5E8 !important;
}

.stw-prod__breadcrumb span,
nav[aria-label="breadcrumbs"] span,
.breadcrumb span,
.stw-col__breadcrumb span {
  color: #2E332A !important;
  margin: 0 6px !important;
}

.stw-prod__bc-current,
.bc-cur {
  color: #F2F5E8 !important;
}

/* ══════════════════════════════════════
   PAGINATION
══════════════════════════════════════ */
.pagination__item {
  background: var(--stw-bg3) !important;
  border: 1px solid var(--stw-border) !important;
  color: var(--stw-white) !important;
  border-radius: 2px !important;
}

.pagination__item--current,
.pagination__item:hover {
  border-color: var(--stw-lime) !important;
  color: var(--stw-lime) !important;
}

/* ══════════════════════════════════════
   MOBILE RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 768px) {
  .stw-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .stw-hero__right { display: none; }
  .stw-hero__left  { padding: 60px 24px; }
  .stw-hero__headline { font-size: clamp(52px, 14vw, 80px); }
  .stw-hero__stats { gap: 24px; flex-wrap: wrap; }
  .stw-marquee { display: none; }
  .stw-ticker__item { padding: 0 20px; }
}

@media (max-width: 480px) {
  .stw-hero__left { padding: 40px 20px; }
  .stw-hero__ctas { flex-direction: column; }
  .stw-hero__ctas .button { width: 100%; text-align: center; }
}

/* ══════════════════════════════════════
   ENTRANCE ANIMATIONS
══════════════════════════════════════ */
@keyframes stw-fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.stw-hero__eyebrow  { animation: stw-fadeUp 0.6s ease 0.1s both; }
.stw-hero__headline { animation: stw-fadeUp 0.6s ease 0.2s both; }
.stw-hero__sub      { animation: stw-fadeUp 0.6s ease 0.32s both; }
.stw-hero__ctas     { animation: stw-fadeUp 0.6s ease 0.42s both; }
.stw-hero__stats    { animation: stw-fadeUp 0.6s ease 0.52s both; }
.stw-orbit          { animation: stw-fadeUp 0.8s ease 0.28s both; }

/* ── NAV OVERRIDE — force dark header ── */
.header-wrapper,
.header-wrapper > *,
.section-header,
x-header,
x-header > *,
[data-section-type="header"],
shopify-section#shopify-section-header,
#shopify-section-header,
#shopify-section-header > *,
.header {
  background: rgba(12, 15, 10, 0.95) !important;
  background-color: rgba(12, 15, 10, 0.95) !important;
  border-bottom: 1px solid rgba(184, 240, 0, 0.08) !important;
  backdrop-filter: blur(20px) !important;
}

/* Nav logo text */
.header__heading a,
.header__heading-link,
.header .h2 {
  color: #F2F5E8 !important;
  font-family: 'Dela Gothic One', sans-serif !important;
}

/* Nav menu links */
.header__menu-item a,
.header__menu-item button,
.list-menu__item,
.header__menu-item a:link,
.header__menu-item a:visited {
  color: #F2F5E8 !important;
  font-family: 'DM Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  opacity: 1 !important;
}
.header__menu-item a:hover,
.list-menu__item:hover {
  color: #B8F000 !important;
}

/* Icons (search, account) */
.header__icon svg,
.header__icon path {
  fill: #6B7260 !important;
  stroke: #6B7260 !important;
}
.header__icon:hover svg,
.header__icon:hover path {
  fill: #B8F000 !important;
  stroke: #B8F000 !important;
}

/* Cart button */
.header__icon--cart {
  background: #B8F000 !important;
  border-radius: 2px !important;
  padding: 6px 14px !important;
}
.header__icon--cart svg,
.header__icon--cart path {
  fill: #0C0F0A !important;
  stroke: #0C0F0A !important;
}

/* ── CART BUTTON FIX ── */

#header-component .header-actions__action:has(cart-icon) {
  background: #B8F000 !important;
  border-radius: 2px !important;
  padding: 6px 12px !important;
}

#header-component .header-actions__action:has(cart-icon) svg path,
#header-component .header-actions__action:has(cart-icon) svg line,
#header-component .header-actions__action:has(cart-icon) svg rect,
#header-component .header-actions__action:has(cart-icon) svg circle {
  stroke: #0C0F0A !important;
  fill: none !important;
}

#header-component .header-actions__action:not(:has(cart-icon)) {
  background: transparent !important;
  color: #6B7260 !important;
}

/* ── GLOBAL TITLE STYLE — uppercase Dela Gothic One with spaces ── */
h1, h2, h3,
.stw-hero__headline,
.stw-related__title,
.stw-revs__title,
.stw-catgrid__title,
.stw-map__title,
.stw-cta__title,
.stw-products__title,
.card__heading,
.card__heading a,
.product__title,
.collection__title,
.section-header__title,
[class*="__title"],
[class*="__heading"] {
  font-family: 'Dela Gothic One', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.01em !important;
  word-spacing: 0.12em !important;
  line-height: 0.92 !important;
}

/* ---- Collection hero title — overrides global h1 and __title rules ---- */
.stw-col__hero-title,
.stw-collection-hero h1,
.stw-col__hero h1 {
  font-family: 'Dela Gothic One', sans-serif !important;
  font-size: clamp(28px, 3.5vw, 44px) !important;
  line-height: 1.0 !important;
  letter-spacing: -0.01em !important;
}

/* ---- Collection body layout override ---- */
.stw-col__body,
.stw-col__main,
.stw-collection-body {
  display: grid !important;
  grid-template-columns: 240px 1fr !important;
  gap: 24px !important;
  padding: 24px 48px 64px !important;
  margin: 0 !important;
  align-items: start !important;
  width: 100% !important;
}


/* ---- Product card image override ---- */
.stw-col__grid .card__media,
.stw-col__grid .card-media,
.stw-col__grid [class*="card__media"],
.stw-col__grid [class*="pcard-img"],
.stw-col__grid [class*="prod-card__img"] {
  aspect-ratio: 1 !important;
  height: auto !important;
  min-height: 0 !important;
}

/* ══════════════════════════════════════
   PRODUCT GALLERY TABS (3D Preview / Photos)
══════════════════════════════════════ */
.product__media-tab,
.product-media-modal__tab,
.media-gallery__tab,
.tabs__button,
.tab-button,
[role="tab"] {
  font-family: 'DM Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #F2F5E8 !important;
}

.product__media-tab.active,
.product-media-modal__tab.active,
.media-gallery__tab.active,
.tabs__button.active,
.tab-button.active,
[role="tab"][aria-selected="true"] {
  color: #B8F000 !important;
  border-bottom: 2px solid #B8F000 !important;
}


/* ── Lightbox z-index override (above all Shopify payment overlays) ── */
#lb,
.lb,
.stw-prod__lightbox {
  z-index: 2147483647 !important;
  position: fixed !important;
}

#lb.open,
.lb.open,
.stw-prod__lightbox.open {
  display: flex !important;
}

/* ── Cart recommendations (Horizon default "You may also like") ── */
.cart-recommendations,
[class*="cart-recommendations"],
.complementary-products {
  background: #111410 !important;
  padding: 48px !important;
  border-top: 1px solid rgba(242,245,232,0.07) !important;
}

.cart-recommendations h2,
.cart-recommendations .h2,
[class*="cart-recommendations"] h2 {
  font-family: 'Dela Gothic One', sans-serif !important;
  font-size: clamp(20px, 2.5vw, 32px) !important;
  text-transform: uppercase !important;
  color: #F2F5E8 !important;
  letter-spacing: 0.06em !important;
  margin-bottom: 24px !important;
}

.cart-recommendations .card-wrapper,
[class*="cart-recommendations"] .card-wrapper {
  background: #161A12 !important;
  border: 1px solid rgba(242,245,232,0.07) !important;
  border-radius: 4px !important;
}

.cart-recommendations .card-wrapper:hover,
[class*="cart-recommendations"] .card-wrapper:hover {
  border-color: rgba(184,240,0,0.25) !important;
}

.cart-recommendations .price,
.cart-recommendations .price__regular,
[class*="cart-recommendations"] .price {
  font-family: 'DM Mono', monospace !important;
  font-size: 14px !important;
  color: #B8F000 !important;
  font-weight: 500 !important;
}

.cart-recommendations .card__heading,
[class*="cart-recommendations"] .card__heading {
  font-family: 'Dela Gothic One', sans-serif !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  color: #F2F5E8 !important;
  letter-spacing: 0.02em !important;
}

/* ============================================================
   JUDGE.ME WIDGET — STW Dark Theme Override
   Targets: .jdgm-widget and child elements
   ============================================================ */

/* Container & global reset */
.jdgm-widget,
.jdgm-rev-widg,
.jdgm-all-reviews-page {
  background: #0C0F0A !important;
  color: #F2F5E8 !important;
  font-family: 'DM Sans', sans-serif !important;
  border: none !important;
  box-shadow: none !important;
}

/* Wrapper section that the _blocks section renders into */
.jdgm-widget * {
  border-color: rgba(242,245,232,0.07) !important;
}

/* ── Section heading ── */
.jdgm-rev-widg__header,
.jdgm-all-reviews-header,
.jdgm-widget .jdgm-rev-widg__header {
  background: transparent !important;
  border-bottom: 1px solid rgba(242,245,232,0.07) !important;
  padding-bottom: 24px !important;
  margin-bottom: 32px !important;
}

.jdgm-rev-widg__title,
.jdgm-all-reviews-header h1,
.jdgm-widget h1,
.jdgm-widget h2 {
  font-family: 'Dela Gothic One', sans-serif !important;
  font-size: clamp(22px, 3vw, 34px) !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #F2F5E8 !important;
  line-height: 1 !important;
}

/* ── Stars — filled & empty ── */
.jdgm-star,
.jdgm-rev__icon .jdgm-star,
.jdgm-summary__stars .jdgm-star,
.jdgm-widget .jdgm-star {
  color: #6B7260 !important;
}

.jdgm-star.jdgm--on,
.jdgm-star[class*="--on"],
.jdgm-rev__icon .jdgm-star.jdgm--on,
.jdgm-summary__stars .jdgm-star.jdgm--on,
.jdgm-widget .jdgm-star.jdgm--on {
  color: #B8F000 !important;
}

/* ── Summary score block ── */
.jdgm-summary,
.jdgm-rev-widg__summary {
  background: #111410 !important;
  border: 1px solid rgba(242,245,232,0.07) !important;
  border-radius: 4px !important;
  padding: 28px 32px !important;
  margin-bottom: 32px !important;
}

.jdgm-summary__score,
.jdgm-rev-widg__score {
  color: #F2F5E8 !important;
}

/* Big average rating number */
.jdgm-summary__score-label,
.jdgm-rev-widg__avg-score,
.jdgm-widget .jdgm-summary__score-label {
  font-family: 'Dela Gothic One', sans-serif !important;
  font-size: 72px !important;
  line-height: 1 !important;
  color: #B8F000 !important;
  font-weight: 400 !important;
}

/* Review count label beneath the big number */
.jdgm-summary__reviews-count,
.jdgm-rev-widg__reviews-count {
  font-family: 'DM Mono', monospace !important;
  font-size: 12px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #F2F5E8 !important;
}

/* ── Histogram ── */
.jdgm-histogram {
  background: transparent !important;
}

.jdgm-histogram__bar,
.jdgm-histogram__bar-row {
  gap: 10px !important;
}

/* Rating label (5, 4, 3...) */
.jdgm-histogram__bar-ranking,
.jdgm-histogram__label {
  font-family: 'DM Mono', monospace !important;
  font-size: 12px !important;
  color: #F2F5E8 !important;
  min-width: 14px !important;
}

/* Bar track (background) */
.jdgm-histogram__bar-count-all,
.jdgm-histogram__track {
  background: #2E332A !important;
  border-radius: 3px !important;
  height: 5px !important;
}

/* Bar fill (lime) */
.jdgm-histogram__bar-count-rated,
.jdgm-histogram__fill {
  background: #B8F000 !important;
  border-radius: 3px !important;
}

/* Percentage label */
.jdgm-histogram__bar-percent,
.jdgm-histogram__percent {
  font-family: 'DM Mono', monospace !important;
  font-size: 12px !important;
  color: #F2F5E8 !important;
}

/* ── Individual review cards ── */
.jdgm-rev,
.jdgm-rev-widg__rev {
  background: #111410 !important;
  border: 1px solid rgba(242,245,232,0.07) !important;
  border-radius: 4px !important;
  padding: 24px !important;
  transition: border-color 0.3s, transform 0.3s !important;
}

.jdgm-rev:hover {
  border-color: rgba(184,240,0,0.15) !important;
  transform: translateY(-2px) !important;
}

/* Author / reviewer name */
.jdgm-rev__author,
.jdgm-rev-widg__author {
  font-family: 'DM Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #F2F5E8 !important;
  font-weight: 500 !important;
}

/* Date / timestamp */
.jdgm-rev__timestamp,
.jdgm-rev__date {
  font-family: 'DM Mono', monospace !important;
  font-size: 10px !important;
  letter-spacing: 0.08em !important;
  color: #6B7260 !important;
}

/* Verified badge */
.jdgm-rev__verification-badge,
.jdgm-badge-check {
  color: #B8F000 !important;
  font-family: 'DM Mono', monospace !important;
  font-size: 10px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

/* Review title */
.jdgm-rev__title {
  font-family: 'DM Mono', monospace !important;
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #F2F5E8 !important;
  font-weight: 600 !important;
  margin-bottom: 8px !important;
}

/* Review body text */
.jdgm-rev__body,
.jdgm-rev__content,
.jdgm-rev p {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  color: rgba(242,245,232,0.7) !important;
  line-height: 1.75 !important;
  font-style: italic !important;
}

/* ── Write a review button / link ── */
.jdgm-write-rev-link,
.jdgm-write-rev-link:link,
.jdgm-write-rev-link:visited,
.jdgm-rev-widg__write-rev-link,
a.jdgm-write-rev-link {
  background: transparent !important;
  color: #B8F000 !important;
  border: 1.5px solid rgba(184,240,0,0.45) !important;
  border-radius: 2px !important;
  font-family: 'DM Mono', monospace !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  padding: 11px 22px !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: border-color 0.2s, background 0.2s !important;
}

.jdgm-write-rev-link:hover,
a.jdgm-write-rev-link:hover {
  border-color: #B8F000 !important;
  background: rgba(184,240,0,0.06) !important;
  color: #B8F000 !important;
}

/* ── Filter / sort controls ── */
.jdgm-rev-widg__sort,
.jdgm-sort-select,
.jdgm-filter-select,
.jdgm-rev-widg__filter {
  background: #161A12 !important;
  border: 1px solid rgba(242,245,232,0.2) !important;
  border-radius: 2px !important;
  color: #F2F5E8 !important;
  font-family: 'DM Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  padding: 8px 14px !important;
  outline: none !important;
}

.jdgm-rev-widg__sort option,
.jdgm-sort-select option,
.jdgm-filter-select option {
  background: #1C2018 !important;
  color: #F2F5E8 !important;
}

/* Filter pill buttons (All / 5 stars / etc) */
.jdgm-rev-widg__filter-btn,
.jdgm-rating-filter-btn,
.jdgm-filter-btn {
  font-family: 'DM Mono', monospace !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  padding: 8px 16px !important;
  background: #161A12 !important;
  border: 1px solid rgba(242,245,232,0.2) !important;
  border-radius: 2px !important;
  color: #F2F5E8 !important;
  cursor: pointer !important;
  transition: border-color 0.2s, color 0.2s !important;
}

.jdgm-rev-widg__filter-btn:hover,
.jdgm-rating-filter-btn:hover,
.jdgm-filter-btn:hover {
  border-color: rgba(184,240,0,0.25) !important;
}

.jdgm-rev-widg__filter-btn.jdgm--active,
.jdgm-rating-filter-btn.jdgm--active,
.jdgm-filter-btn.jdgm--active,
.jdgm-rev-widg__filter-btn[class*="active"],
.jdgm-filter-btn[class*="active"] {
  border-color: #B8F000 !important;
  color: #B8F000 !important;
  background: rgba(184,240,0,0.06) !important;
}

/* ── Pagination ── */
.jdgm-paginate,
.jdgm-rev-widg__paginate {
  font-family: 'DM Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
}

.jdgm-paginate .jdgm--active,
.jdgm-paginate a,
.jdgm-paginate span {
  color: #F2F5E8 !important;
  background: transparent !important;
}

.jdgm-paginate .jdgm--active {
  color: #B8F000 !important;
  border-color: #B8F000 !important;
}

/* ── Helpful / vote buttons ── */
.jdgm-rev__helpful,
.jdgm-rev__helpful-btns {
  border-top: 1px solid rgba(242,245,232,0.06) !important;
  font-family: 'DM Mono', monospace !important;
  font-size: 10px !important;
  letter-spacing: 0.1em !important;
  color: #6B7260 !important;
}

.jdgm-rev__helpful button,
.jdgm-rev__helpful a {
  background: none !important;
  border: 1px solid rgba(242,245,232,0.08) !important;
  border-radius: 2px !important;
  padding: 3px 10px !important;
  font-family: 'DM Mono', monospace !important;
  font-size: 9px !important;
  color: #6B7260 !important;
  cursor: pointer !important;
  transition: border-color 0.2s, color 0.2s !important;
}

.jdgm-rev__helpful button:hover,
.jdgm-rev__helpful a:hover {
  border-color: rgba(184,240,0,0.3) !important;
  color: #B8F000 !important;
}

/* ── Form (write review modal/inline) ── */
.jdgm-form,
.jdgm-rev-form,
.jdgm-write-form {
  background: #111410 !important;
  border: 1px solid rgba(184,240,0,0.2) !important;
  border-radius: 4px !important;
  padding: 32px !important;
}

.jdgm-form label,
.jdgm-rev-form label {
  font-family: 'DM Mono', monospace !important;
  font-size: 10px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: #6B7260 !important;
}

.jdgm-form input,
.jdgm-form textarea,
.jdgm-rev-form input,
.jdgm-rev-form textarea {
  background: #161A12 !important;
  border: 1px solid rgba(242,245,232,0.1) !important;
  border-radius: 3px !important;
  color: #F2F5E8 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  padding: 12px 14px !important;
  outline: none !important;
  width: 100% !important;
}

.jdgm-form input:focus,
.jdgm-form textarea:focus,
.jdgm-rev-form input:focus,
.jdgm-rev-form textarea:focus {
  border-color: rgba(184,240,0,0.4) !important;
}

.jdgm-form input::placeholder,
.jdgm-form textarea::placeholder,
.jdgm-rev-form input::placeholder,
.jdgm-rev-form textarea::placeholder {
  color: #6B7260 !important;
}

/* Form submit button */
.jdgm-form__submit,
.jdgm-rev-form__submit,
.jdgm-write-form input[type="submit"],
.jdgm-write-form button[type="submit"] {
  background: #B8F000 !important;
  color: #0C0F0A !important;
  font-family: 'DM Mono', monospace !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  padding: 14px 32px !important;
  border: none !important;
  border-radius: 2px !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}

.jdgm-form__submit:hover,
.jdgm-rev-form__submit:hover,
.jdgm-write-form input[type="submit"]:hover,
.jdgm-write-form button[type="submit"]:hover {
  background: #CDF520 !important;
}

/* ── Product photo thumbnails in reviews ── */
.jdgm-rev__pic-img,
.jdgm-rev__pictures img {
  border-radius: 3px !important;
  border: 1px solid rgba(242,245,232,0.07) !important;
}

/* ── Remove Judge.me white-background wrappers ── */
.jdgm-preview-badge,
.jdgm-preview-badge * {
  background: transparent !important;
}

/* ── Dividers inside widget ── */
.jdgm-rev__divider,
.jdgm-widget hr {
  border-color: rgba(242,245,232,0.07) !important;
}

/* ── Section wrapper padding to match STW sections ── */
.section-wrapper:has(.jdgm-widget) {
  background: #0C0F0A !important;
  padding: 72px 48px !important;
  border-top: 1px solid rgba(242,245,232,0.07) !important;
}

@media (max-width: 900px) {
  .section-wrapper:has(.jdgm-widget) {
    padding: 48px 24px !important;
  }
}

/* ══════════════════════════════════════
   LOCALIZATION DROPDOWN — Dark theme
══════════════════════════════════════ */

/* Force dark background and off-white CSS variables on the popup panel */
dropdown-localization-component .localization-wrapper {
  background-color: #111410 !important;
  border: 1px solid rgba(242,245,232,0.1) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6) !important;
  --color-background: #111410;
  --color-background-rgb: 17, 20, 16;
  --color-foreground: #F2F5E8;
  --color-foreground-rgb: 242, 245, 232;
  --color-primary: #F2F5E8;
  --color-primary-hover: #B8F000;
  --color-primary-hover-rgb: 184, 240, 0;
}

/* Country names: always off-white */
dropdown-localization-component .localization-form__list-item .country {
  color: #F2F5E8 !important;
}

/* When searching: matched text (plain, the typed portion) = lime */
dropdown-localization-component .is-searching .localization-form__list-item .country {
  color: #B8F000 !important;
}

/* Non-matched text wrapped in <mark>: dimmed off-white */
dropdown-localization-component .localization-form__list-item .country mark {
  background: transparent !important;
  color: rgba(242, 245, 232, 0.45) !important;
}

/* Currency code */
dropdown-localization-component .localization-form__currency {
  color: rgba(242, 245, 232, 0.55) !important;
}

/* Selected item highlight */
dropdown-localization-component .localization-form__list-item[aria-current='true'] .country {
  color: #B8F000 !important;
}

/* Hover row */
dropdown-localization-component .localization-form__list-item:hover,
dropdown-localization-component .localization-form__list-item:focus {
  background-color: rgba(184, 240, 0, 0.06) !important;
}

/* Search input */
dropdown-localization-component .country-filter__input {
  background: #161A12 !important;
  color: #F2F5E8 !important;
  border-color: rgba(184,240,0,0.35) !important;
}
dropdown-localization-component .country-filter__input:focus {
  outline: none !important;
  border-color: rgba(184,240,0,0.65) !important;
}
dropdown-localization-component .country-filter__input::placeholder {
  color: rgba(242,245,232,0.35) !important;
}
