
/*  1. DESIGN TOKENS */
:root{
  --black:      #1e1d1d;
  --black-dark: #000000;
  --blue:       #200ba9;
  --gold:       #E7B740;
  --green:      #14532D;   /* primary brand green (header/footer) */
  --green-dark: #0E3B20;   /* darker green (topbar / hover) */
  --green-mid:  #1D6B3B;   /* mid green (buttons / active states) */
  --gray:       #808080;
  --line:       #E3E8E4;
  --paper:      #FFFFFF;
  --paper-2:    #F4F6F4;   /* light grey-green section background */
  --paper-3:    #e7e7e7;
  --parrot:     #77a516;
  --parrot-2:   #6f9124;
  --ink:        #16201B;
  --muted:      #5B6B62;
  --gray:       #212120dd;  /* accent for sale tags / highlights */
  --line:       #E3E8E4;
  --vault-red:  #C1392B;
  --white:      #ffffff;

  --f-display:'Poppins', sans-serif;
  --f-body:   'Poppins', sans-serif;
  --f-mono:   'Space Mono', monospace;

  --maxw: 1280px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--f-body);
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ margin:0; font-family:var(--f-display); }
p{ margin:0; }
:focus-visible{ outline:3px solid var(--gold); outline-offset:2px; }
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 32px; }

.bg-white{background: var(--white);}
.bg-papper{background: var(--paper);}
.bg-papper-2{background: var(--paper-2);}
.bg-papper-3{background: var(--paper-3);}
.bg-parrot{background: var(--parrot);}
.bg-parrot-2{background: var(--parrot-2);}
.text-justify {
  text-align: justify !important;
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; transition-duration:0.01ms !important; }
}

/* Target the specific scrollbar container */
.custom-scrollbar {
    scrollbar-width: thin; /* Firefox: Makes it thin */
    scrollbar-color: #d1d5db transparent; /* Firefox: Gray thumb, transparent track */
}

/* Chrome, Edge, and Safari */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px; /* Slim width */
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent; /* No background track */
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #d1d5db; /* Light gray color */
    border-radius: 10px; /* Rounded pill shape */
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: #9ca3af; /* Slightly darker gray on hover */
}

/* Hides the up/down arrows in WebKit browsers */
.custom-scrollbar::-webkit-scrollbar-button {
    display: none;
}
/* Hide the default Google Translate widget */
#google_translate_element {
  display: none !important;
}

/* Hide the Google Translate top banner and popups */
.skiptranslate,
.goog-te-banner-frame,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
}

/* Prevent Google from pushing the page down */
body {
  top: 0 !important;
}

/* sliding carousel rows (best sellers / legends / community / etc).
   Sliding, autoplay, drag/swipe and looping are all handled by Owl
   Carousel — these rules just restyle its generated .owl-nav button
   markup to match our circular arrow buttons, and add the hover-zoom
   on individual cards. */
.owl-row{ position:relative; padding:0 4px 18px; }
.owl-row .owl-stage{ display:flex; }
.owl-row .owl-item{ transition:transform .25s ease; }
.owl-row .owl-item:hover{ transform:scale(1.05); position:relative; z-index:2; }
.owl-row .owl-nav button.owl-prev,
.owl-row .owl-nav button.owl-next{
  position:absolute; top:42%; transform:translateY(-50%);
  width:38px; height:38px;
  border-radius:50%;
  background:var(--parrot) !important;
  border:1px solid var(--line);
  box-shadow:0 2px 8px rgba(0,0,0,0.08);
  display:flex; align-items:center; justify-content:center;
  color:var(--ink);
  margin:0;
}
.owl-row .owl-nav button.owl-prev{ left:-8px; }
.owl-row .owl-nav button.owl-next{ right:-8px; }
.owl-row .owl-nav svg{ width:16px; height:16px; }
.owl-row .owl-dots{ display:none; } /* arrows only on these rows, no dot indicators */
.owl-no-nav .owl-nav { display: none !important; }
@media (max-width:700px){ .owl-row .owl-nav{ display:none; } }

.section-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  margin-bottom:22px;
  flex-wrap:wrap;
  gap:8px;
}
.section-head h2{
  font-size:clamp(24px,3vw,32px);
  font-weight:700;
  color:var(--parrot-2);
}
.section-head .view-all{
  font-size:13px;
  font-weight:600;
  color:var(--green);
  border-bottom:1px solid var(--green);
  padding-bottom:2px;
  white-space:nowrap;
}



