/** Shopify CDN: Minification failed

Line 524:27 Expected ")" to end URL token

**/
/* Highway Hub Advanced Theme - V2 (Header static, footer border different) */

:root {
  --bg: #050608;
  --card: #101218;
  --accent: #00ff99;
  --accent-soft: rgba(0,255,153,0.18);
  --text: #e7ffef;
  --muted: #9fb9aa;
}

* { box-sizing:border-box; }
body {
  margin:0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  background: radial-gradient(circle at top, #102015 0, #050608 50%, #020307 100%);
  color: var(--text);
  min-height: 100vh;
}

a { color: var(--accent); text-decoration:none; }
a:hover { text-decoration:underline; }

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

/* Header (no neon animation) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(90deg, rgba(3,10,8,0.96), rgba(10,25,18,0.98));
  border-bottom: 1px solid rgba(0,255,160,0.18);
}
.header-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.site-title {
  font-weight:700;
  font-size:22px;
  letter-spacing:0.08em;
  text-transform:uppercase;
}
.site-nav a {
  margin-left:18px;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:0.14em;
  color:#f5fff9;
  font-weight:600;
  opacity:0.92;
  text-shadow:0 0 6px rgba(0,255,153,0.55);
}
.site-nav a:hover {
  color:#00ff99;
  opacity:1;
  text-shadow:0 0 10px rgba(0,255,153,0.9);
}

/* Shared neon border (middle content like hero, cards, etc.) */
.neon-border {
  border-radius: 14px;
  border: 1px solid rgba(0,255,160,0.25);
  box-shadow: 0 0 18px rgba(0,255,160,0.16), 0 0 40px rgba(0,255,200,0.08);
  position: relative;
  overflow:hidden;
}
.neon-border::before {
  content:"";
  position:absolute;
  inset:-2px;
  background: conic-gradient(
    from 180deg,
    rgba(0,255,160,0.0),
    rgba(0,255,160,0.6),
    rgba(0,255,250,0.0),
    rgba(200,255,200,0.4),
    rgba(0,255,160,0.0)
  );
  opacity:0.16;
  mix-blend-mode:screen;
  animation:borderSpin 10s linear infinite;
  pointer-events:none;
}
@keyframes borderSpin {
  to { transform: rotate(360deg); }
}

/* Footer special border (different animation than middle) */
.footer-neon {
  border-top: 1px solid rgba(0,255,153,0.35);
  box-shadow: 0 -6px 26px rgba(0,255,153,0.25);
  background: radial-gradient(circle at bottom, rgba(0,255,153,0.18), rgba(2,6,5,1));
  position:relative;
}
.footer-neon::before {
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-2px;
  height:2px;
  background: linear-gradient(90deg, transparent, rgba(0,255,153,0.9), transparent);
  animation:footerGlow 3s ease-in-out infinite;
}
@keyframes footerGlow {
  0%, 100% { opacity:0.25; transform:translateX(-10%); }
  50% { opacity:1; transform:translateX(10%); }
}

/* Hero */
.hero {
  margin: 20px auto 30px;
  padding: 80px 20px;
  text-align:center;
  /* Close-up weed bud / leaf background */
  background-image: url('https://i.imgur.com/GJ9bE9W.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-inner { position:relative; z-index:2; }
.hero h1 {
  margin: 0 0 12px;
  font-size: 40px;
  text-shadow: 0 0 22px rgba(0,255,153,0.8);
}
.hero p {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
}

/* Smoke overlay */
.smoke-bg {
  position:absolute;
  inset:0;
  background-image:url('https://i.imgur.com/5zE0Y7d.png');
  background-size:cover;
  opacity:0.18;
  animation:smokeDrift 18s linear infinite;
  mix-blend-mode:screen;
}
@keyframes smokeDrift {
  0% { transform:translate3d(-10px,10px,0) scale(1); opacity:0.12; }
  50% { transform:translate3d(20px,-20px,0) scale(1.05); opacity:0.22; }
  100% { transform:translate3d(-10px,10px,0) scale(1); opacity:0.12; }
}

/* Hologram button */
.holo-btn {
  display:inline-block;
  margin-top:22px;
  padding: 12px 30px;
  border-radius:999px;
  border:1px solid rgba(0,255,153,0.9);
  background: radial-gradient(circle at top left, rgba(0,255,153,0.65), rgba(0,20,10,0.95));
  color:#02140b;
  font-weight:600;
  font-size:14px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  box-shadow:
    0 0 18px rgba(0,255,153,0.8),
    0 0 34px rgba(0,255,220,0.5);
  transform: translateY(0);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.holo-btn:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow:
    0 0 26px rgba(0,255,180,0.9),
    0 0 46px rgba(0,255,230,0.6);
}

/* Featured products */
.featured-products {
  margin: 0 auto 40px;
  padding: 26px 18px 30px;
  background: linear-gradient(160deg, rgba(5,12,8,0.95), rgba(4,18,10,0.98));
}
.featured-products h2 {
  margin-top:4px;
  font-size:20px;
}
.products-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 18px;
}
.product-card {
  background: var(--card);
  padding: 14px;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.65);
  text-align: center;
}
.product-card img {
  width:100%;
  height:190px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:10px;
}
.product-card h3 {
  margin:8px 0 4px;
  font-size:15px;
}
.price {
  font-weight:700;
  color: var(--accent);
}

/* Product page */
.product-page {
  margin: 26px auto 40px;
  background: linear-gradient(160deg, rgba(6,14,10,0.96), rgba(5,22,13,0.98));
  padding: 22px 18px 30px;
}
.product-main {
  display:grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 26px;
}
.product-gallery img {
  width:100%;
  border-radius:14px;
  box-shadow:0 18px 40px rgba(0,0,0,0.7);
}
.product-info h1 {
  margin-top:0;
  margin-bottom:10px;
}
.product-info .price {
  font-size:20px;
  margin-bottom:14px;
}

/* Cart */
.cart {
  margin: 30px auto 40px;
  padding: 22px 18px 30px;
  background: linear-gradient(170deg, rgba(6,16,11,0.96), rgba(4,18,10,0.98));
}
.cart-list {
  list-style:none;
  padding:0;
  margin: 10px 0 16px;
}
.cart-list li {
  display:flex;
  justify-content:space-between;
  padding:6px 0;
  border-bottom:1px solid rgba(255,255,255,0.04);
}
.cart-total {
  font-weight:700;
  margin-top:10px;
}

/* Footer base */
.site-footer {
  margin: 30px 0 0;
  padding: 18px 0 26px;
  text-align:center;
  font-size:13px;
  color: var(--muted);
}

/* Floating weed leaves */
.leaf {
  position:fixed;
  width:46px;
  opacity:0.8;
  pointer-events:none;
  animation:leafFloat 12s linear infinite;
  filter: drop-shadow(0 0 8px rgba(0,255,170,0.7));
  z-index:5;
}
@keyframes leafFloat {
  0% { transform: translate3d(0,0,0) rotate(0deg); opacity:0; }
  10% { opacity:0.9; }
  50% { transform: translate3d(-20px,-120px,0) rotate(20deg); opacity:0.9; }
  100% { transform: translate3d(20px,-260px,0) rotate(-20deg); opacity:0; }
}

/* Responsive */
@media (max-width: 900px) {
  .header-inner { flex-direction:column; align-items:flex-start; }
  .product-main { grid-template-columns: 1fr; }
  .hero { padding: 60px 16px; }
}

/* Disable spinning border animation on featured-products container */
.featured-products.neon-border::before {
  animation: none;
  opacity: 0.10;
}

/* Highway Hub hero logo overlay (neon joint over bud background) */
.hero-logo {
  display:block;
  margin: 0 auto 18px auto;
  max-width: min(420px, 80vw);
  height:auto;
  filter: drop-shadow(0 0 18px rgba(0,255,153,0.85));
}

/* Hero text visibility enhancement */
.hero-copy {
  max-width: 520px;
  margin: 0 auto;
  padding: 16px 22px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 18px;
  backdrop-filter: blur(6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.75);
}
.hero-copy h1 {
  margin: 0 0 8px;
  font-size: 40px;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 0 0 14px rgba(0, 0, 0, 0.9);
}
.hero-copy p {
  margin: 0;
  font-size: 16px;
  color: #f5fff9;
}

/* Mobile tweak */
@media (max-width: 600px) {
  .hero-copy {
    padding: 14px 16px;
  }
  .hero-copy h1 {
    font-size: 30px;
  }
  .hero-copy p {
    font-size: 14px;
  }
}

/* Navigation dropdown for Shop */
.site-nav {
  display:flex;
  align-items:center;
  gap:18px;
}

.nav-item {
  position:relative;
}

.nav-link {
  cursor:pointer;
  color: var(--muted);
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:0.12em;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-dropdown {
  position:absolute;
  top: 140%;
  left: 0;
  min-width: 160px;
  padding:8px 0;
  background: rgba(3,10,8,0.97);
  border-radius:10px;
  border:1px solid rgba(0,255,160,0.25);
  box-shadow:0 18px 40px rgba(0,0,0,0.85);
  display:none;
  z-index:40;
}

.nav-dropdown a {
  display:block;
  padding:8px 14px;
  font-size:13px;
  color: var(--muted);
  text-transform:none;
  letter-spacing:0.04em;
}

.nav-dropdown a:hover {
  color: var(--accent);
  background:rgba(0,255,160,0.06);
}

.nav-shop:hover .nav-dropdown {
  display:block;
}

@media (max-width: 800px) {
  .site-nav {
    gap:12px;
    flex-wrap:wrap;
  }
}

/* ==== NAV DROPDOWN FOR SHOP ==== */
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-item {
  position: relative;
}

.nav-link {
  cursor: pointer;
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-link:hover {
  color: var(--accent);
}

/* Dropdown box under SHOP */
.nav-dropdown {
  position: absolute;
  top: 140%;
  left: 0;
  min-width: 170px;
  padding: 8px 0;
  background: rgba(3, 10, 8, 0.97);
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 160, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
  display: none;
  z-index: 40;
}

.nav-dropdown a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0.04em;
}

.nav-dropdown a:hover {
  color: var(--accent);
  background: rgba(0, 255, 160, 0.06);
}

/* Show dropdown on hover */
.nav-shop:hover .nav-dropdown {
  display: block;
}

/* Mobile behavior */
@media (max-width: 800px) {
  .site-nav {
    gap: 12px;
    flex-wrap: wrap;
  }
}

/* Collection hero & category cards on /collections/all */
.collection-hero {
  margin-bottom: 20px;
  text-align: center;
}
.collection-hero h1 {
  margin: 0 0 6px;
  font-size: 26px;
  color: #ffffff;
}
.collection-hero p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* Category cards row */
.category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.category-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,255,153,0.3);
  box-shadow: 0 18px 34px rgba(0,0,0,0.75);
  text-decoration: none;
}

