/** Shopify CDN: Minification failed

Line 1877:26 Unexpected "-->"
Line 1941:0 Unexpected "<"

**/
/**
 * CHELI HUNTING GEAR - Product Page CSS
 * ======================================
 * Add this file to Shopify:
 * Online Store > Themes > Edit code > Assets > Add new asset > "cheli-product.css"
 */

/* ===== CHELI BRAND VARIABLES ===== */
:root {
  --cheli-burgundy: #6b1a1a;
  --cheli-burgundy-hover: #7d2020;
  --cheli-tan: #c9b896;
  --cheli-dark: #0a0a0a;
  --cheli-charcoal: #1a1a1a;
  --cheli-charcoal-light: #2b2b2b;
  --cheli-olive: #4a5840;
  --cheli-cream: #f4f1e8;
  --cheli-beige: #e8e5df;
  --cheli-white: #ffffff;
  --cheli-text-muted: #888888;
  --cheli-border: #333333;
}

/* ===== RESET & BASE ===== */
.cheli-product-section-wrapper,
.cheli-product-section-wrapper * {
  box-sizing: border-box;
}

.cheli-product-section-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
}

/* Global mobile overflow prevention */
@media (max-width: 968px) {
  .cheli-product-section-wrapper,
  .cheli-product-section,
  .cheli-gallery,
  .cheli-product-info,
  .cheli-reviews-section,
  .cheli-features-section,
  .cheli-layering-section,
  .cheli-faq-section,
  .cheli-ugc-section {
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  html, body {
    overflow-x: hidden;
  }
}

/* ===== MAIN PRODUCT SECTION ===== */
.cheli-product-section {
  display: grid;
  grid-template-columns: minmax(300px, 600px) 1fr;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 24px 48px;
  align-items: start;
}

@media (max-width: 968px) {
  .cheli-product-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 16px 32px;
    max-width: 100%;
    overflow-x: hidden;
  }
}

/* ===== GALLERY ===== */
.cheli-gallery {
  position: sticky;
  top: 20px;
  align-self: start;
  max-width: 600px;
  margin: 0;
  padding: 0;
}

.cheli-gallery:first-child {
  margin-top: 0;
  padding-top: 0;
}

.cheli-desktop-gallery {
  display: block;
}

@media (max-width: 968px) {
  .cheli-gallery {
    position: relative;
    top: 0;
    max-width: 100%;
    width: 100%;
    order: -1 !important;
  }
  
  .cheli-desktop-gallery {
    display: none;
  }
}

.cheli-main-image {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1 / 1;
  background: var(--cheli-beige);
  border-radius: 8px;
  overflow: hidden;
  margin: 0 0 12px 0;
  padding: 0;
}

.cheli-main-image img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  display: block;
}

@media (max-width: 968px) {
  .cheli-main-image {
    max-width: 100%;
    aspect-ratio: 1 / 1;
    max-height: none;
  }
  
  .cheli-main-image img {
    max-height: none;
    height: 100%;
  }
}

/* Mobile swipeable gallery */
.cheli-mobile-gallery {
  display: none;
}

@media (max-width: 968px) {
  .cheli-desktop-gallery {
    display: none;
  }
  
  .cheli-mobile-gallery {
    display: block;
    width: 100%;
    overflow: hidden;
  }
  
  .cheli-mobile-gallery-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 0;
  }
  
  .cheli-mobile-gallery-track::-webkit-scrollbar {
    display: none;
  }
  
  .cheli-mobile-gallery-slide {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    aspect-ratio: 1 / 1;
  }
  
  .cheli-mobile-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .cheli-mobile-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
  }
  
  .cheli-mobile-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cheli-beige);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s;
  }
  
  .cheli-mobile-gallery-dot.active {
    background: var(--cheli-burgundy);
  }
}

.cheli-thumbnail-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 968px) {
  .cheli-thumbnail-row {
    gap: 6px;
    justify-content: flex-start;
  }
}

.cheli-thumbnail {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
  background: none;
  padding: 0;
}

@media (max-width: 968px) {
  .cheli-thumbnail {
    width: 56px;
    height: 56px;
  }
}

.cheli-thumbnail:hover {
  border-color: var(--cheli-tan);
}

.cheli-thumbnail.active {
  border-color: var(--cheli-burgundy);
}

.cheli-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== SEASON & USE SECTION ===== */
.cheli-season-use-section {
  background: var(--cheli-cream);
  border-radius: 8px;
  padding: 20px;
  margin-top: 16px;
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 600px) {
  .cheli-season-use-section {
    padding: 16px;
  }
}