/*  2. TOP BAR  */
.topbar{
  background:var(--black);
  color:#f8fdfa;
  font-size:12px;
  border-bottom: #585757 solid 0.05em;
}
.topbar .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:4px 24px;
  gap:16px;
  flex-wrap:wrap;
}
.topbar-left{ display:flex; align-items:center; gap:18px; }
.topbar-msg{ font-weight:600; letter-spacing:0.3px; color:#fff; }

/* currency dropdown (structure/open-close handled by Bootstrap's Dropdown JS) */
.currencyLabel {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.currencyLabel img {
    width: 25px;
    height: auto;
    display: block;
}
.currency-toggle{
  display:flex; align-items:center; gap:5px;
  background:none; border:0; color:#cfe3d5;
  font-family:inherit; font-size:12px; font-weight:600;
  padding:2px 0;
}
.currency-toggle svg{ width:11px; height:11px; transition:transform .15s ease; }
.currency-toggle[aria-expanded="true"] svg{ transform:rotate(180deg); }
.currency-list.dropdown-menu{
  border:0; border-radius:6px;
  box-shadow:0 10px 28px rgba(0,0,0,0.18);
  min-width:80px; padding:3px 0; margin-top:3px;
}
.currency-list .dropdown-item{
  display:flex; justify-content:space-between; gap:10px;
  padding:9px 16px; font-size:13px; font-weight:600; color:var(--ink);
}
.currency-list .dropdown-item:hover, .currency-list .dropdown-item:focus{ background:var(--paper-2); color:var(--ink); }
.currency-list .dropdown-item.active{ color:var(--green); background:none; }
.topbar-right{ display:flex; gap:18px; font-weight:500; }
.topbar-right a:hover{ text-decoration:none; }
/* @media (max-width:760px){ .topbar-right{ display:none; } } */
.bottombar-right{ display:flex; gap:18px; font-weight:500; }
.bottombar-right a:hover{ text-decoration:none; }


/*  3. HEADER (green band: logo + search + icons)  */
.site-header{ 
  background: rgba(0, 0, 0, 0.0);
  /* background:var(--green);  */
}
.header-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  padding: 6px 24px;
  flex-wrap:wrap;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  flex-shrink:0;
}
.logo-badge{
  width:38px; height:38px;
  border:2px solid #fff;
  border-radius:8px 8px 8px 2px;
  display:flex; align-items:center; justify-content:center;
}
.logo-badge svg{ width:20px; height:20px; }
.logo-text{ line-height:1.05; }
.logo-text .top{ font-size:11px; letter-spacing:2px; font-weight:500; opacity:0.85; }
.logo-text .main{ font-size:36px; font-weight:900; 
      letter-spacing:1px; 
      text-align: left;}

.header-search{
  margin: 0px 10px;
  flex:0 1 250px;
  width:100%;
  max-width:250px;
  display:flex;
  align-items:center;
  background:#fff;
  height:32px;
  padding:0 4px 0 8px;
  border-radius: 4px;
}
.header-search input{
  border:0; outline:0; flex:1;
  font-family:var(--f-body); font-size:14px;
  /* NEW: Fixes Firefox default styling issues */
  background: transparent; 
  min-width: 0; 
  -webkit-appearance: none; 
  appearance: none; 
}  
.header-search button{
  background:transparent; border:0; color:var(--muted);
  width:30px; height:34px; display:flex; align-items:center; justify-content:center;
  
  /* NEW: Prevents Firefox from squishing the button or adding default padding */
  flex-shrink: 0; 
  padding: 0; 
}
.header-search svg{ width:18px; height:18px; }

.header-actions{
  display:flex; align-items:center; gap:5px; color:#fff; flex-shrink:0;
}
.header-actions button{ background:none; border:0; color:#fff; position:relative; }
.header-actions svg{ width:24px; height:24px; }
.cart-count{
  position:absolute; top:-6px; right:-8px;
  background:var(--paper); color:var(--ink);
  font-family:var(--f-mono); font-size:10px;
  width:16px; height:16px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
/* @media (max-width:760px){ .header-search{ display:none; } } */




/*  4. PRIMARY NAV (white bar, green links)  */
.primary-nav{ 
    background: rgba(0, 0, 0, 0.9);
  /* background: var(--black);  */
}
.primary-nav .wrap{
  display:flex; align-items:center; justify-content:right; gap:4px;
  overflow-x:auto;
  cursor:grab;
  scrollbar-width:none;      /* Firefox */
  -ms-overflow-style:none;   /* old Edge/IE */
}
.primary-nav .wrap::-webkit-scrollbar{ display:none; }  /* Chrome/Safari/new Edge */
.primary-nav .wrap.dragging{ cursor:grabbing; scroll-behavior:auto; }
@media (max-width:760px){
  .primary-nav .wrap{ justify-content:flex-start; } /* centering + overflow scroll fight on narrow screens */
}
.primary-nav a.topnav {
  color:var(--paper);
  font-size:15px;
  font-weight:500;
  letter-spacing:0.4px;
  padding:16px 8px;
  white-space: nowrap; /* Removed the comments here */
  border-bottom: 2px solid transparent;
}
.primary-nav a.topnav:hover{ 
  border-color:var(--paper-2); 
  background: var(--black); 
}
.primary-nav a.topnav.hot{   
  font-weight:600;
  font-size:14px;
  /* color:#C2410C;  */
}



/* ==================================================================
   DESKTOP MAIN NAV — SUBMENU (dropdown) & TRIMENU (flyout)
   Append this block to style.css. Pairs with the updated
   navbar.blade.php: each top-level link is wrapped in .nav-item;
   items with children get a .nav-dropdown, and any dropdown item
   with its own children gets a nested .nav-flyout. Pure CSS hover —
   no JS needed for the desktop version.
   ================================================================== */

/* The nav row needs room for dropdowns to escape downward. The
   existing .primary-nav .wrap uses overflow-x:auto for the mobile
   drag-scroll — but overflow-x:auto implicitly clips overflow-y too,
   which would cut the dropdowns off. Restore normal overflow once
   we're above the breakpoint where that drag-scroll behaviour and
   the mobile menu take over instead. */
@media (min-width:992px){
  .primary-nav .wrap{ overflow:visible; }
}

.primary-nav .nav-item{ position:relative; }

/* small caret on any top-level link that has a dropdown */
.primary-nav a.topnav.has-caret::after{
  content:"";
  display:inline-block;
  width:6px; height:6px;
  margin-left:6px;
  margin-bottom:2px;
  border-right:1.5px solid currentColor;
  border-bottom:1.5px solid currentColor;
  transform:rotate(45deg);
  opacity:0.7;
}

/* level 2 — dropdown under a top-level nav item */
.primary-nav .nav-dropdown{
  position:absolute;
  top:100%;
  left:0;
  min-width:220px;
  background:#141414;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:0 0 8px 8px;
  padding:8px 0;
  box-shadow:0 12px 28px rgba(0,0,0,0.45);
  opacity:0;
  visibility:hidden;
  transform:translateY(6px);
  transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index:60;
}
.primary-nav .nav-item:hover > .nav-dropdown,
.primary-nav .nav-item:focus-within > .nav-dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.primary-nav .nav-dropdown ul{ margin:0; padding:0; list-style:none; }
.primary-nav .nav-drop-item{ position:relative; }
.primary-nav .nav-drop-item > a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 18px;
  font-size:13.5px;
  font-weight:500;
  color:var(--paper);
  white-space:nowrap;
}
.primary-nav .nav-drop-item > a:hover{
  background:rgba(255,255,255,0.06);
  color:var(--parrot);
}
.primary-nav .nav-drop-item .tri-caret{
  width:12px; height:12px;
  opacity:0.65;
  transform:rotate(-90deg);
  flex-shrink:0;
}

/* level 3 — trimenu flyout, opens to the right of its parent row */
.primary-nav .nav-flyout{
  position:absolute;
  top:-8px;
  left:100%;
  min-width:200px;
  background:#141414;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:8px;
  padding:8px 0;
  box-shadow:0 12px 28px rgba(0,0,0,0.45);
  opacity:0;
  visibility:hidden;
  transform:translateX(6px);
  transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index:70;
}
.primary-nav .nav-drop-item.has-tri:hover > .nav-flyout,
.primary-nav .nav-drop-item.has-tri:focus-within > .nav-flyout{
  opacity:1;
  visibility:visible;
  transform:translateX(0);
}
.primary-nav .nav-flyout a{
  display:block;
  padding:10px 18px;
  font-size:13.5px;
  font-weight:500;
  color:var(--paper);
  white-space:nowrap;
}
.primary-nav .nav-flyout a:hover{
  background:rgba(255,255,255,0.06);
  color:var(--parrot);
}

/* if a flyout would run off the right edge of the viewport, flip it
   to open to the left instead — add class="nav-drop-item has-tri
   flip-left" on that <li> in the blade file when needed */
.primary-nav .nav-drop-item.flip-left .nav-flyout{
  left:auto;
  right:100%;
  transform:translateX(-6px);
}
.primary-nav .nav-drop-item.flip-left:hover > .nav-flyout{
  transform:translateX(0);
}

/* desktop-only: below this breakpoint the mobile off-canvas menu
   (with its own accordion submenu/trimenu) takes over instead */
@media (max-width:991.98px){
  .primary-nav .nav-dropdown,
  .primary-nav .nav-flyout{ display:none !important; }
}

/* ==================================================================
   5. HERO CAROUSEL (Owl Carousel — autoplay, drag/swipe, arrows and
      dots all handled by the library; the rules below just restyle
      its generated .owl-nav / .owl-dots to match our look)
   ================================================================== */
.hero{
  position:relative;
  overflow:hidden;
}
.hero .owl-stage-outer, .hero .owl-stage, .hero .owl-item{ height:100%; }
.hero-slide{
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    color: #fff;
    position: relative;
}
/* decorative pitch lines + jersey mock, standing in for hero photography */
.hero-deco{
  position:absolute; 
  inset:0;
  display:flex; 
  align-items:center; 
  justify-content:center;
  opacity:0.9;
}
/* .hero-shirt{
  width:min(46vw, 360px);
  aspect-ratio:0.85/1;
  position:relative;
} */
/* .hero-shirt svg{ width:100%; height:100%; } */
.hero-inner{
  position:relative;
  z-index:2;
  width:100%;
  padding:0 32px 44px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
}
.hero-copy{ max-width:520px; }
.hero-eyebrow{
  font-size:13px; font-weight:700; letter-spacing:1px;
  text-transform:uppercase; color:#a9d8b7; margin-bottom:8px;
}
.hero h1{ font-size:clamp(30px,4.2vw,46px); font-weight:800; line-height:1.08; margin-bottom:12px; }
.hero p.lede{ font-size:15px; color:#d7e8dc; max-width:420px; }
.hero-shop{
  /* background:transparent; */
  background: var(--parrot);
  border:1.5px solid var(--parrot-2);
  border-radius: 8px;
  color:#fff;
  font-size:13px; font-weight:700; letter-spacing:1px;
  padding:8px 20px;
  flex-shrink:0;
  transition:background .15s ease, color .15s ease;
}
.hero-shop:hover{ background: var(--parrot-2);; color:var(--paper-2); }

/* Owl's generated arrow buttons, restyled as our circular controls */
.hero .owl-nav{ position:absolute; inset:0; z-index:3; pointer-events:none; }
.hero .owl-nav button.owl-prev,
.hero .owl-nav button.owl-next{
  pointer-events:auto;
  position:absolute; top:50%; transform:translateY(-50%);
  width:40px; height:40px;
  border-radius:50%;
  background:rgba(255,255,255,0.15) !important;
  border:1px solid rgba(255,255,255,0.4);
  display:flex; align-items:center; justify-content:center;
  color:#fff;
  margin:0;
}
.hero .owl-nav button.owl-prev{ left:20px; }
.hero .owl-nav button.owl-next{ right:20px; }
.hero .owl-nav svg{ width:18px; height:18px; }

/* Owl's generated dot indicators */
.hero .owl-dots{
  position:absolute; bottom:16px; left:50%; transform:translateX(-50%);
  z-index:3; display:flex; gap:6px;
}
.hero .owl-dot span{
  width:7px; height:7px; border-radius:50%;
  background:rgba(255,255,255,0.4) !important; margin:0 !important;
}
.hero .owl-dot.active span{ background:#fff !important; }

@media (max-width:760px){
  .hero-slide{ min-height:220px; }
  .hero-inner{ flex-direction:column; align-items:flex-start; }
  .hero-shirt{ width:60vw; }
}


.product-shop{
  background: var(--paper-2);
  border:1.5px solid var(--paper-2);
  border-radius: 8px;
  color: var(--black);
  font-size:11px; font-weight:600; letter-spacing:1px;
  padding: 5px 10px;
  flex-shrink:0;
  transition: background .15s ease, color .15s ease;
}
.product-shop:hover{ background: var(--paper-3); color:var(--black-dark); }

.blog p{
  color: var(--gray);
}
.blog a{
  color: var(--black);
}
.blog a:hover{
  color: var(--green-dark);
}

.blog-details .posted{
  color: var(--gray);
  font-size: 12px;
}

.blog-button{
  background: var(--paper);
  border: 1.5px solid var(--black);
  border-radius: 16px;
  color: var(--black);
  font-size: 14px; font-weight:600; letter-spacing:1px;
  padding: 6px 12px;
  flex-shrink:0;
  transition: background .15s ease, color .15s ease;
}
.blog-button:hover{ background: var(--paper-3); color:var(--black-dark); }

/*  6. TRUST TICKER (marquee) */
.ticker-title h2{  
  font-size:clamp(18px,3vw,24px);
  font-weight:800;
  color:var(--black);
}
.ticker{
  background:var(--paper);
  color:#000;
  overflow:hidden;
  white-space:nowrap;
}
.ticker-track{
  display:inline-flex;
  gap:48px;
  padding:12px 0;
  will-change:transform;
  /* position is driven by JS (see script at bottom) using a fixed
     pixels-per-second speed — this is more reliable across browsers
     than a percentage-based CSS @keyframes animation, whose apparent
     speed changes with how much content is in the row */
}
.ticker-track span{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:600;
}
.ticker-track svg{ width:16px; height:16px; }
@media (max-width: 768px) {
  .ticker-title h2 {
    /* Standard Bootstrap h4 size is usually ~1.5rem (24px) */
    font-size: 1.0rem !important; 
    line-height: 1.5;
    white-space: normal; 
  }

  .ticker-title {
    flex-shrink: 0;
    min-width: 140px; /* Adjusted slightly to fit the larger h4 text */
    background: var(--paper); /* */
    position: relative;
    z-index: 2; 
    padding-right: 12px; 
  }
}


/*  7. PRODUCT CARDS (best sellers row) */
.product-section{ padding:12px 0; 
  background: var(--paper); }
.product-card{
  flex:0 0 220px;
  scroll-snap-align:start;
  background: var(--paper);
  border-radius: 8px;
}
.product-media{
  aspect-ratio:1/1;
  background:var(--paper-2);
  border-bottom:1px solid var(--line);
  border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:10px;
  overflow:hidden;
  position:relative;
}
.product-media .shirt-icon{ width:56%; }
.product-tag{
  display:flex; align-items:center; gap:6px;
  font-size:11.5px; font-weight:700; color:var(--green);
  text-transform:uppercase; letter-spacing:0.3px;
  margin-bottom:4px;
}
.flag-dot{ width:12px; height:12px; border-radius:3px; flex-shrink:0; }
.product-name{ font-size:14px; font-weight:600; line-height:1.35; 
  margin-bottom:6px; min-height:30px; }
.product-price{ display:flex; gap:8px; align-items:baseline; }
.product-price .now{ font-weight:800; font-size:15px; }
.product-price .was{ font-size:12.5px; color:#a3a89f; text-decoration:line-through; }
.sale-flag{ display:inline-block; background:#C2410C; color:#fff; font-size:10.5px; font-weight:700; padding:2px 6px; border-radius:2px; margin-bottom:4px; }

/*  8. LEGENDS ROW ("shirt back" cards) */
.legends-section{ padding:12px 0; background:var(--paper-2); }
.legend-card{
  flex:0 0 150px;
  scroll-snap-align:start;
  text-align:center;
}
.legend-shirt{
  aspect-ratio:0.9/1;
  border-radius:6px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  margin-bottom:10px;
  position:relative;
  overflow:hidden;
}
.legend-shirt .name{
  font-family:var(--f-display); font-weight:700; letter-spacing:1px;
  font-size:13px; color:#fff; text-transform:uppercase; margin-bottom:2px;
}
.legend-shirt .num{
  font-family:var(--f-display); font-weight:800; font-size:38px; color:#fff; line-height:1;
}
.legend-card p{ font-size:13px; font-weight:600; }


/*  9. PROMO / CTA BAND (diagonal stripes)  */
.promo{
  background-color: var(--blue);
  /* background-image: url('../images/banners/promo-banner.jpg') ; */
  /* background:repeating-linear-gradient(115deg, var(--green) 0 60px, var(--green-mid) 60px 120px); */
  color:#fff;
  padding:32px 22px;
  text-align:center;
}
@media (max-width:760px){ .promo{ padding: 12px 6px; } }
.promo-badge{
  display:inline-block;
  border:1.5px solid #fff;
  padding:6px 14px;
  font-size:11.5px; font-weight:700; letter-spacing:1px;
  margin-bottom:18px;
}

.promo h2{
  font-size:clamp(26px,4.5vw,42px);
  font-weight:800;
  line-height:1.1;
  margin-bottom:6px;
}
.promo h2 .accent{ color:var(--gold); font-style:italic; }
.promo p{ max-width:520px; margin:0 auto 20px; color:#dcefe1; font-size:14.5px; }
.promo-btn{
  display:inline-block;
  background:#fff;
  color:var(--green);
  font-weight:700;
  font-size:13.5px;
  padding:14px 28px;
  border-radius:4px;
}

/*  10. LEAGUES & TEAMS  */
.leagues-section{ padding: 12px 0px 0px 0px; 
  background: var(--paper-2); }
.league-tabs{
  display:flex; 
  gap:8px; 
  margin-bottom:22px; 
  flex-wrap:wrap;
}
.league-tab{
  padding: 3px;
  font-size:12.5px; 
  font-weight:700;
  letter-spacing:0.3px;
  border:1.5px solid var(--line);
  border-radius:4px;
  color:var(--muted);
  background:#fff;
}
.league-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.league-tab.active{ background:var(--paper); border-color:var(--paper); color:#fff; }
.league-logo {
    display: block;
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto 8px;
}

.team-grid{
  display:none;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  animation:fade-in .25s ease;
}
.team-grid.active{ display:grid; }
@keyframes fade-in{ from{ opacity:0; transform:translateY(4px); } to{ opacity:1; transform:translateY(0); } }
.team-row{
  display:flex; align-items:center; gap:10px;
  border:1px solid var(--line);
  border-radius:4px;
  padding:12px 14px;
  font-size:13.5px; font-weight:600;
}
.flag-pair{ display:flex; }
.flag-pair span{ width:12px; height:12px; }
@media (max-width:900px){ .team-grid{ grid-template-columns:repeat(2,1fr); } }

/*  11. COMMUNITY FITS  */
.community-section{ padding: 0px 0px 52px 0px; 
  background:var(--paper); }

.community-card{
  flex:0 0 200px;
  scroll-snap-align:start;
  position:relative;
  aspect-ratio:3/4;
  border-radius:6px;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  color:#fff;
}
.community-card .tag{
  position:relative; z-index:1;
  font-size:11.5px; font-weight:700;
  padding:10px;
  background:linear-gradient(0deg, rgba(0,0,0,0.55), transparent 70%);
  width:100%;
}

/*  12. VIDEO / VAULT BANNER  */
.vault-banner {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden; /* Crucial to clip the video edges */
}

/* Dark gradient overlay over the video */
.vault-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(100deg, rgba(10,25,15,0.85), rgba(10,25,15,0.4) 60%); */
  z-index: 2; /* Keeps gradient on top of video but under text */
}

/* Video wrapper that fills the container */
.video-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Sits behind the text and overlay */
  pointer-events: none; /* Prevents users from accidentally clicking/pausing the video */
}

/* Makes the YouTube video oversized to hide black bars and fill perfectly */
.video-background-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 Aspect Ratio */
  min-height: 100%;
  min-width: 177.77vh; /* 16:9 Aspect Ratio */
  transform: translate(-50%, -50%);
}

.vault-inner { 
  position: relative; 
  z-index: 3; /* Forces the text to stay on top of everything */
  padding: 0 32px; 
  max-width: 460px; 
}

/* Keep the rest of your original text/button styles below */
.vault-eyebrow{ font-size:12px; font-weight:700; letter-spacing:1.5px; color:#a9d8b7; margin-bottom:10px; text-transform:uppercase; }
.vault-banner h2{ font-size:clamp(26px,4vw,40px); font-weight:800; margin-bottom:6px; }
.vault-banner .sub{ font-size:15px; color:#d7e8dc; margin-bottom:26px; }
.vault-ctas{ display:flex; flex-direction:column; gap:12px; align-items:flex-start; }
.btn-pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:13px 22px;
  border-radius:32px;
  font-size:13px; font-weight:700; letter-spacing:0.3px;
}
.btn-pill.white{ background:#fff; color:var(--ink); }
.btn-pill.green{ background:var(--green-mid); color:#fff; }
.play-dot{
  width:22px; height:22px; border-radius:50%;
  background:#C2410C; display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.play-dot svg{ width:9px; height:9px; }


/*  13. LOCATIONS ACCORDION GALLERY  */
.locations{ position:relative; background:var(--ink); }
.locations-head{
  position:absolute; top:0; left:0; right:0; z-index:3;
  text-align:center; padding:14px 16px 16px;
  background:rgba(0,0,0,0.55);
}
.locations-head .eyebrow-white{ color:#cfe3d5; font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; display:block; margin-bottom:4px; }
.locations-head h2{ color:#fff; font-size:16px; font-weight:800; letter-spacing:3px; }

.locations-strip{
  display:flex;
  min-height:420px;
  overflow:hidden;
}
.location-panel{
  position:relative;
  flex:1 1 0%;
  min-width:0;
  display:flex;
  align-items:flex-end;
  padding:26px;
  overflow:hidden;
  cursor:pointer;
  transition:flex-grow .55s cubic-bezier(.22,.61,.36,1);
}



/* the hovered panel claims most of the row's width; the rest yield —
   this is what reveals more of each photo (via background-size:cover
   recalculating against the new width) as well as the detail copy */
.locations-strip:hover .location-panel{ flex-grow:0.55; }
.locations-strip:hover .location-panel:hover{ flex-grow:6; }

.location-bg{
  position:absolute; inset:0;
  background-color:var(--green-dark);
  background-size:cover;
  background-position:center;
  transform:scale(1.15);
  transition:transform .55s ease;
}
.location-panel:hover .location-bg{ transform:scale(1); }
.location-panel::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 55%);
  z-index:1;
  transition:background .3s ease;
}

.location-label{
  position:relative; z-index:2;
  color:#fff; font-weight:700; font-size:12px; letter-spacing:2px;
  writing-mode:vertical-rl;
  text-transform:uppercase;
  white-space:nowrap;
  transition:opacity .25s ease;
}
.location-panel:hover .location-label{ opacity:0; }

.location-detail{
  position:relative; z-index:2;
  color:#fff;
  opacity:0;
  transform:translateY(10px);
  transition:opacity .3s ease .1s, transform .3s ease .1s;
  white-space:nowrap;
  pointer-events:none;
}
.location-panel:hover .location-detail{ opacity:1; transform:translateY(0); pointer-events:auto; }
.loc-country{ font-size:11.5px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:#a9d8b7; margin-bottom:6px; }
.loc-city{ font-size:clamp(20px,2.6vw,30px); font-weight:800; margin-bottom:8px; }
.loc-address{ font-size:13px; color:#e6ece8; line-height:1.5; white-space:normal; max-width:260px; margin-bottom:16px; }
.loc-visit{
  display:inline-block;
  background:var(--green-mid);
  color:#fff;
  font-weight:700; font-size:12.5px;
  padding:11px 20px;
  border-radius:4px;
}
.loc-visit:hover{ background:var(--green); }

@media (max-width:900px){
  .locations-strip{ min-height:300px; }
  .location-panel:nth-child(n+5){ display:none; }
  .loc-address, .loc-visit{ display:none; } /* keep touch layout tidy — full detail shown on desktop hover */
}

/*  14. JOIN THE CLUB (kept as a light strip, folded into footer here)  */

/*  15. SUBSCRIBE  */

.subscribe {
    border: var(--paper-3) solid 1px;
    border-radius: 8px;
    padding: 0px 20px;
    margin-bottom: 40px;

    background-image: url('../images/banners/subscription.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    max-height: 320px;
}
.subscribe-input {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    border-radius: 4px;
}

.subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.subscribe-input:focus {
    background: transparent;
    color: #fff;
    border-color: var(--parrot-2);
    box-shadow: none;
    outline: none;
}
/*  15. FOOTER  */
.site-footer{ 
  background:var(--black); 
  color:#cfe3d5; padding:0px 20px 20px 20px; }
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1fr 1.1fr;
  gap:18px;
  padding-bottom:34px;
  border-bottom:1px solid rgba(255,255,255,0.12);
}
.footer-col h4{ color:#fff; font-size:16px; font-weight:700; margin-bottom:16px; }
.footer-col ul li{ margin-bottom:10px; }
.footer-col ul a{ font-size:13.5px; }
.footer-col ul a:hover{ text-decoration:none; color:#fff; }
.footer-addr{ font-size:13.5px; line-height:1.6; }
.footer-addr b{ color:#fff; display:block; margin-bottom:2px; }
.footer-store-cols{ display:flex; gap:20px; }

.join-form{ display:flex; flex-direction:column; gap:10px; margin-top:6px; }
.join-form input{
  height:42px; border:0; border-radius:4px; padding:0 12px;
  font-family:var(--f-body); font-size:13px;
}
.join-form button{
  height:42px; border:0; border-radius:4px;
  background:#fff; color:var(--green); font-weight:700; font-size:13px;
}
.footer-socials{ display:flex; gap:14px; margin-top:6px; }
.footer-socials svg{ width:20px; height:20px; }

.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:20px; font-size:12px; color:#9db9a7; flex-wrap:wrap; gap:8px;
}

@media (max-width:1000px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }



/* mobile menu button */
/* mobile menu is opened via the menu icon in header-actions —
   no separate top-left hamburger button needed */

/* ==================================================================
   16. MOBILE / MAIN MENU
   Built on Bootstrap's Offcanvas component — .offcanvas handles the
   fixed position, slide transform, backdrop and Esc-to-close; the
   rules below just apply our own width/colours/typography on top.
   ================================================================== */
.mobile-menu{ width:min(86vw, 360px); }
.mobile-menu-head{
  display:flex; justify-content:flex-end; padding:16px;
  border-bottom:0;
}
.mobile-menu-close{ background:none; border:0; color:var(--ink); }
.mobile-menu-close svg{ width:22px; height:22px; }
.mobile-menu ul{ padding:0 20px 30px; margin:0; }
.mobile-menu li{ border-bottom:1px solid var(--line); list-style:none; }
.mobile-menu > .offcanvas-body > ul > li.has-sub{ border-bottom:1px solid var(--line); }
.mobile-menu a{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 4px;
  font-size:16px; font-weight:700; color:var(--ink);
}
.mobile-menu a svg{ width:16px; height:16px; color:var(--muted); }
.mobile-menu a:hover{ color:var(--green); }

/* accordion sub-menus — driven by Bootstrap's Collapse component */
.submenu-toggle{
  width:100%;
  display:flex; align-items:center; justify-content:space-between;
  background:none; border:0;
  padding:16px 4px;
  font-family:inherit; font-size:16px; font-weight:700; color:var(--ink);
  text-align:left;
}
.submenu-toggle:hover{ color:var(--green); }
.submenu-toggle .chevron{ width:16px; height:16px; color:var(--muted); transition:transform .2s ease; flex-shrink:0; }
.submenu-toggle:not(.collapsed) .chevron{ transform:rotate(180deg); } /* Bootstrap removes .collapsed when open */
.submenu-list{ padding:0 0 6px 14px; margin:0; }
.submenu-list li{ border-bottom:0; }
.submenu-list a{
  display:block;
  padding:10px 4px;
  font-size:14px; font-weight:600; color:var(--muted);
}
.submenu-list a:hover{ color:var(--green); }





/*  17. CART DRAWER (also a Bootstrap Offcanvas instance)  */
.cart-drawer{ width:min(90vw, 420px); }

.cart-items{ flex:1; overflow-y:auto; padding:4px 20px; }
.cart-item{
  display:flex; gap:12px;
  padding:16px 0;
  border-bottom:1px solid var(--line);
  position:relative;
}
.cart-item-media{
  width:68px; height:68px; flex-shrink:0;
  border-radius:4px;
  display:flex; align-items:center; justify-content:center;
}
.cart-item-media svg{ width:58%; }
.cart-item-info{ flex:1; padding-right:18px; }
.cart-item-name{ font-size:13.5px; font-weight:600; line-height:1.3; margin-bottom:3px; }
.cart-item-meta{ font-size:12px; color:var(--muted); margin-bottom:10px; }
.cart-item-row{ display:flex; align-items:center; justify-content:space-between; }
.cart-item-price{ font-weight:700; font-size:13.5px; }
.qty-stepper{ display:flex; align-items:center; border:1px solid var(--line); border-radius:4px; }
.qty-btn{ width:26px; height:26px; border:0; background:none; font-size:16px; line-height:1; color:var(--ink); }
.qty-val{ min-width:22px; text-align:center; font-size:13px; font-weight:600; }
.cart-item-remove{
  position:absolute; top:14px; right:0;
  background:none; border:0; font-size:18px; line-height:1;
  color:var(--muted);
}
.cart-item-remove:hover{ color:var(--vault-red, #C1392B); }

.cart-summary{ padding:18px 20px 26px; border-top:1px solid var(--line); }
.cart-subtotal{ display:flex; justify-content:space-between; font-size:15px; font-weight:700; margin-bottom:14px; }
.btn-checkout{
  display:block; text-align:center;
  background:var(--green); color:#fff;
  font-weight:700; font-size:14px;
  padding:15px; border-radius:4px;
}
.btn-checkout:hover{ background:var(--green-mid); }

/*  18. COLLECTIONS SHOWCASE (tabbed carousel)  */
.collections-section{ padding:56px 0; background:#fff; }
.collection-tabs{ display:flex; gap:10px; margin-bottom:24px; }
.collection-tab{
  padding:11px 22px;
  border-radius:24px;
  border:1.5px solid var(--line);
  background:#fff;
  color:var(--muted);
  font-size:13px; font-weight:700;
}
.collection-tab.active{ background:var(--green); border-color:var(--green); color:#fff; }

.collection-panel{ display:none; }
.collection-panel.active{ display:block; }

.collection-card{
  flex:0 0 300px;
  scroll-snap-align:start;
  position:relative;
  aspect-ratio:4/5;
  border-radius:6px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:16px;
  color:#fff;
}
.collection-badge{
  align-self:flex-start;
  background:var(--green);
  font-size:11px; font-weight:700; letter-spacing:0.5px;
  text-transform:uppercase;
  padding:5px 10px;
  border-radius:2px;
  position:relative; z-index:2;
}
.collection-footer{ position:relative; z-index:2; }
.collection-footer h3{ font-size:22px; font-weight:800; margin-bottom:12px; }
.collection-shop{
  display:inline-block;
  background:#fff;
  color:var(--ink);
  font-size:12.5px; font-weight:700;
  padding:11px 20px;
  border-radius:24px;
}
.collection-card::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.05) 60%);
  z-index:1;
}




/* 19. WHY ALWAYS US — trust points + reviews carousel */
.why-us{ background:var(--parrot-2); color:#fff; padding: 0px 0 0 0; }
.why-us-head{ text-align:center; padding:0 24px 20px; }
.why-us-head h2{ font-size:clamp(24px,3.4vw,34px); font-weight:800; margin-bottom:8px; }
.why-us-head p{ color:#cfe3d5; font-size:14.5px; }

.why-us-grid{
  display:grid;
  background: var(--paper-3);
  grid-template-columns:repeat(4,1fr);
  gap:28px;
  border-top:1px solid rgba(255,255,255,0.18);
  padding: 26px 44px;
  color: var(--black);
}
.why-us-item{ 
      display: flex;
    align-items: center;
    gap: 12px;
  text-align:left; 
  padding:0 12px; }

.why-us-item h3{ 
    margin: 0;
    font-size: 16px;
    font-weight:700;
     text-transform:uppercase; 
     letter-spacing:0.3px; }
.why-us-item p{   
    margin: 2px 0 0;
    font-size: 13px;
  color: var(--black-dark); 
  /* line-height:1.55;  */
}

@media (max-width:900px){ .why-us-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .why-us-grid{ grid-template-columns:1fr; } }

.reviews-band{ background:#fff; padding:44px 0 56px; }
.reviews-summary{
  display:flex; align-items:center; gap:18px;
  margin-bottom:26px;
  flex-wrap:wrap;
}
.reviews-summary .big-label{ font-size:24px; font-weight:800; color:var(--ink); }
.stars-row{ display:flex; gap:3px; }
.stars-row svg{ width:20px; height:20px; }
.reviews-summary .meta{ font-size:13px; color:var(--muted); }
.reviews-summary .meta a{ color:var(--green); font-weight:700; }
.review-badge{
  display:inline-flex; align-items:center; gap:6px;
  border:1px solid var(--line);
  border-radius:20px;
  padding:6px 12px;
  font-size:12px; font-weight:700; color:var(--green);
}
.review-badge svg{ width:14px; height:14px; }

.review-card{
  flex:0 0 280px;
  scroll-snap-align:start;
  border:1px solid var(--line);
  border-radius:6px;
  padding:20px;
}
.review-card .stars-row{ margin-bottom:10px; }
.review-card .stars-row svg{ width:15px; height:15px; }
.review-verified{ display:inline-flex; align-items:center; gap:5px; font-size:11.5px; color:var(--muted); margin-bottom:10px; }
.review-verified svg{ width:12px; height:12px; color:var(--green); }
.review-title{ font-size:14px; font-weight:700; margin-bottom:6px; }
.review-text{ font-size:13px; color:var(--muted); line-height:1.55; margin-bottom:10px; }
.review-meta{ font-size:12px; color:#a3a89f; }

/* 20. ABOUT / STORY COPY  */
.about-section{ padding:60px 0 64px; background:#fff; }
.about-section .wrap{ max-width:1200px; }
.about-section h2{ font-size:clamp(22px,3vw,30px); font-weight:800; color:var(--ink); margin-bottom:6px; line-height:1.3; }
.about-section .about-sub{ font-size:14.5px; color:var(--muted); margin-bottom:22px; }
.about-section p{ font-size:14.5px; line-height:1.75; color:#3d453f; margin-bottom:16px; }
.about-section p:last-child{ margin-bottom:0; }
.about-section strong{ color:var(--ink); }


/* ==================================================================
   21. LISTING / CATEGORY PAGE
   ================================================================== */
.listing-section {  margin: 0 auto; padding: 32px 32px 32px; background-color: var(--paper);}
.listing-layout { display: flex; gap: 36px; align-items: flex-start; }

/* --- FILTER SIDEBAR --- */
.filter-sidebar {
  flex: 0 0 240px;
  border-right: 1px solid var(--line);
  padding-right: 24px;
}
.filter-item { border-bottom: 1px solid var(--line); }
.filter-toggle {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  background: none; border: 0;
  padding: 16px 2px;
  font-size: 15px; font-weight: 700; color: var(--ink);
  text-align: left;
}
.filter-toggle:hover { color: var(--green); }
.filter-toggle .chevron { width: 16px; height: 16px; color: var(--muted); transition: transform .2s ease; flex-shrink: 0; }
.filter-toggle:not(.collapsed) .chevron { transform: rotate(180deg); }
.filter-options { padding: 0 2px 16px; display: flex; flex-direction: column; gap: 10px; }
.filter-options label {
  display: flex; align-items: center; gap: 9px;
  font-size: 13.5px; color: var(--muted); cursor: pointer;
}
.filter-options input[type="checkbox"] {
  width: 15px; height: 15px; accent-color: var(--green); cursor: pointer;
}
.filter-options label:hover { color: var(--ink); }

@media (max-width: 900px) {
  .filter-sidebar { display: none; } /* Swap for an off-canvas trigger on mobile */
}

/* --- PRODUCT GRID --- */
.listing-main { flex: 1; min-width: 0; }
.listing-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; flex-wrap: wrap; gap: 10px;
}
.listing-head h2 { font-size: 22px; font-weight: 800; color: var(--green); margin: 0; }
.listing-count { font-size: 13px; color: var(--muted); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 460px) { .product-grid { grid-template-columns: 1fr; } }

.listing-card { position: relative; display: block; }
.listing-ribbon {
  position: absolute;
  top: 10px; left: -6px;
  z-index: 2;
  background: var(--vault-red);
  color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px 3px 8px;
  clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%);
}
.listing-media {
  aspect-ratio: 1/1;
  border-radius: 4px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  background: var(--paper);
}
/* .listing-media .shirt-icon { width: 52%; }
.listing-media.back-view .shirt-icon { width: 60%; } */
/* .back-label {
  position: absolute; top: 20%; left: 50%; transform: translateX(-50%);
  text-align: center; color: #fff;
  font-family: var(--f-body); font-weight: 800;
  text-transform: uppercase;
}
.back-label .name { display: block; font-size: 13px; letter-spacing: 1px; margin-bottom: 2px; }
.back-label .num { display: block; font-size: 30px; line-height: 1; } */

.listing-title {
  font-size: 14.5px; font-weight: 700; line-height: 1.35;
  margin: 0 0 6px;
  color: var(--ink);
}
.listing-card:hover .listing-title { color: var(--green); }
.listing-condition { font-size: 12.5px; color: var(--muted); margin: 0 0 8px; }

.listing-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.price-now { font-size: 16px; font-weight: 800; color: var(--ink); }
.price-sale { font-size: 16px; font-weight: 800; color: var(--black); }
.price-was { font-size: 15px; color: #a3a89f; text-decoration: line-through; width: 100%; }
.price-badge {
  background: var(--vault-red); color: #fff;
  font-size: 12px; font-weight: 500;
  padding: 2px 5px; border-radius: 3px;
}

/* --- PAGINATION ROW --- */
.listing-footer {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.listing-footer .results-note { font-size: 13px; color: var(--muted); }

.listing-pagination { display: flex; gap: 6px; margin: 0; padding: 0; list-style: none; }
.listing-pagination .page-link {
  min-width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  background: #fff;
}
.listing-pagination .page-link:hover { border-color: var(--green); color: var(--green); }
.listing-pagination li.active .page-link {
  background: var(--green); border-color: var(--green); color: #fff;
}
.listing-pagination li.disabled .page-link { color: #c7cdc9; pointer-events: none; }

.per-page {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted);
}
.per-page select {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 7px 30px 7px 12px;
  font-family: inherit; font-size: 13px; font-weight: 600; color: var(--ink);
  background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%235B6B62" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg>') no-repeat right 8px center;
  background-size: 14px;
  appearance: none;
  cursor: pointer;
}