/** Shopify CDN: Minification failed

Line 164:42 Unexpected ","

**/
:root {
  --bg: #F2F2F2;
  --white: #fff;
  --dark: #1C1C1C;
  --mid: #4A4A4A;
  --light: #D0D0D0;
  --border: #C0C0C0;
  --accent: #2D2D2D;
  --accent-light: #555555;
  --gold: #888888;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'DM Sans', sans-serif;
  --r: 6px;
  --r-lg: 14px;
  --ease: all 0.22s ease;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--bg); color: var(--dark); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ANNOUNCE */
.announce-bar { background: var(--dark); color: #fff; text-align: center; padding: 10px 24px; font-size: 0.82rem; font-weight: 500; }
.announce-bar span { color: rgba(255,255,255,.35); margin: 0 10px; }

/* HEADER */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--dark); }
.nav { display: flex; gap: 28px; }
.nav a { font-size: 0.9rem; font-weight: 500; color: var(--mid); transition: var(--ease); }
.nav a:hover { color: var(--dark); }
.cart-btn { font-size: 0.9rem; font-weight: 600; color: var(--dark); padding: 8px 16px; border: 1.5px solid var(--border); border-radius: 30px; transition: var(--ease); }
.cart-btn:hover { border-color: var(--dark); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-sans); font-weight: 600; font-size: 0.95rem; padding: 14px 32px; border-radius: var(--r); cursor: pointer; transition: var(--ease); border: none; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #3d2020; }
.btn-outline { background: transparent; color: var(--dark); border: 1.5px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-lg { font-size: 1rem; padding: 17px 40px; }

/* HERO */
.hero { background: var(--white); border-bottom: 1px solid var(--border); }
.hero-inner { max-width: 1100px; margin: 0 auto; padding: 90px 32px 80px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.hero-eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.hero-title { font-family: var(--font-serif); font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 600; line-height: 1.1; letter-spacing: -1px; color: var(--dark); margin-bottom: 22px; }
.hero-title em { font-style: italic; color: var(--accent); }
.hero-desc { font-size: 1.05rem; color: var(--mid); line-height: 1.75; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { font-size: 0.82rem; color: var(--light); margin-top: 20px; display: flex; gap: 18px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-img-wrap { aspect-ratio: 4/5; background: linear-gradient(160deg, #FFE8EF, #FFD6E4); border-radius: var(--r-lg); border: 1px solid var(--border); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-placeholder { font-size: 9rem; }
.hero-badge-float { position: absolute; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 14px 18px; box-shadow: 0 4px 20px rgba(0,0,0,.08); bottom: -20px; right: -20px; text-align: center; }
.badge-num { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--dark); line-height: 1; }
.badge-lbl { font-size: 0.75rem; color: var(--light); font-weight: 500; margin-top: 2px; }

/* TRUST */
.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg); }
.trust-inner { max-width: 1100px; margin: 0 auto; padding: 22px 32px; display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600; color: var(--mid); }
.trust-icon { width: 34px; height: 34px; background: var(--accent-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; }

/* HIGHLIGHT */
.highlight-section { padding: 90px 32px; background: var(--white); border-bottom: 1px solid var(--border); }
.highlight-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.highlight-img { aspect-ratio: 1; background: linear-gradient(135deg, #FFE8EF, #FFD0DC); border-radius: var(--r-lg); border: 1px solid var(--border); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.highlight-img img { width: 100%; height: 100%; object-fit: cover; }
.highlight-eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--light); margin-bottom: 16px; }
.highlight-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; line-height: 1.15; letter-spacing: -0.5px; color: var(--dark); margin-bottom: 18px; }
.highlight-desc { font-size: 0.95rem; color: var(--mid); line-height: 1.8; margin-bottom: 28px; }
.feature-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.feature-row { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--mid); }
.feature-dot { width: 20px; height: 20px; background: var(--accent-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; flex-shrink: 0; margin-top: 2px; color: var(--accent); font-weight: 800; }

/* REVIEWS */
.reviews-section { padding: 80px 32px; background: var(--bg); }
.container { max-width: 1100px; margin: 0 auto; }
.section-header-center { text-align: center; margin-bottom: 48px; }
.eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--light); margin-bottom: 12px; }
.section-title { font-family: var(--font-serif); font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 600; letter-spacing: -0.5px; color: var(--dark); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; }
.review-stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 0.92rem; color: var(--mid); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.rev-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--accent-light); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; color: var(--accent); flex-shrink: 0; }
.rev-name { font-weight: 700; font-size: 0.88rem; color: var(--dark); }
.rev-tag { font-size: 0.78rem; color: var(--light); }

