/** Shopify CDN: Minification failed

Line 17:13 Expected identifier but found whitespace
Line 17:15 Unexpected "{"
Line 17:25 Expected ":"
Line 18:14 Expected identifier but found whitespace
Line 18:16 Unexpected "{"
Line 18:26 Expected ":"
Line 19:14 Expected identifier but found whitespace
Line 19:16 Unexpected "{"
Line 19:26 Expected ":"
Line 20:12 Expected identifier but found whitespace
... and 25 more hidden warnings

**/
:root {
  --obsidian: {{ settings.color_obsidian }};
  --porcelain: {{ settings.color_porcelain }};
  --champagne: {{ settings.color_champagne }};
  --card-bg: {{ settings.color_card_bg }};
  --border: {{ settings.color_border }};
  --page-width: {{ settings.page_width }}px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: var(--porcelain);
  color: var(--obsidian);
  font-family: {{ settings.font_body.family }}, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: {{ settings.font_heading.family }}, serif;
  font-weight: 400;
  margin: 0 0 12px 0;
  letter-spacing: 0.3px;
}
p { margin: 0 0 12px 0; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 20px;
}
.section-padding { padding: 60px 0; }
.text-center { text-align: center; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--obsidian);
  color: var(--porcelain);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--obsidian);
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 2px;
}
.btn:hover { background: transparent; color: var(--obsidian); }
.btn-gold { background: var(--champagne); border-color: var(--champagne); color: var(--obsidian); }
.btn-gold:hover { background: transparent; color: var(--champagne); }
.btn-outline { background: transparent; color: var(--obsidian); }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-sm { padding: 10px 20px; font-size: 12px; }
.pulse-highlight { animation: pulseGlow 0.6s ease 2; }
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,118,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(201,168,118,0); }
}

.announcement-bar {
  background: var(--obsidian);
  color: var(--porcelain);
  text-align: center;
  padding: 9px 0;
  font-size: 13px;
  letter-spacing: 0.3px;
  overflow: hidden;
  height: 36px;
  position: relative;
}
.announcement-item {
  position: absolute;
  left: 0; right: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.announcement-item.active { opacity: 1; }

.site-header {
  background: var(--porcelain);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}
.logo a {
  font-family: {{ settings.font_heading.family }}, serif;
  font-size: 26px;
  text-decoration: none;
  color: var(--obsidian);
  letter-spacing: 2px;
}
.nav-menu { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-menu > li { position: relative; }
.nav-menu a {
  text-decoration: none;
  color: var(--obsidian);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 0;
  display: inline-block;
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 18px;
  min-width: 200px;
  border-radius: 4px;
  z-index: 50;
}
.nav-menu > li:hover .nav-dropdown { display: block; }
.nav-dropdown a { display: block; padding: 6px 0; font-size: 13px; }
.header-icons { display: flex; align-items: center; gap: 18px; }
.header-icons a, .header-icons button {
  background: none; border: none; color: var(--obsidian);
  text-decoration: none; font-size: 13px; display: flex; align-items: center; gap: 4px;
}
.search-wrap { position: relative; }
.search-input {
  border: 1px solid var(--border);
  padding: 9px 14px;
  background: #fff;
  border-radius: 20px;
  font-size: 13px;
  width: 200px;
}
.cart-count {
  background: var(--champagne); color: var(--obsidian);
  border-radius: 50%; width: 18px; height: 18px;
  font-size: 10px; display: inline-flex; align-items: center; justify-content: center;
  margin-left: 4px; font-weight: 700;
}
.mobile-menu-toggle { display: none; background: none; border: none; font-size: 22px; }

@media (max-width: 860px) {
  .nav-menu { display: none; }
  .search-input { width: 130px; }
  .mobile-menu-toggle { display: block; }
}

.hero-carousel {
  position: relative;
  height: 62vh;
  min-height: 420px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-mobile);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--porcelain);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
  z-index: 1;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
@media (min-width: 700px) {
  .hero-slide { background-image: var(--hero-bg-desktop); }
}
.hero-slide::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.28);
}
.hero-content { position: relative; z-index: 2; max-width: 620px; padding: 0 20px; }
.hero-content h1 { font-size: 46px; color: #fff; }
.hero-content p { font-size: 16px; margin-bottom: 24px; opacity: 0.95; }

.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.85); border: none; color: var(--obsidian);
  font-size: 15px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.hero-nav:hover { background: #fff; }
.hero-nav-prev { left: 20px; }
.hero-nav-next { right: 20px; }
.hero-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 8px;
}
.hero-dot {
  width: 9px; height: 9px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.5); cursor: pointer; padding: 0; transition: background 0.2s ease, transform 0.2s ease;
}
.hero-dot.active { background: #fff; transform: scale(1.25); }

@media (max-width: 700px) {
  .hero-nav { width: 34px; height: 34px; font-size: 12px; }
  .hero-nav-prev { left: 10px; }
  .hero-nav-next { right: 10px; }
  .hero-content h1 { font-size: 30px; }
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: -60px;
  position: relative;
  z-index: 5;
}
.tile-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.tile-label {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  color: var(--obsidian);
}
@media (max-width: 700px) {
  .tile-grid { grid-template-columns: 1fr; margin-top: 20px; }
}

.tabs-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.tab-btn {
  background: none; border: none; padding: 10px 4px;
  font-size: 14px; color: #5f5f5f; border-bottom: 2px solid transparent;
  cursor: pointer;
}
.tab-btn.active { color: var(--obsidian); border-color: var(--champagne); font-weight: 600; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }

.product-card {
  background: var(--card-bg);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.1); }