.category-card-media {
  height: 120px;
  background-size: cover;
  background-position: center;
}

/* Individual category vibes */
.category-card--flower .category-card-media {
  background-image: url({{ 'hero_bud_hd.png' | asset_url }});
}

.category-card--accessories .category-card-media {
  background-image: linear-gradient(135deg, #1a4733, #0b1720);
}

.category-card--merch .category-card-media {
  background-image: linear-gradient(135deg, #2a1638, #081522);
}

.category-card-body {
  padding: 12px 14px 14px;
}

.category-card-body h2 {
  margin: 0 0 4px;
  font-size: 16px;
  color: #ffffff;
}

.category-card-body p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.category-card:hover {
  border-color: rgba(0,255,153,0.8);
  box-shadow: 0 24px 40px rgba(0,0,0,0.9);
  transform: translateY(-2px);
  transition: all 0.15s ease-out;
}

@media (max-width: 600px) {
  .collection-hero h1 {
    font-size: 22px;
  }
  .category-card-media {
    height: 110px;
  }
}

/* About section styling */
.about-section {
  margin-top: 48px;
  margin-bottom: 48px;
  background: radial-gradient(circle at top, rgba(0,255,153,0.08), transparent 55%);
  border-radius: 18px;
}
.about-section h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
}
.about-section p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Homepage Featured Products grid */
.featured-products {
  margin-top: 40px;
  margin-bottom: 56px;
}
.featured-title {
  margin: 0 0 16px;
  text-align: center;
  font-size: 22px;
}
.featured-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
}
.featured-card {
  background: rgba(5, 10, 8, 0.96);
  border-radius: 12px;
  padding: 8px 8px 10px;
  border: 1px solid rgba(0, 255, 153, 0.28);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.8);
  min-width: 200px;
  max-width: 220px;
  flex: 0 0 auto;
}
.featured-card img {
  width: 100%;
  height: 150px;
  border-radius: 10px;
  margin-bottom: 6px;
  display: block;
  object-fit: cover;
}
.featured-card h3 {
  margin: 4px 0 2px;
  font-size: 14px;
}
.featured-card .price {
  font-size: 13px;
}