/* NEWSLETTER */
.newsletter-section { padding: 80px 32px; background: var(--accent-light); border-top: 1px solid var(--border); }
.newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter-desc { font-size: 1rem; color: var(--mid); margin: 12px 0 28px; }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.newsletter-form input { flex: 1; min-width: 220px; padding: 14px 20px; border-radius: var(--r); border: 1.5px solid var(--border); font-family: var(--font-sans); font-size: 0.95rem; outline: none; background: var(--white); }
.newsletter-form input:focus { border-color: var(--dark); }

/* FOOTER */
.site-footer { background: var(--dark); color: #fff; padding: 48px 32px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; gap: 48px; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); flex-wrap: wrap; }
.footer-logo { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; margin-bottom: 8px; }
.footer-tag { font-size: 0.85rem; color: rgba(255,255,255,.4); }
.footer-col-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,.25); flex-wrap: wrap; gap: 8px; }

/* PRODUCT PAGE */
.product-page { padding: 48px 32px 80px; max-width: 1100px; margin: 0 auto; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.gallery-main { aspect-ratio: 1; background: linear-gradient(160deg, #FFE8EF, #FFD6E4); border-radius: var(--r-lg); border: 1px solid var(--border); overflow: hidden; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.g-thumb { aspect-ratio: 1; background: var(--bg); border-radius: var(--r); border: 1.5px solid var(--border); overflow: hidden; cursor: pointer; transition: var(--ease); }
.g-thumb img { width: 100%; height: 100%; object-fit: cover; }
.g-thumb.active, .g-thumb:hover { border-color: var(--dark); }
.p-badge { display: inline-block; background: var(--accent-light); color: var(--accent); font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 30px; margin-bottom: 16px; }
.p-title { font-family: var(--font-serif); font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 600; line-height: 1.15; letter-spacing: -0.5px; color: var(--dark); margin-bottom: 12px; }
.p-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.p-stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 2px; }
.p-rating-text { font-size: 0.85rem; color: var(--light); }
.p-price-wrap { margin-bottom: 24px; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.p-price { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 600; color: var(--dark); }
.p-compare { font-size: 1rem; color: var(--light); text-decoration: line-through; }
.p-save { background: #FFF3E0; color: var(--gold); font-size: 0.8rem; font-weight: 700; padding: 3px 10px; border-radius: 30px; }
.p-desc { font-size: 0.95rem; color: var(--mid); line-height: 1.8; margin-bottom: 28px; }
.v-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--dark); margin-bottom: 10px; }
.v-options { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.v-btn { padding: 9px 20px; border-radius: var(--r); border: 1.5px solid var(--border); background: var(--white); font-family: var(--font-sans); font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: var(--ease); color: var(--dark); }
.v-btn:hover, .v-btn.active { border-color: var(--dark); background: var(--dark); color: #fff; }
.qty-row { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.qty-wrap { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--r); overflow: hidden; }
.qty-btn { width: 44px; height: 50px; background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--dark); transition: background .15s; font-family: var(--font-sans); }
.qty-btn:hover { background: var(--bg); }
.qty-num { width: 48px; text-align: center; font-weight: 700; font-size: 0.95rem; color: var(--dark); }
.btn-atc { flex: 1; background: var(--accent); color: #fff; border: none; border-radius: var(--r); padding: 0 28px; height: 50px; font-family: var(--font-sans); font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: var(--ease); }
.btn-atc:hover { background: #d4406a; }
.btn-buy { width: 100%; height: 50px; background: var(--white); color: var(--dark); border: 1.5px solid var(--border); border-radius: var(--r); font-family: var(--font-sans); font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: var(--ease); margin-top: 12px; }
.btn-buy:hover { border-color: var(--dark); }
.guarantees { display: flex; flex-direction: column; gap: 10px; padding: 20px; background: var(--bg); border-radius: var(--r-lg); border: 1px solid var(--border); margin: 20px 0 28px; }
.g-row { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; color: var(--mid); font-weight: 500; }
.g-icon { font-size: 1rem; width: 28px; text-align: center; }
.p-tabs { margin-top: 40px; }
.tab-nav { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.t-btn { padding: 12px 20px; font-family: var(--font-sans); font-weight: 600; font-size: 0.88rem; background: none; border: none; color: var(--light); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: var(--ease); }
.t-btn.active { color: var(--dark); border-bottom-color: var(--dark); }
.t-content { display: none; font-size: 0.92rem; color: var(--mid); line-height: 1.85; max-width: 600px; }
.t-content.active { display: block; }
.t-content p { margin-bottom: 12px; }

@media(max-width: 860px) {
  .hero-inner,body { overflow-x: hidden; }, .highlight-inner, .product-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 32px; }
  .nav { display: none; }
  .trust-inner { gap: 20px; }
  .hero-badge-float { bottom: 10px; right: 10px; }
  .gallery-thumbs {
  overflow-x: auto;
  flex-wrap: nowrap;
  scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
}
/* Footer dole na Our Story */
.page-our-story {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-our-story .shopify-section:not(.shopify-section-header):not(.shopify-section-footer) {
  flex: 1;
}