.cheli-season-row {
  margin-bottom: 16px;
}

.cheli-use-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 480px) {
  .cheli-use-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.cheli-use-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cheli-block-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cheli-text-muted);
  margin-bottom: 8px;
}

/* Season Pills */
.cheli-season-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .cheli-season-pills {
    gap: 4px;
  }
}

.cheli-season-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s;
}

@media (max-width: 480px) {
  .cheli-season-pill {
    padding: 6px 10px;
    font-size: 11px;
    gap: 4px;
  }
  
  .cheli-season-pill__temp {
    display: none;
  }
}

.cheli-season-pill--active {
  background: var(--cheli-dark);
  color: var(--cheli-white);
}

.cheli-season-pill--inactive {
  background: var(--cheli-beige);
  color: var(--cheli-text-muted);
}

.cheli-season-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.cheli-season-pill--early .cheli-season-pill__dot {
  background: #7cb342;
}

.cheli-season-pill--mid .cheli-season-pill__dot {
  background: #ff9800;
}

.cheli-season-pill--late .cheli-season-pill__dot {
  background: #2196f3;
}

.cheli-season-pill__temp {
  font-size: 10px;
  opacity: 0.7;
  font-weight: 500;
}

/* Hunt Tags */
.cheli-hunt-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.cheli-hunt-tag {
  padding: 6px 10px;
  background: var(--cheli-white);
  border: 1px solid var(--cheli-beige);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--cheli-dark);
}

/* Temperature Range Bar */
.cheli-temp-range {
  padding-top: 12px;
  border-top: 1px solid var(--cheli-beige);
}

.cheli-temp-range-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cheli-dark);
  margin-bottom: 8px;
}

.cheli-temp-range-bar {
  height: 12px;
  background: #e8e5df;
  border-radius: 6px;
  position: relative;
  overflow: visible;
}

.cheli-temp-range-fill {
  position: absolute;
  top: 0;
  left: var(--temp-left, 40%);
  width: var(--temp-width, 30%);
  height: 100%;
  background: linear-gradient(90deg, #4a5840 0%, #6b1a1a 100%);
  border-radius: 6px;
  min-width: 30px;
}

.cheli-temp-range-markers {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 10px;
  color: var(--cheli-text-muted);
  font-weight: 500;
}

/* ===== PRODUCT INFO ===== */
.cheli-product-info {
  padding: 0;
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 968px) {
  .cheli-product-info {
    width: 100%;
    order: 1;
  }
}

/* Trust Row */
.cheli-trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 12px 0;
  max-width: 100%;
}

@media (max-width: 600px) {
  .cheli-trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .cheli-in-stock-badge {
    margin-left: 0 !important;
  }
}

.cheli-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--cheli-dark);
}

/* Klaviyo star rating widget styling */
.cheli-rating-badge .klaviyo-star-rating-widget {
  display: inline-flex;
  align-items: center;
}

.cheli-in-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cheli-olive);
  margin-left: auto;
  white-space: nowrap;
}

.cheli-stock-dot {
  width: 8px;
  height: 8px;
  background: var(--cheli-olive);
  border-radius: 50%;
  animation: cheli-pulse 2s infinite;
}

@keyframes cheli-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.cheli-out-of-stock-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--cheli-burgundy);
}

/* Technology Badge */
.cheli-tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cheli-dark);
  color: var(--cheli-tan);
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.cheli-tech-badge svg {
  width: 14px;
  height: 14px;
}

/* Title & Tagline */
.cheli-product-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--cheli-dark);
}

@media (max-width: 768px) {
  .cheli-product-title {
    font-size: 24px;
  }
}

.cheli-product-tagline {
  font-size: 16px;
  color: var(--cheli-text-muted);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .cheli-product-tagline {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

/* Price */
.cheli-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.cheli-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--cheli-dark);
}

@media (max-width: 768px) {
  .cheli-price {
    font-size: 24px;
  }
}

.cheli-compare-price {
  font-size: 18px;
  color: var(--cheli-text-muted);
  text-decoration: line-through;
}

.cheli-price-note {
  font-size: 13px;
  color: var(--cheli-olive);
  font-weight: 600;
}

/* Value Props */
.cheli-value-props {
  background: var(--cheli-cream);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 768px) {
  .cheli-value-props {
    padding: 16px;
    margin-bottom: 20px;
  }
}