/* Category card background images */
.category-card-media {
  background-size: cover;
  background-position: center;
  height: 180px;
  border-radius: 12px;
}

.category-card--flower .category-card-media {
  background-image: url('{{ "flower_cat.png" | asset_url }}');
}

.category-card--accessories .category-card-media {
  background-image: url('{{ "accessories_cat.png" | asset_url }}');
}

.category-card--merch .category-card-media {
  background-image: url('{{ "merch_cat.png" | asset_url }}');
}


.category-card-media {
  overflow: hidden;
}

.category-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px 14px 0 0;
}

.featured-products.wrap {
  max-width: 1100px;
}


/* PRODUCT GRID IMAGE FIX - HIGHWAY HUB */
.collection-card img,
.featured-card img,
.product-card img {
  height: 350px !important;
  width: 100% !important;
  object-fit: contain !important;
  background: #000 !important;
  padding: 10px !important;
  border-radius: 12px !important;
}

.collection-card,
.featured-card,
.product-card {
  min-height: 480px !important;
}


/* Horizontal Featured Scroll */
.featured-scroll-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 0;
}

.featured-scroll-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.scroll-card {
  min-width: 180px;
  background: rgba(5, 10, 8, 0.96);
  border-radius: 12px;
  padding: 10px 10px 12px;
  border: 1px solid rgba(0, 255, 153, 0.28);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.7);
}

