/** Shopify CDN: Minification failed

Line 21:18 Expected identifier but found whitespace
Line 21:20 Unexpected "{"
Line 21:30 Expected ":"
Line 22:22 Expected identifier but found whitespace
Line 22:24 Unexpected "{"
Line 22:34 Expected ":"
Line 24:15 Expected identifier but found whitespace
Line 24:17 Unexpected "{"
Line 24:27 Expected ":"
Line 25:13 Expected identifier but found whitespace
... and 16 more hidden warnings

**/
/* Shrine Pro Inspired Master CSS Architecture */
:root {
  --font-body-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading-family: 'Aeonik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --color-primary: {{ settings.color_primary | default: '#FF4F5F' }};
  --color-primary-end: {{ settings.color_primary_gradient_end | default: '#841620' }};
  --gradient-accent: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-end) 100%);
  --color-text: {{ settings.color_text | default: '#2E2A39' }};
  --color-bg: {{ settings.color_background | default: '#FFFFFF' }};
  --color-card: {{ settings.color_card_bg | default: '#F8F8FA' }};
  --color-sale: {{ settings.color_sale_badge | default: '#FF4F5F' }};
  --color-border: rgba(46, 42, 57, 0.12);
  --color-success: #10B981;
  
  --radius-btn: {{ settings.corner_radius_buttons | default: 8 }}px;
  --radius-card: {{ settings.corner_radius_cards | default: 16 }}px;
  --radius-pill: 999px;
  
  --shadow-sm: 0 2px 8px rgba(46, 42, 57, 0.06);
  --shadow-md: 0 8px 24px rgba(46, 42, 57, 0.1);
  --shadow-lg: 0 16px 40px rgba(46, 42, 57, 0.15);
  
  --page-max-width: 1240px;
  --header-height: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body-family);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading-family);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading-family);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(255, 79, 95, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 79, 95, 0.45);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.btn-secondary:hover {
  background: #F4F4F6;
}

.btn-full {
  width: 100%;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-sale {
  background: rgba(255, 79, 95, 0.12);
  color: var(--color-primary);
}

.badge-popular {
  background: var(--gradient-accent);
  color: #FFFFFF;
}

/* Section Wrapper Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-text {
  font-family: var(--font-heading-family);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.cart-count-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-primary);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* AJAX Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-drawer-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #FFFFFF;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

.cart-drawer.is-active {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 20px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--color-border);
  background: #F9F9FB;
}

/* Free Shipping Progress Bar */
.shipping-bar-container {
  background: #F0F0F4;
  border-radius: var(--radius-pill);
  height: 10px;
  overflow: hidden;
  margin-top: 8px;
  position: relative;
}

.shipping-bar-fill {
  background: var(--gradient-accent);
  height: 100%;
  width: 0%;
  transition: width 0.4s ease;
  border-radius: var(--radius-pill);
}

/* Urgency Cart Timer */
.cart-timer-box {
  background: rgba(255, 79, 95, 0.08);
  border: 1px dashed var(--color-primary);
  padding: 10px 14px;
  border-radius: var(--radius-btn);
  font-size: 0.88rem;
  color: var(--color-primary);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

/* Product Cards & Quantity Breaks */
.quantity-break-card {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 16px;
  margin-bottom: 12px;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  background: #FFFFFF;
}

.quantity-break-card.is-selected {
  border-color: var(--color-primary);
  background: rgba(255, 79, 95, 0.03);
  box-shadow: 0 4px 14px rgba(255, 79, 95, 0.12);
}

.quantity-break-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--gradient-accent);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
}

/* Sticky Add to Cart Bar */
.sticky-atc-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border);
  padding: 12px 20px;
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-lg);
}

.sticky-atc-bar.is-visible {
  transform: translateY(0);
}

.sticky-atc-inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Stock Scarcity Bar */
.stock-bar-wrapper {
  margin: 14px 0;
}

.stock-bar-track {
  height: 8px;
  background: #E5E5EA;
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.stock-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #FF9500 0%, #FF3B30 100%);
  border-radius: var(--radius-pill);
  transition: width 0.4s ease;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table th, .comparison-table td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table th:first-child, .comparison-table td:first-child {
  text-align: left;
}

.comparison-table .highlight-col {
  background: rgba(255, 79, 95, 0.05);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu { display: none; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .sticky-atc-inner {
    gap: 12px;
  }
}