.cheli-value-props-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cheli-text-muted);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .cheli-value-props-title {
    font-size: 10px;
    margin-bottom: 12px;
    letter-spacing: 1px;
  }
}

.cheli-value-props-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .cheli-value-props-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.cheli-value-prop {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.cheli-value-prop > div {
  min-width: 0;
  overflow: hidden;
}

.cheli-value-prop-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--cheli-burgundy);
}

.cheli-value-prop-icon svg {
  width: 100%;
  height: 100%;
}

.cheli-value-prop strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--cheli-dark);
  margin-bottom: 2px;
}

.cheli-value-prop span {
  display: block;
  font-size: 13px;
  color: var(--cheli-text-muted);
}

/* Variant Selectors */
.cheli-variant-section {
  margin-bottom: 20px;
}

.cheli-variant-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--cheli-dark);
}

.cheli-variant-label span {
  font-weight: 700;
}

.cheli-size-guide-link {
  float: right;
  font-size: 13px;
  color: var(--cheli-burgundy);
  text-decoration: underline;
  font-weight: 500;
}

/* Color Options */
.cheli-color-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cheli-color-option {
  cursor: pointer;
}

.cheli-color-option input {
  display: none;
}

.cheli-color-swatch {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.cheli-color-option input:checked + .cheli-color-swatch,
.cheli-color-option--selected .cheli-color-swatch {
  border-color: var(--cheli-burgundy);
}

.cheli-color-swatch:hover {
  border-color: var(--cheli-tan);
}

.cheli-color-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Size Options */
.cheli-size-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cheli-size-option {
  cursor: pointer;
}

.cheli-size-option input {
  display: none;
}

.cheli-size-btn {
  min-width: 52px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cheli-cream);
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--cheli-dark);
  transition: all 0.2s;
  padding: 0 16px;
}

.cheli-size-option input:checked + .cheli-size-btn,
.cheli-size-option--selected .cheli-size-btn {
  background: var(--cheli-dark);
  color: var(--cheli-white);
}

.cheli-size-btn:hover {
  border-color: var(--cheli-tan);
}

.cheli-size-option--unavailable .cheli-size-btn {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Add to Cart */
.cheli-add-to-cart-section {
  margin-bottom: 24px;
}

.cheli-quantity-row {
  margin-bottom: 12px;
}

.cheli-quantity-selector {
  display: inline-flex;
  align-items: center;
  background: var(--cheli-cream);
  border-radius: 8px;
  overflow: hidden;
}

.cheli-qty-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--cheli-dark);
  cursor: pointer;
  transition: background 0.2s;
}

.cheli-qty-btn:hover {
  background: var(--cheli-beige);
}

.cheli-qty-input {
  width: 48px;
  height: 44px;
  text-align: center;
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--cheli-dark);
  -moz-appearance: textfield;
}

.cheli-qty-input::-webkit-outer-spin-button,
.cheli-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cheli-add-to-cart-btn {
  width: 100%;
  height: 56px;
  background: var(--cheli-burgundy);
  color: var(--cheli-white);
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.cheli-add-to-cart-btn:hover:not(:disabled) {
  background: var(--cheli-burgundy-hover);
}

.cheli-add-to-cart-btn:active:not(:disabled) {
  transform: scale(0.98);
}

.cheli-add-to-cart-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cheli-btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cheli-spinner {
  width: 20px;
  height: 20px;
  animation: cheli-spin 1s linear infinite;
}

@keyframes cheli-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Trust Signals */
.cheli-trust-signals {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--cheli-beige);
  border-bottom: 1px solid var(--cheli-beige);
  margin-bottom: 24px;
}

.cheli-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cheli-text-muted);
}

.cheli-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--cheli-burgundy);
}

@media (max-width: 600px) {
  .cheli-trust-signals {
    flex-direction: column;
    gap: 12px;
  }
}

/* Guarantee Banner */
.cheli-guarantee-banner {
  background: var(--cheli-cream);
  border-left: 4px solid var(--cheli-burgundy);
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 24px;
}

.cheli-guarantee-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.cheli-guarantee-icon {
  width: 28px;
  height: 28px;
  color: var(--cheli-burgundy);
}

.cheli-guarantee-title {
  font-weight: 800;
  font-size: 15px;
  color: var(--cheli-dark);
}