.scroll-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 6px;
}

.featured-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.featured-scroll-container::-webkit-scrollbar-thumb {
  background: #00ff99;
  border-radius: 4px;
}

/* Accessories sub-category cards */
.subcat-grid {
  margin-top: 18px;
  margin-bottom: 22px;
}

.subcat-title {
  font-size: 18px;
  margin: 0 0 10px;
  text-align: center;
}

.subcat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.subcat-card {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  background: radial-gradient(circle at top, rgba(0,255,153,0.08), rgba(0,0,0,0.9));
  border: 1px solid rgba(0,255,153,0.35);
  box-shadow: 0 14px 30px rgba(0,0,0,0.85);
  text-decoration: none;
}

.subcat-card h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.subcat-card p {
  margin: 0;
  font-size: 13px;
  opacity: 0.9;
}

.subcat-card:hover {
  border-color: #00ff99;
  box-shadow: 0 18px 38px rgba(0,0,0,0.95);
}

/* Large accessory sub-category cards (image + text like home categories) */
.subcat-grid.neon-border {
  margin-top: 28px;
  margin-bottom: 32px;
}

.subcat-subtitle {
  margin: 0 0 14px;
  text-align: center;
  font-size: 13px;
  opacity: 0.9;
}

.subcat-cards-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.subcat-card-large {
  overflow: hidden;
  padding: 0;
  border-radius: 18px;
  background: radial-gradient(circle at top, rgba(0,255,153,0.06), #020605);
  border: 1px solid rgba(0,255,153,0.35);
  box-shadow: 0 20px 40px rgba(0,0,0,0.95);
}

.subcat-card-large .subcat-img {
  height: 170px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.subcat-card-large .subcat-info {
  padding: 10px 14px 12px;
  background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(0,25,15,0.98));
  border-top: 1px solid rgba(0,255,153,0.25);
}

.subcat-card-large h3 {
  margin: 0 0 3px;
  font-size: 15px;
}

.subcat-card-large p {
  margin: 0;
  font-size: 13px;
  opacity: 0.9;
}

.subcat-card-large:hover {
  border-color: #00ff99;
  box-shadow: 0 26px 54px rgba(0,0,0,1);
  transform: translateY(-2px);
}


/* Product page enhancements */
.product-page {
  margin-top: 20px;
}
.product-main {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 2fr);
  gap: 24px;
}
@media (max-width: 768px){
  .product-main {
    grid-template-columns: 1fr;
  }
}
.product-info h1 {
  margin-top: 0;
}
.product-description-block h2 {
  font-size: 18px;
  margin: 12px 0 6px;
}
.social-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 8px;
}
.low-stock-badge {
  color: #ff7676;
  font-weight: 600;
  margin: 4px 0 6px;
}
.secure-checkout {
  opacity: 0.9;
}
.live-viewers {
  color: #00ff99;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  margin-top: 10px;
  opacity: 0.95;
}
.trust-badges span {
  background: rgba(0,0,0,0.7);
  border-radius: 999px;
  padding: 4px 8px;
  border: 1px solid rgba(0,255,153,0.4);
}
.reviews-block {
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.reviews-block h2 {
  font-size: 16px;
  margin-bottom: 4px;
}
.reviews-hint {
  font-size: 13px;
  opacity: 0.85;
}

/* Sticky ATC */
.sticky-atc-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #020605, #071b14);
  border-top: 1px solid rgba(0,255,153,0.4);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.9);
  padding: 8px 12px;
  z-index: 8000;
  display: none;
}
@media (max-width: 768px){
  .sticky-atc-bar {
    display: block;
  }
}
.sticky-atc-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.sticky-atc-info {
  display: flex;
  flex-direction: column;
  max-width: 60%;
}
.sticky-atc-title {
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-atc-price {
  font-size: 13px;
  opacity: 0.9;
}
.sticky-atc-btn {
  background: #00ff99;
  color: #000;
  border-radius: 999px;
  border: none;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
}

/* Why shop section */
.why-shop {
  margin-top: 24px;
  margin-bottom: 28px;
}
.why-shop h2 {
  text-align: center;
  margin-bottom: 12px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.why-item {
  padding: 12px 14px;
  border-radius: 14px;
  background: radial-gradient(circle at top, rgba(0,255,153,0.08), #020605);
  border: 1px solid rgba(0,255,153,0.4);
  box-shadow: 0 16px 34px rgba(0,0,0,0.9);
}
.why-item h3 {
  margin: 0 0 4px;
  font-size: 15px;
}
.why-item p {
  margin: 0;
  font-size: 13px;
}

/* Cart progress + trust */
.cart-progress {
  margin: 10px 0 16px;
}
.free-ship-msg {
  font-size: 13px;
  margin-bottom: 6px;
}
.free-ship-msg.success {
  color: #00ff99;
}
.free-ship-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.free-ship-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ff99, #47ffd1);
  width: 0;
}
.cart-trust-row {
  margin: 12px 0;
}
.cart .trust-badges {
  justify-content: flex-start;
}