.product-card .img-wrap { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #f2f0ec; }
.product-card img { width: 100%; height: 100%; object-fit: cover; }
.product-info { padding: 14px 16px; }
.product-info h3, .product-info h4 { font-size: 14px; font-weight: 500; font-family: {{ settings.font_body.family }}, sans-serif; margin-bottom: 6px; }
.price { color: var(--obsidian); font-weight: 700; font-size: 15px; }
.price s { color: #999; margin-left: 8px; font-weight: 400; font-size: 13px; }
.badge-discount {
  position: absolute; top: 10px; left: 10px;
  background: var(--champagne); color: var(--obsidian);
  padding: 4px 9px; font-size: 11px; font-weight: 700; border-radius: 3px;
}
.quick-add-btn {
  width: 100%; margin-top: 8px; padding: 9px; font-size: 11px;
}

.carousel-track {
  display: flex; gap: 18px; overflow-x: auto;
  scroll-snap-type: x mandatory; padding-bottom: 10px;
}
.carousel-track::-webkit-scrollbar { height: 6px; }
.carousel-track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.carousel-track > * { scroll-snap-align: start; flex: 0 0 250px; }
.carousel-arrows { display: flex; gap: 10px; justify-content: flex-end; margin-bottom: 12px; }
.carousel-arrow {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border);
  background: #fff; display: flex; align-items: center; justify-content: center;
}

.trust-row {
  display: flex; justify-content: space-between;
  padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  flex-wrap: wrap; gap: 20px;
}
.trust-item { text-align: center; flex: 1; min-width: 140px; }
.trust-item .icon { font-size: 26px; margin-bottom: 8px; }
.trust-item p { font-size: 13px; margin: 0; font-weight: 500; }

.countdown-wrap { text-align: center; font-size: 22px; color: #96762f; margin-bottom: 24px; font-weight: 700; letter-spacing: 1px; }
.countdown-wrap span { color: var(--obsidian); background: #fff; padding: 6px 10px; border-radius: 4px; margin: 0 3px; }

.spotlight {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
@media (max-width: 800px) { .spotlight { grid-template-columns: 1fr; } }
.spotlight-img { border-radius: 8px; overflow: hidden; aspect-ratio: 1/1; background: #f2f0ec; }
.spotlight-img img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-eyebrow { text-transform: uppercase; font-size: 12px; letter-spacing: 2px; color: #96762f; font-weight: 700; }
.swatch-row { display: flex; gap: 8px; margin: 10px 0 18px; }
.swatch { width: 26px; height: 26px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--border); cursor: pointer; }
.size-row { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.size-opt { border: 1px solid var(--border); padding: 8px 14px; font-size: 13px; border-radius: 3px; background: #fff; cursor: pointer; }
.size-opt.active { border-color: var(--obsidian); background: var(--obsidian); color: #fff; }

.badge-row { display: flex; gap: 18px; margin-top: 20px; flex-wrap: wrap; }
.badge-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #555; }

.urgency-text {
  color: #B8542B; font-weight: 600; font-size: 13px;
  background: rgba(197, 160, 89, 0.12); padding: 10px 14px; border-radius: 4px;
  margin: 14px 0; display: inline-block;
}

.pincode-box { margin: 18px 0; }
.pincode-box label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 8px; }
.pincode-input-row { display: flex; gap: 8px; }
.input-field {
  padding: 11px 14px; border: 1px solid var(--border); background: #fff;
  font-size: 13px; border-radius: 3px;
}
.pincode-input-row .input-field { flex: 1; }
.delivery-msg { font-size: 13px; margin-top: 8px; color: #2E7D32; font-weight: 500; }

.testimonial-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 22px; flex: 0 0 280px;
}
.stars { color: #96762f; font-size: 14px; margin-bottom: 10px; }
.testimonial-quote { font-size: 14px; color: #444; margin-bottom: 16px; min-height: 60px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; background: #eee; }
.author-name { font-size: 13px; font-weight: 600; }
.author-loc { font-size: 11px; color: #6b6b6b; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 16px 0; font-size: 14px; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; font-size: 13px; color: #555; }
.faq-answer-inner { padding-bottom: 16px; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-icon { transition: transform 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.spec-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table td { padding: 10px 0; }
.spec-table td:first-child { color: #888; width: 40%; }
.spec-table td:last-child { font-weight: 500; }

.review-summary { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.review-score { font-size: 34px; font-weight: 700; }
.review-empty { font-size: 13px; color: #888; background: #f5f3ef; padding: 14px; border-radius: 6px; }

.cart-drawer {
  position: fixed; top: 0; right: -420px; width: 400px; max-width: 92vw; height: 100vh;
  background: #fff; box-shadow: -4px 0 24px rgba(0,0,0,0.12); z-index: 1000;
  transition: right 0.35s ease; display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-drawer-header { padding: 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-drawer-header button { background: none; border: none; font-size: 20px; }
.cart-progress-wrap { padding: 14px 20px; text-align: center; font-size: 13px; border-bottom: 1px solid var(--border); }
.progress-bar-bg { background: #eee; height: 6px; border-radius: 3px; margin-top: 8px; }
.progress-bar-fill { background: var(--champagne); height: 100%; border-radius: 3px; }
.cart-items-wrap { flex: 1; overflow-y: auto; padding: 20px; }
.cart-upsell-wrap { padding: 16px 20px; border-top: 1px solid var(--border); }
.cart-upsell-wrap h4 { font-size: 13px; margin-bottom: 10px; }
.upsell-scroll { display: flex; gap: 10px; overflow-x: auto; }
.upsell-item { min-width: 90px; text-align: center; }
.upsell-item img { border-radius: 4px; aspect-ratio: 1/1; object-fit: cover; }
.upsell-item p { font-size: 11px; margin: 6px 0 0; }
.cart-drawer-footer { padding: 16px 20px; border-top: 1px solid var(--border); }
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 999; display: none; }
.overlay.open { display: block; }

.site-footer { background: var(--obsidian); color: var(--porcelain); padding: 60px 0 24px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h3 { color: var(--champagne); font-size: 20px; }
.footer-grid h4 { font-size: 14px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer-grid p { font-size: 13px; opacity: 0.75; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: var(--porcelain); text-decoration: none; opacity: 0.75; font-size: 13px; }
.footer-links a:hover { opacity: 1; }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a { color: var(--porcelain); opacity: 0.8; }
.footer-bottom { text-align: center; margin-top: 50px; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; font-size: 12px; opacity: 0.6; }

.filter-bar {
  position: sticky; top: 68px; background: var(--porcelain); padding: 12px 0;
  border-bottom: 1px solid var(--border); z-index: 10; margin-bottom: 24px;
  display: flex; justify-content: space-between; align-items: center;
}

.info-block { border: 1px solid var(--border); border-radius: 6px; padding: 16px 18px; margin-top: 20px; }
.info-block summary { cursor: pointer; font-size: 13px; font-weight: 600; }
.info-block .info-body { font-size: 12px; color: #666; margin-top: 10px; }

.bundle-box { border: 1px solid var(--champagne); border-radius: 6px; padding: 16px; margin: 18px 0; background: rgba(197,160,89,0.06); }
.bundle-tier {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 10px 8px; font-size: 13px; border: none; border-bottom: 1px dashed var(--border);
  background: transparent; cursor: pointer; border-radius: 4px; transition: background 0.15s ease;
}
.bundle-tier:last-of-type { border-bottom: none; }
.bundle-tier:hover { background: rgba(197,160,89,0.14); }
.bundle-tier.selected { background: var(--champagne); }
.bundle-tier span:first-child { font-weight: 600; }
.bundle-hint { font-size: 11px; color: #888; margin: 8px 0 0; }

.product-qty-row { margin: 18px 0; }
.product-qty-selector {
  display: inline-flex; align-items: center; gap: 0;
  border: 1px solid var(--border); border-radius: 3px; overflow: hidden; background: #fff;
}
.product-qty-selector .qty-btn {
  width: 40px; height: 40px; border: none; background: #fff;
  font-size: 16px; color: var(--obsidian); cursor: pointer; transition: background 0.2s ease;
}
.product-qty-selector .qty-btn:hover { background: var(--card-bg); }
.product-qty-input {
  width: 52px; height: 40px; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  text-align: center; font-size: 14px; font-weight: 600; color: var(--obsidian);
  -moz-appearance: textfield;
}
.product-qty-input::-webkit-outer-spin-button,
.product-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
