/** Shopify CDN: Minification failed

Line 7:18 Unexpected "2026"
Line 454:0 Unexpected "="

**/
Sur-Ron Light Bee 2026 - Modern Design System & Base Tokens
   ========================================================================== */

:root {
  --color-background: #F5F6F8;
  --color-foreground: #0B0B0C;
  --color-subtext: #61666D;
  --color-accent-blue: #1E90FF;
  --color-accent-yellow: #FFD400;
  --radius-card: 32px;
  --radius-pill: 999px;
  --font-heading: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Base Body Styles */
body {
  background-color: #05080C;
  color: var(--color-foreground);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Remove gap between hero and marquee */
.shopify-section--hero,
#shopify-section-hero,
.shopify-section:has(#hero) {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.shopify-section--marquee,
#shopify-section-marquee,
.shopify-section:has(#marquee),
.marquee-section,
.marquee {
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

/* Footer Full-Width */
.footer,
.shopify-section--footer,
#shopify-section-footer,
.shopify-section:has(.footer),
.shopify-section-group-footer-group {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  grid-column: 1 / -1 !important;
}

/* Scroll Reveal Attribute [data-rv] */
[data-rv] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-rv].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Typography: Headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.heading-title,
.section-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-foreground);
  letter-spacing: -0.03em;
  line-height: 1.05;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Typography: Subtext */
.subtext,
p.subtext,
.section-subtitle {
  color: var(--color-subtext);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Component: Large Cards */
.card,
.card-large,
.feature-card {
  background: #FFFFFF;
  border-radius: var(--radius-card);
  border: 1px solid rgba(11, 11, 12, 0.06);
  box-shadow: 0 10px 30px -10px rgba(11, 11, 12, 0.05);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover,
.card-large:hover,
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(11, 11, 12, 0.1);
}

/* Component: Buttons & Pills */
button,
.btn,
.button,
.pill {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 0.85rem 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-primary,
.btn-order-now {
  background-color: var(--color-foreground);
  color: #FFFFFF;
}

.btn-primary:hover,
.btn-order-now:hover {
  background-color: var(--color-accent-blue);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 144, 255, 0.3);
}

.btn-accent-blue {
  background-color: var(--color-accent-blue);
  color: #FFFFFF;
}

.btn-accent-blue:hover {
  background-color: #1877d5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 144, 255, 0.35);
}

.btn-accent-yellow {
  background-color: var(--color-accent-yellow);
  color: #0B0B0C;
}

.btn-accent-yellow:hover {
  background-color: #e6bf00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 212, 0, 0.35);
}

/* Custom Brushstroke Underline (.stroke) */
.stroke {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  z-index: 1;
}

.stroke::after {
  content: "";
  position: absolute;
  left: -0.15em;
  right: -0.15em;
  bottom: 0.08em;
  height: 0.42em;
  background-color: var(--color-accent-blue);
  transform: skew(-14deg) rotate(-1deg);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.88;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.stroke:hover::after {
  transform: skew(-16deg) rotate(-1.5deg) scaleX(1.04);
  opacity: 1;
}

/* ==========================================================================
   Product Page Layout - Full-Width & Container Width
   ========================================================================== */
.product-page,
.main-product,
.shopify-section--main-product {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.product-page .container,
.main-product .container,
.product-page-container {
  max-width: 1320px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 6rem 24px 5rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Section Wrapper Overrides for Grid Framework */
.shopify-section--main-product,
.shopify-section:has(.main-product-section),
.shopify-section:has(.product-page),
.shopify-section:has(.main-product),
.section-main-product,
.main-product-section {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  grid-column: 1 / -1 !important;
  display: block !important;
  box-sizing: border-box !important;
}

/* Product template light background */
body.template-product {
  background-color: var(--color-background, #F5F6F8);
}

body.template-product .header-wrapper {
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 11, 12, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

body.template-product .header-wrapper .header__logo-brand,
body.template-product .header-wrapper .header__link,
body.template-product .header-wrapper .header__cart-link {
  color: #0B0B0C;
}

/* ==========================================================================
   Product Page Gallery Enhancements
   ========================================================================== */
/* Thumbnail gallery */
.product-media-thumbnail {
  width: 90px !important;
  height: 90px !important;
  object-fit: contain;
  border-radius: 12px;
  margin: 0 4px !important;
}

/* Main image container */
.product-media-container {
  min-height: 500px;
  max-height: 700px;
}

/* Gallery wrapper */
.product-media-gallery {
  padding: 0;
}

/* Active thumbnail border */
.product-media-thumbnail.active,
.product-media-thumbnail.is-active {
  border: 3px solid #1E90FF !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .product-media-thumbnail {
    width: 80px !important;
    height: 80px !important;
    margin: 0 3px !important;
  }
  
  .product-media-container {
    min-height: 350px;
    max-height: 500px;
  }

  .product-page .container,
  .main-product .container,
  .product-page-container {
    padding: 5rem 16px 3rem !important;
  }
}

/* ==========================================================================
   Product Title - Force Single Line
   ========================================================================== */
.product__title,
.product__title h1,
h1.product__title,
.product-title,
h1.product-title {
  white-space: nowrap !important;
  font-size: clamp(24px, 3.5vw, 38px) !important;
  line-height: 1.2 !important;
  width: 100% !important;
  display: block !important;
}

@media (max-width: 480px) {
  .product__title,
  .product__title h1,
  h1.product__title,
  .product-title,
  h1.product-title {
    font-size: clamp(18px, 4.8vw, 24px) !important;
  }
}

/* ==========================================================================
   Center and widen the product description
   ========================================================================== */
.product__info-container > .rte,
.product__info-container .product-desc,
.product-description-wrapper .product-desc,
.product__info-wrapper .product-desc {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  padding: 60px 40px !important;
  background: #F5F6F8;
  box-sizing: border-box !important;
}

/* Center all content inside the description */
.product__info-container .product-desc > *,
.product-description-wrapper .product-desc > * {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Make feature cards span full width */
.product-desc .pd-features {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  max-width: 1200px !important;
  margin: 40px auto !important;
}

/* Make tabs full width */
.product-desc .pd-tabs {
  max-width: 1200px !important;
  margin: 40px auto !important;
}

/* Make all sections full width */
.product-desc .pd-section,
.product-desc .pd-intro,
.product-desc .full-specs,
.product-desc .pd-warning {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-desc .pd-features {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .product-desc .pd-features {
    grid-template-columns: 1fr !important;
  }
  
  .product__info-container .product-desc,
  .product-description-wrapper .product-desc {
    padding: 40px 20px !important;
  }
}

/* ==========================================================================
   Hide variant/color name above product image
   ========================================================================== */
.product-gallery-badge,
.product-gallery-badge__color,
.product-gallery-badge__sub,
#ProductColorBadge,
.product__media-wrapper .variant-title,
.product__media-wrapper .color-name,
.product__media-wrapper h2.variant-name,
.product__media-wrapper .product-variant-name,
.product__media-container .variant-title,
.product__media-container .color-name,
.media-caption,
.variant-label,
.selected-variant-title {
  display: none !important;
}

/* ==========================================================================
   Hero Section - Mobile Responsiveness
   ========================================================================== */
@media (max-width: 768px) {
  .hero-image,
  .hero__image-container img {
    max-height: 250px !important;
    width: 90% !important;
    margin: 0 auto !important;
    display: block !important;
    border-radius: 16px !important;
    object-fit: contain !important;
  }
}

=======
/* ==========================================================================
   Sur-Ron Light Bee 2026 - Modern Design System & Base Tokens
   ========================================================================== */

:root {
  --color-background: #F5F6F8;
  --color-foreground: #0B0B0C;
  --color-subtext: #61666D;
  --color-accent-blue: #1E90FF;
  --color-accent-yellow: #FFD400;
  --radius-card: 32px;
  --radius-pill: 999px;
  --font-heading: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Base Body Styles */
body {
  background-color: #05080C;
  color: var(--color-foreground);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Remove gap between hero and marquee */
.shopify-section--hero,
#shopify-section-hero,
.shopify-section:has(#hero) {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.shopify-section--marquee,
#shopify-section-marquee,
.shopify-section:has(#marquee),
.marquee-section,
.marquee {
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

/* Footer Full-Width */
.footer,
.shopify-section--footer,
#shopify-section-footer,
.shopify-section:has(.footer),
.shopify-section-group-footer-group {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  grid-column: 1 / -1 !important;
}

/* Scroll Reveal Attribute [data-rv] */
[data-rv] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-rv].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Typography: Headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.heading-title,
.section-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-foreground);
  letter-spacing: -0.03em;
  line-height: 1.05;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Typography: Subtext */
.subtext,
p.subtext,
.section-subtitle {
  color: var(--color-subtext);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Component: Large Cards */
.card,
.card-large,
.feature-card {
  background: #FFFFFF;
  border-radius: var(--radius-card);
  border: 1px solid rgba(11, 11, 12, 0.06);
  box-shadow: 0 10px 30px -10px rgba(11, 11, 12, 0.05);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover,
.card-large:hover,
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(11, 11, 12, 0.1);
}

/* Component: Buttons & Pills */
button,
.btn,
.button,
.pill {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 0.85rem 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-primary,
.btn-order-now {
  background-color: var(--color-foreground);
  color: #FFFFFF;
}

.btn-primary:hover,
.btn-order-now:hover {
  background-color: var(--color-accent-blue);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 144, 255, 0.3);
}

.btn-accent-blue {
  background-color: var(--color-accent-blue);
  color: #FFFFFF;
}

.btn-accent-blue:hover {
  background-color: #1877d5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 144, 255, 0.35);
}

.btn-accent-yellow {
  background-color: var(--color-accent-yellow);
  color: #0B0B0C;
}

.btn-accent-yellow:hover {
  background-color: #e6bf00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 212, 0, 0.35);
}

/* Custom Brushstroke Underline (.stroke) */
.stroke {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  z-index: 1;
}

.stroke::after {
  content: "";
  position: absolute;
  left: -0.15em;
  right: -0.15em;
  bottom: 0.08em;
  height: 0.42em;
  background-color: var(--color-accent-blue);
  transform: skew(-14deg) rotate(-1deg);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.88;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.stroke:hover::after {
  transform: skew(-16deg) rotate(-1.5deg) scaleX(1.04);
  opacity: 1;
}

/* ==========================================================================
   Product Page Layout - Full-Width & Container Width
   ========================================================================== */
.product-page,
.main-product,
.shopify-section--main-product {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.product-page .container,
.main-product .container,
.product-page-container {
  max-width: 1320px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 6rem 24px 5rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Section Wrapper Overrides for Grid Framework */
.shopify-section--main-product,
.shopify-section:has(.main-product-section),
.shopify-section:has(.product-page),
.shopify-section:has(.main-product),
.section-main-product,
.main-product-section {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  grid-column: 1 / -1 !important;
  display: block !important;
  box-sizing: border-box !important;
}

/* Product template light background */
body.template-product {
  background-color: var(--color-background, #F5F6F8);
}

body.template-product .header-wrapper {
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 11, 12, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

body.template-product .header-wrapper .header__logo-brand,
body.template-product .header-wrapper .header__link,
body.template-product .header-wrapper .header__cart-link {
  color: #0B0B0C;
}

/* ==========================================================================
   Product Page Gallery Enhancements
   ========================================================================== */
/* Thumbnail gallery */
.product-media-thumbnail {
  width: 90px !important;
  height: 90px !important;
  object-fit: contain;
  border-radius: 12px;
  margin: 0 4px !important;
}

/* Main image container */
.product-media-container {
  min-height: 500px;
  max-height: 700px;
}

/* Gallery wrapper */
.product-media-gallery {
  padding: 0;
}

/* Active thumbnail border */
.product-media-thumbnail.active,
.product-media-thumbnail.is-active {
  border: 3px solid #1E90FF !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .product-media-thumbnail {
    width: 80px !important;
    height: 80px !important;
    margin: 0 3px !important;
  }
  
  .product-media-container {
    min-height: 350px;
    max-height: 500px;
  }

  .product-page .container,
  .main-product .container,
  .product-page-container {
    padding: 5rem 16px 3rem !important;
  }
}

/* ==========================================================================
   Product Title - Force Single Line
   ========================================================================== */
.product__title,
.product__title h1,
h1.product__title,
.product-title,
h1.product-title {
  white-space: nowrap !important;
  font-size: clamp(24px, 3.5vw, 38px) !important;
  line-height: 1.2 !important;
  width: 100% !important;
  display: block !important;
}

@media (max-width: 480px) {
  .product__title,
  .product__title h1,
  h1.product__title,
  .product-title,
  h1.product-title {
    font-size: clamp(18px, 4.8vw, 24px) !important;
  }
}

/* ==========================================================================
   Center and widen the product description
   ========================================================================== */
.product__info-container > .rte,
.product__info-container .product-desc,
.product-description-wrapper .product-desc,
.product__info-wrapper .product-desc {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  padding: 60px 40px !important;
  background: #F5F6F8;
  box-sizing: border-box !important;
}

/* Center all content inside the description */
.product__info-container .product-desc > *,
.product-description-wrapper .product-desc > * {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Make feature cards span full width */
.product-desc .pd-features {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  max-width: 1200px !important;
  margin: 40px auto !important;
}

/* Make tabs full width */
.product-desc .pd-tabs {
  max-width: 1200px !important;
  margin: 40px auto !important;
}

/* Make all sections full width */
.product-desc .pd-section,
.product-desc .pd-intro,
.product-desc .full-specs,
.product-desc .pd-warning {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-desc .pd-features {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .product-desc .pd-features {
    grid-template-columns: 1fr !important;
  }
  
  .product__info-container .product-desc,
  .product-description-wrapper .product-desc {
    padding: 40px 20px !important;
  }
}

/* ==========================================================================
   Hide variant/color name above product image
   ========================================================================== */
.product-gallery-badge,
.product-gallery-badge__color,
.product-gallery-badge__sub,
#ProductColorBadge,
.product__media-wrapper .variant-title,
.product__media-wrapper .color-name,
.product__media-wrapper h2.variant-name,
.product__media-wrapper .product-variant-name,
.product__media-container .variant-title,
.product__media-container .color-name,
.media-caption,
.variant-label,
.selected-variant-title {
  display: none !important;
}

/* ==========================================================================
   Hero Section - Mobile Responsiveness
   ========================================================================== */
@media (max-width: 768px) {
  .hero-image,
  .hero__image-container img {
    max-height: 250px !important;
    width: 90% !important;
    margin: 0 auto !important;
    display: block !important;
    border-radius: 16px !important;
    object-fit: contain !important;
  }

  .btn-order-now,
  .header__order-btn,
  .order-now-btn,
  .header__order-now-btn {
    color: #FFFFFF !important;
    background: #0B0B0C !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
  }
}