.cheli-guarantee-text {
  font-size: 13px;
  color: var(--cheli-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Accordion */
.cheli-accordion {
  border-top: 1px solid var(--cheli-beige);
  max-width: 100%;
}

.cheli-accordion-item {
  border-bottom: 1px solid var(--cheli-beige);
}

.cheli-accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--cheli-dark);
  cursor: pointer;
  text-align: left;
  gap: 12px;
}

@media (max-width: 600px) {
  .cheli-accordion-header {
    font-size: 14px;
    padding: 14px 0;
  }
}

.cheli-accordion-header svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--cheli-burgundy);
  transition: transform 0.3s;
}

.cheli-accordion-header[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.cheli-accordion-content {
  display: none;
}

.cheli-accordion-inner {
  padding-bottom: 20px;
  color: var(--cheli-text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Rich text content from metafields */
.cheli-accordion-inner.cheli-rte p {
  margin: 0 0 12px;
}

.cheli-accordion-inner.cheli-rte p:last-child {
  margin-bottom: 0;
}

.cheli-accordion-inner.cheli-rte strong {
  color: var(--cheli-dark);
  font-weight: 700;
}

.cheli-accordion-inner.cheli-rte h3 {
  color: var(--cheli-dark);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Size chart CSS grid */
.cheli-size-chart {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--cheli-beige);
}

.cheli-size-chart__header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--cheli-dark);
  color: var(--cheli-white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
}

.cheli-size-chart__header span {
  padding: 12px 16px;
  text-align: center;
}

.cheli-size-chart__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--cheli-beige);
}

.cheli-size-chart__row:last-child {
  border-bottom: none;
}

.cheli-size-chart__row:nth-child(odd) {
  background: var(--cheli-white);
}

.cheli-size-chart__row:nth-child(even) {
  background: var(--cheli-cream);
}

.cheli-size-chart__row span {
  padding: 12px 16px;
  text-align: center;
  color: var(--cheli-dark);
  font-size: 14px;
}

/* Table styling (fallback) */
.cheli-accordion-inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: 14px;
}

.cheli-accordion-inner table th {
  background: var(--cheli-dark);
  color: var(--cheli-white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  text-align: center;
}

.cheli-accordion-inner table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid var(--cheli-beige);
  color: var(--cheli-dark);
}

.cheli-accordion-inner table tr:nth-child(even) td {
  background: var(--cheli-cream);
}

.cheli-accordion-inner table tr:last-child td {
  border-bottom: none;
}

.cheli-accordion-inner ul {
  margin: 12px 0 0;
  padding-left: 0;
  list-style: none;
}

.cheli-accordion-inner li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
}

.cheli-accordion-inner li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cheli-burgundy);
}

/* ===== VIDEO SECTION ===== */
.cheli-video-section {
  background: var(--cheli-dark);
  padding: 80px 24px;
}

@media (max-width: 768px) {
  .cheli-video-section {
    padding: 48px 16px;
  }
}

.cheli-video-container {
  max-width: 1000px;
  margin: 0 auto;
}

.cheli-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--cheli-charcoal);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.cheli-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.cheli-video-caption {
  text-align: center;
  margin-top: 20px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.cheli-video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cheli-video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.cheli-video-placeholder:hover img {
  opacity: 0.5;
}

.cheli-play-button {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--cheli-burgundy);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
}

.cheli-play-button:hover {
  transform: scale(1.1);
  background: var(--cheli-burgundy-hover);
}

.cheli-play-button svg {
  width: 32px;
  height: 32px;
  color: var(--cheli-white);
  margin-left: 4px;
}

.cheli-video-caption {
  text-align: center;
  margin-top: 20px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

/* ===== SECTION HEADERS ===== */
.cheli-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cheli-section-header {
  text-align: center;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .cheli-section-header {
    margin-bottom: 32px;
  }
}

.cheli-section-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--cheli-white);
}

@media (max-width: 768px) {
  .cheli-section-title {
    font-size: 24px;
  }
}

.cheli-section-title--dark {
  color: var(--cheli-dark);
}

.cheli-section-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
  .cheli-section-subtitle {
    font-size: 14px;
  }
}

.cheli-section-subtitle--dark {
  color: var(--cheli-text-muted);
}

/* ===== REVIEWS SECTION ===== */
.cheli-reviews-section {
  background: var(--cheli-charcoal);
  padding: 80px 24px;
}

@media (max-width: 768px) {
  .cheli-reviews-section {
    padding: 48px 16px;
  }
}

.cheli-reviews-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Klaviyo Widget Base */
#klaviyo-reviews-all {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* Make all stars tan/gold */
.cheli-reviews-section svg {
  color: #c9b896 !important;
}

