/** Shopify CDN: Minification failed

Line 42:17 Expected identifier but found whitespace
Line 42:23 Unexpected "{"
Line 42:33 Expected ":"
Line 43:16 Expected identifier but found whitespace
Line 43:23 Unexpected "{"
Line 43:33 Expected ":"
Line 44:15 Expected identifier but found whitespace
Line 44:23 Unexpected "{"
Line 44:33 Expected ":"

**/
/* ============================================================
   SMOOTH SWING — BASE STYLESHEET
   Matches Next.js demo at smooth-swing.vercel.app exactly
   ============================================================ */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ---- Design tokens ---- */
:root {
  --white:        #ffffff;
  --off-white:    #f5f3ef;
  --warm-white:   #f0efec;
  --light-gray:   #e8e6e0;
  --mid-gray:     #c8c4bc;
  --text:         #1a1a18;
  --text-muted:   #7a7870;
  --forest:       #2e4a2c;
  --forest-dark:  #1c2e1a;
  --star-gold:    #c8940c;
  --accent-red:   #943020;
  --border:       #e8e6e0;

  /* Shopify settings */
  --color-forest:     {{ settings.color_forest | default: '#2e4a2c' }};
  --color-cream:      {{ settings.color_cream  | default: '#f5f3ef' }};
  --color-gold:       {{ settings.color_gold   | default: '#b88c28' }};

  /* Backward-compat aliases for older section files */
  --color-text:        var(--text);
  --color-muted:       var(--text-muted);
  --color-cream-dark:  var(--off-white);

  /* Typography */
  --font-display: 'Barlow', system-ui, sans-serif;
  --font-body:    'Barlow', system-ui, sans-serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;
}

/* ---- Base ---- */
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--text);
  color: var(--white);
  padding: 8px 16px;
  z-index: 999;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ---- Typography helpers ---- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* ---- Section header ---- */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  margin-bottom: 24px;
}
.section-header__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}
.section-header__link {
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--text);
  transition: color 0.15s;
}
.section-header__link:hover { color: var(--forest); }
@media (max-width: 768px) {
  .section-header { padding: 0 16px; }
}

/* ---- Buttons ---- */
.btn-dark {
  display: inline-block;
  background: var(--text);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 14px 32px;
  text-decoration: none;
  border: none;
  transition: background 0.2s;
  font-family: var(--font-body);
}
.btn-dark:hover { background: var(--forest); color: var(--white); }

.btn-outline-dark {
  display: inline-block;
  border: 1px solid var(--text);
  color: var(--text);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-body);
}
.btn-outline-dark:hover { background: var(--text); color: var(--white); }

.btn-outline-white {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--white);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-body);
}
.btn-outline-white:hover { background: var(--white); color: var(--text); }

/* Legacy aliases */
.btn-gold  { display: inline-block; background: var(--color-gold, #b88c28); color: var(--text); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; padding: 14px 32px; text-decoration: none; border: none; transition: background 0.2s; }
.btn-ghost { display: inline-block; border: 1px solid var(--text); color: var(--text); background: transparent; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; padding: 14px 32px; text-decoration: none; transition: background 0.2s, color 0.2s; }
.btn-ghost:hover { background: var(--text); color: var(--white); }

/* ---- Condition badges ---- */
.condition-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 2px 7px;
  border-radius: 2px;
}
.condition-badge--mint  { background: #e0f0dc; color: #2a6020; }
.condition-badge--good  { background: #e8f0e0; color: #446030; }
.condition-badge--fair  { background: #f0ece0; color: #705830; }

/* ---- Sale badge ---- */
.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent-red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 7px;
  z-index: 1;
}

/* ---- Product card ---- */
.product-card {
  background: var(--white);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.2s;
}
.product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.10); }

.product-card__image {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
  height: 280px;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.3s;
}
.product-card:hover .product-card__image img { transform: scale(1.05); }
.product-card__no-image {
  width: 100%;
  height: 100%;
  background: var(--off-white);
}

.product-card__body {
  background: var(--white);
  padding: 14px 16px 18px;
  text-align: center;
}
.product-card__vendor {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.product-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
  line-height: 1.3;
}
.product-card__specs {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.product-card__badge-row {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
.product-card__price-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.product-card__price {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.product-card__price--sale { color: var(--accent-red); }
.product-card__compare {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.product-card__stars {
  color: var(--star-gold);
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}
.product-card__review-count {
  font-size: 11px;
  color: var(--text-muted);
}
.product-card__cta {
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--text);
  transition: color 0.15s;
  display: block;
}
.product-card__cta:hover { color: var(--forest); }

/* ---- Product grid ---- */
.product-grid {
  display: grid;
  gap: 16px;
  padding: 0 48px;
}
.product-grid--5 { grid-template-columns: repeat(5, 1fr); }
.product-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
  .product-grid--5 { grid-template-columns: repeat(3, 1fr); }
  .product-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .product-grid--5,
  .product-grid--4 { grid-template-columns: repeat(2, 1fr); padding: 0 16px; }
}

/* ---- Product carousel ---- */
.product-carousel {
  display: flex;
  gap: 16px;
  padding: 0 48px 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product-carousel::-webkit-scrollbar { display: none; }
.product-carousel__item { flex: none; width: 220px; }
@media (min-width: 768px) { .product-carousel__item { width: 250px; } }
@media (max-width: 768px) { .product-carousel { padding: 0 16px 16px; } }

/* ---- Marquee ---- */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }

/* ---- Accordion ---- */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
}
.accordion-trigger::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}
.accordion-item.open .accordion-trigger::after { transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding-bottom: 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.accordion-item.open .accordion-body { display: block; }

/* ---- Grade pills ---- */
.grade-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  margin-right: 6px;
  margin-bottom: 8px;
}

/* ---- Star rating ---- */
.star-rating { color: var(--star-gold); font-size: 12px; letter-spacing: 1px; }