.cheli-reviews-section svg path[fill] {
  fill: #c9b896 !important;
}

/* All buttons burgundy */
.cheli-reviews-section button {
  background-color: #6b1a1a !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 12px 24px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
}

.cheli-reviews-section button:hover {
  background-color: #7d2020 !important;
}

/* White text for main review section (dark bg) */
.cheli-reviews-section,
.cheli-reviews-section h2,
.cheli-reviews-section h3,
.cheli-reviews-section p,
.cheli-reviews-section span,
.cheli-reviews-section label {
  color: #ffffff;
}

/* Individual review items - white cards */
.cheli-reviews-section [data-testid="review"],
.cheli-reviews-section article {
  background: #ffffff !important;
  border-radius: 8px !important;
  padding: 24px !important;
  margin-bottom: 16px !important;
  color: #0a0a0a !important;
}

/* Text inside review cards */
.cheli-reviews-section [data-testid="review"] *,
.cheli-reviews-section article * {
  color: #0a0a0a !important;
}

/* Fix star colors inside cards */
.cheli-reviews-section [data-testid="review"] svg,
.cheli-reviews-section article svg {
  color: #c9b896 !important;
}

/* Input fields */
.cheli-reviews-section input,
.cheli-reviews-section textarea,
.cheli-reviews-section select {
  background: #ffffff !important;
  border: 2px solid #e8e5df !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  color: #0a0a0a !important;
}

.cheli-reviews-section input:focus,
.cheli-reviews-section textarea:focus {
  border-color: #6b1a1a !important;
  outline: none !important;
}

/* ===== UGC SECTION ===== */
.cheli-ugc-section {
  background: var(--cheli-cream);
  padding: 80px 24px;
}

@media (max-width: 768px) {
  .cheli-ugc-section {
    padding: 48px 16px;
  }
}

.cheli-ugc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .cheli-ugc-grid {
    grid-template-columns: 1fr;
  }
}

.cheli-ugc-card {
  background: var(--cheli-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cheli-ugc-video-wrapper {
  position: relative;
  padding-bottom: 177.78%;
  height: 0;
  overflow: hidden;
  background: var(--cheli-charcoal);
}

.cheli-ugc-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.cheli-ugc-video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cheli-ugc-video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.cheli-ugc-play-btn {
  position: absolute;
  width: 56px;
  height: 56px;
  background: rgba(107, 26, 26, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cheli-ugc-play-btn svg {
  width: 24px;
  height: 24px;
  color: var(--cheli-white);
  margin-left: 2px;
}

.cheli-ugc-info {
  padding: 16px;
}

.cheli-ugc-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--cheli-dark);
  margin-bottom: 4px;
}

.cheli-ugc-location {
  font-size: 13px;
  color: var(--cheli-text-muted);
}

/* ===== FEATURES SECTION ===== */
.cheli-features-section {
  padding: 80px 24px;
  background: var(--cheli-cream);
}

@media (max-width: 768px) {
  .cheli-features-section {
    padding: 48px 16px;
  }
}

.cheli-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 968px) {
  .cheli-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.cheli-feature-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--cheli-white);
  border-radius: 8px;
}

@media (max-width: 768px) {
  .cheli-feature-card {
    padding: 24px 20px;
  }
}

.cheli-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--cheli-burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.cheli-feature-icon svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
  stroke: #ffffff !important;
  fill: none;
}

.cheli-feature-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--cheli-dark);
}

.cheli-feature-desc {
  color: var(--cheli-text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Specs Bar */
.cheli-specs-bar {
  max-width: 1000px;
  margin: 48px auto 0;
  background: var(--cheli-white);
  border-radius: 8px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

@media (max-width: 600px) {
  .cheli-specs-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px;
    margin-top: 32px;
  }
}

.cheli-spec-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--cheli-dark);
}

@media (max-width: 600px) {
  .cheli-spec-value {
    font-size: 22px;
  }
}

.cheli-spec-label {
  font-size: 12px;
  color: var(--cheli-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== LAYERING SECTION ===== */
.cheli-layering-section {
  background: var(--cheli-white);
  padding: 80px 24px;
}

@media (max-width: 768px) {
  .cheli-layering-section {
    padding: 48px 16px;
  }
}

.cheli-layering-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cheli-layering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

@media (max-width: 968px) {
  .cheli-layering-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .cheli-layering-info {
    text-align: center;
  }
  
  .cheli-layering-info h3 {
    font-size: 20px;
  }
  
  .cheli-layering-info p {
    font-size: 14px;
  }
}

.cheli-layering-diagram {
  background: var(--cheli-cream);
  border-radius: 12px;
  padding: 32px;
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 600px) {
  .cheli-layering-diagram {
    padding: 16px;
  }
}

.cheli-layer-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--cheli-white);
  border-radius: 8px;
  margin-bottom: 12px;
  border-left: 4px solid var(--cheli-beige);
  transition: all 0.2s;
  max-width: 100%;
}

@media (max-width: 600px) {
  .cheli-layer-item {
    padding: 12px;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .cheli-layer-item__temp {
    width: 100%;
    margin-top: 8px;
  }
}

.cheli-layer-item:last-child {
  margin-bottom: 0;
}

.cheli-layer-item--active {
  border-left-color: var(--cheli-burgundy);
  box-shadow: 0 4px 12px rgba(107, 26, 26, 0.15);
}

.cheli-layer-item__number {
  width: 32px;
  height: 32px;
  background: var(--cheli-beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--cheli-text-muted);
  flex-shrink: 0;
}

.cheli-layer-item--active .cheli-layer-item__number {
  background: var(--cheli-burgundy);
  color: var(--cheli-white);
}

.cheli-layer-item__content {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.cheli-layer-item__name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
  color: var(--cheli-dark);
}

@media (max-width: 600px) {
  .cheli-layer-item__name {
    font-size: 13px;
  }
}

.cheli-layer-item__desc {
  font-size: 13px;
  color: var(--cheli-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 600px) {
  .cheli-layer-item__desc {
    font-size: 11px;
    white-space: normal;
  }
}

.cheli-layer-item__temp {
  font-size: 12px;
  font-weight: 600;
  color: var(--cheli-olive);
  background: rgba(74, 88, 64, 0.1);
  padding: 4px 10px;
  border-radius: 50px;
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .cheli-layer-item__temp {
    font-size: 10px;
    padding: 3px 8px;
  }
}

.cheli-layering-info h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--cheli-dark);
}

.cheli-layering-info p {
  color: var(--cheli-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.cheli-layering-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cheli-dark);
  color: var(--cheli-white);
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background 0.2s;
}

.cheli-layering-cta:hover {
  background: var(--cheli-charcoal-light);
}

.cheli-layering-cta svg {
  width: 16px;
  height: 16px;
}

/* ===== FAQ SECTION ===== */
.cheli-faq-section {
  padding: 80px 24px;
  background: var(--cheli-white);
}

@media (max-width: 768px) {
  .cheli-faq-section {
    padding: 48px 16px;
  }
}

.cheli-faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

/* ===== STICKY MOBILE CTA ===== */
.cheli-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--cheli-white);
  border-top: 1px solid var(--cheli-beige);
  padding: 12px 16px;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

@media (max-width: 968px) {
  .cheli-sticky-cta {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .cheli-sticky-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--cheli-dark);
    white-space: nowrap;
  }

  .cheli-sticky-btn {
    flex: 1;
    height: 48px;
  }

  .cheli-product-section {
    padding-bottom: 100px;
  }
  
  /* Add bottom padding to account for sticky CTA */
  .cheli-faq-section:last-of-type,
  .cheli-layering-section:last-of-type {
    padding-bottom: 120px;
  }
}

<!-- Gallery Arrow Styles -->
<style>
  /* Desktop Gallery Nav Arrows */
  .cheli-main-image {
    position: relative;
  }
  
  .cheli-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.2s ease;
    padding: 0;
    opacity: 0;
    pointer-events: none;
  }
  
  .cheli-main-image:hover .cheli-gallery-nav {
    opacity: 1;
    pointer-events: auto;
  }
  
  .cheli-gallery-nav:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.05);
  }
  
  .cheli-gallery-nav:active {
    transform: translateY(-50%) scale(0.97);
  }
  
  .cheli-gallery-nav svg {
    width: 18px;
    height: 18px;
    stroke: #1a1a1a;
    stroke-width: 2.5;
    fill: none;
  }
  
  .cheli-gallery-nav--prev {
    left: 12px;
  }
  
  .cheli-gallery-nav--next {
    right: 12px;
  }
  
  /* Hide arrows on mobile (mobile has swipe gallery) */
  @media (max-width: 768px) {
    .cheli-gallery-nav {
      display: none !important;
    }
  }
</style>