/** Shopify CDN: Minification failed

Line 20:18 Expected identifier but found whitespace
Line 20:20 Unexpected "{"
Line 20:30 Expected ":"
Line 21:23 Expected identifier but found whitespace
Line 21:25 Unexpected "{"
Line 21:35 Expected ":"
Line 22:17 Expected identifier but found whitespace
Line 22:19 Unexpected "{"
Line 22:29 Expected ":"
Line 23:13 Expected identifier but found whitespace
... and 8 more hidden warnings

**/
/* Kiko Divine — Custom Theme
   Recreates the React/Next.js design in Shopify */

:root {
  --color-primary: {{ settings.color_primary }};
  --color-primary-dark: {{ settings.color_primary_dark }};
  --color-accent: {{ settings.color_accent }};
  --color-bg: {{ settings.color_background }};
  --color-text: {{ settings.color_text }};
  --color-sale: {{ settings.color_sale }};
  --heading-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1280px;
  --radius: 12px;
  /* Tailwind amber scale (matches Next.js) */
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --amber-950: #451a03;
  --orange-100: #ffedd5;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { font-family: var(--heading-font); font-weight: 700; line-height: 1.15; color: #111827; letter-spacing: -0.01em; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--color-primary); color: #fff; font-weight: 600;
  padding: .75rem 1.75rem; border-radius: var(--radius); border: none;
  cursor: pointer; transition: background .2s, transform .2s; font-size: .95rem;
}
.btn:hover { background: var(--color-primary-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; }
.btn-block { width: 100%; }

/* Announcement bar */
.announcement {
  background: var(--color-primary); color: #fff; text-align: center;
  padding: .5rem 1rem; font-size: .8rem; letter-spacing: .02em;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,251,245,.9);
  backdrop-filter: blur(8px); border-bottom: 1px solid rgba(0,0,0,.06);
}
.header-inner { display: flex; align-items: center; gap: 2rem; height: 72px; }
.header-logo { display: flex; align-items: center; gap: .6rem; }
.header-logo img { height: 44px; width: 44px; border-radius: 50%; object-fit: cover; }
.header-logo .brand { font-family: var(--heading-font); font-weight: 700; font-size: 1.3rem; color: var(--color-primary); letter-spacing: -0.01em; }
.header-nav { display: flex; gap: 1.75rem; margin-left: auto; }
.header-nav a { font-size: .92rem; font-weight: 500; color: #444; transition: color .2s; }
.header-nav a:hover { color: var(--color-primary); }
.header-actions { display: flex; align-items: center; gap: 1.25rem; }
.header-icon { position: relative; color: #444; transition: color .2s; }
.header-icon:hover { color: var(--color-primary); }
.cart-badge {
  position: absolute; top: -8px; right: -10px; background: var(--color-primary);
  color: #fff; font-size: .65rem; font-weight: 700; min-width: 18px; height: 18px;
  border-radius: 999px; display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.header-search {
  flex: 1; max-width: 320px; position: relative;
}
.header-search input {
  width: 100%; padding: .55rem .9rem .55rem 2.2rem; border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px; font-size: .9rem; background: #fff; outline: none;
}
.header-search input:focus { border-color: var(--color-primary); }
.header-search svg { position: absolute; left: .8rem; top: 50%; transform: translateY(-50%); color: #999; }

/* Hero — dark amber gradient, left-aligned (matches Next.js) */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--amber-800) 0%, var(--amber-900) 55%, var(--amber-950) 100%);
  color: #fff;
}
.hero .container { padding-top: 5rem; padding-bottom: 5.5rem; }
.hero .hero-inner { max-width: 42rem; }
.hero .tagline { color: var(--amber-300); font-weight: 500; letter-spacing: .03em; font-size: .85rem; margin-bottom: .75rem; }
.hero h1 { color: #fff; font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.1; }
.hero h1 .accent { color: var(--amber-400); }
.hero p { font-size: 1.1rem; color: var(--amber-100); line-height: 1.7; max-width: 36rem; margin-top: 1.25rem; }
.hero .hero-btns { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero .btn-primary {
  background: var(--amber-500); color: var(--amber-950); font-weight: 600;
  padding: .75rem 1.75rem; border-radius: 10px; display: inline-flex; align-items: center; gap: .5rem;
  transition: background .2s;
}
.hero .btn-primary:hover { background: var(--amber-400); }
.hero .btn-ghost {
  border: 1px solid var(--amber-400); color: var(--amber-200); font-weight: 500;
  padding: .75rem 1.75rem; border-radius: 10px; transition: background .2s;
}
.hero .btn-ghost:hover { background: var(--amber-800); }

/* Trust bar — horizontal inline (matches Next.js) */
.trust-bar { background: #fff; border-bottom: 1px solid #e5e7eb; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; padding: 1.5rem 0; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: .5rem; font-size: .875rem; font-weight: 500; color: #374151; }
.trust-item svg { color: var(--amber-600); flex-shrink: 0; }

/* Section headings */
.section { padding: 4rem 0; }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 1.875rem); margin-bottom: .5rem; color: #111827; }
.section-head p { color: #6b7280; max-width: 46ch; margin: 0 auto; }

/* Category grid — amber gradient tiles with star watermark (matches Next.js) */
.category-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.category-card {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--amber-100), var(--orange-100));
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem;
  transition: box-shadow .3s;
}
.category-card:hover { box-shadow: 0 12px 24px rgba(0,0,0,.1); }
.category-card .watermark {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: .1; color: var(--amber-900);
}
.category-card .watermark svg { width: 8rem; height: 8rem; }
.category-card h3 { position: relative; color: var(--amber-900); font-size: 1.125rem; font-weight: 700; }
.category-card .cat-desc {
  position: relative; color: var(--amber-700); font-size: .875rem; margin-top: .25rem; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.category-card .cat-explore {
  position: relative; color: var(--amber-600); font-size: .875rem; font-weight: 500; margin-top: .5rem;
  display: inline-flex; align-items: center; gap: .25rem;
}

/* Product grid & cards */
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.product-card {
  background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow .25s, transform .25s; display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: 0 12px 28px rgba(0,0,0,.08); transform: translateY(-3px); }
.product-card .media { position: relative; aspect-ratio: 1; background: #f7f1e8; overflow: hidden; }
.product-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .media img { transform: scale(1.05); }
.product-badge {
  position: absolute; top: .75rem; left: .75rem; z-index: 2; background: var(--color-primary);
  color: #fff; font-size: .68rem; font-weight: 700; padding: .25rem .6rem; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .03em;
}
.discount-badge {
  position: absolute; top: .75rem; right: .75rem; z-index: 2; background: var(--color-sale);
  color: #fff; font-size: .7rem; font-weight: 700; padding: .25rem .55rem; border-radius: 999px;
}
.wishlist-btn {
  position: absolute; bottom: .75rem; right: .75rem; z-index: 2; background: rgba(255,255,255,.9);
  width: 36px; height: 36px; border-radius: 50%; border: none; display: flex; align-items: center;
  justify-content: center; cursor: pointer; color: #888; transition: color .2s, transform .2s;
}
.wishlist-btn:hover { color: var(--color-sale); transform: scale(1.1); }
.product-card .body { padding: 1rem; display: flex; flex-direction: column; flex: 1; }
.product-card .cat-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--color-accent); font-weight: 600; margin-bottom: .35rem; }
.product-card .title { font-family: var(--body-font); font-weight: 600; font-size: .98rem; color: #222; margin-bottom: .5rem; line-height: 1.35; }
.product-card .price-row { margin-top: auto; display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; }
.price { font-weight: 700; font-size: 1.1rem; color: var(--color-primary); }
.price-original { font-size: .85rem; color: #aaa; text-decoration: line-through; }

/* Why choose us — 3 white cards, no icons (matches Next.js) */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.feature-card { background: #fff; border: 1px solid #f3f4f6; border-radius: var(--radius); padding: 1.5rem; box-shadow: 0 1px 2px rgba(0,0,0,.04); }
.feature-card h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: .5rem; color: #111827; }
.feature-card p { font-size: .875rem; color: #4b5563; line-height: 1.7; }

/* CTA — light amber (matches Next.js) */
.cta-band { background: var(--amber-50); border-top: 1px solid var(--amber-100); border-bottom: 1px solid var(--amber-100); text-align: center; padding: 4rem 1.5rem; }
.cta-band h2 { color: var(--amber-900); font-size: clamp(1.5rem,3vw,1.875rem); margin-bottom: .75rem; }
.cta-band p { color: var(--amber-700); max-width: 32rem; margin: 0 auto 1.5rem; }
.cta-band .btn { background: var(--amber-700); color: #fff; }
.cta-band .btn:hover { background: var(--amber-800); }

/* Product page */
.product-page { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 3rem 0; }
.product-gallery img { width: 100%; border-radius: var(--radius); background: #f7f1e8; }
.product-info h1 { font-size: 2rem; margin-bottom: .75rem; }
.product-info .price-row { margin: 1rem 0; }
.product-info .price { font-size: 1.6rem; }
.benefits-list { list-style: none; margin: 1.5rem 0; }
.benefits-list li { display: flex; gap: .6rem; align-items: center; padding: .35rem 0; color: #444; }
.benefits-list li::before { content: "✓"; color: var(--color-primary); font-weight: 700; }
.qty-selector { display: flex; align-items: center; gap: 0; border: 1px solid rgba(0,0,0,.15); border-radius: var(--radius); width: fit-content; overflow: hidden; }
.qty-selector button { width: 40px; height: 40px; border: none; background: #fff; cursor: pointer; font-size: 1.1rem; }
.qty-selector input { width: 48px; text-align: center; border: none; outline: none; }
.product-details-box { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,.08); }

/* Cart */
.cart-page { padding: 3rem 0; }
.cart-item { display: grid; grid-template-columns: 90px 1fr auto; gap: 1.25rem; align-items: center; padding: 1.25rem 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.cart-item img { width: 90px; height: 90px; object-fit: cover; border-radius: 10px; background: #f7f1e8; }
.cart-summary { background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: var(--radius); padding: 1.5rem; }
.summary-row { display: flex; justify-content: space-between; padding: .5rem 0; }
.summary-row.total { border-top: 1px solid rgba(0,0,0,.08); margin-top: .5rem; padding-top: 1rem; font-weight: 700; font-size: 1.15rem; }

/* Footer */
.site-footer { background: #2a1c10; color: #d8cbbb; margin-top: 4rem; padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; }
.footer-brand { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-brand img { height: 40px; width: 40px; border-radius: 50%; }
.footer-brand .brand { font-family: var(--heading-font); font-size: 1.3rem; color: #fff; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: .6rem; }
.site-footer a { font-size: .9rem; color: #d8cbbb; transition: color .2s; }
.site-footer a:hover { color: #fff; }
.site-footer .tagline { font-size: .9rem; font-style: italic; color: #b8a894; margin-bottom: 1rem; max-width: 30ch; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.5rem; text-align: center; font-size: .82rem; color: #9d8b76; }

/* Toast */
.toast-wrap { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 100; display: flex; flex-direction: column; gap: .5rem; }
.toast { background: #16a34a; color: #fff; padding: .8rem 1.2rem; border-radius: 10px; font-size: .9rem; box-shadow: 0 8px 24px rgba(0,0,0,.15); animation: slideup .3s ease; }
@keyframes slideup { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Page content */
.page-content { max-width: 780px; margin: 0 auto; padding: 3rem 1.5rem; }
.page-content h1 { font-size: 2.4rem; margin-bottom: 1.5rem; }
.page-content h2 { font-size: 1.5rem; margin: 2rem 0 .75rem; }
.page-content p { margin-bottom: 1rem; color: #444; }

/* Breadcrumb */
.breadcrumb { font-size: .85rem; color: #888; padding: 1.5rem 0 0; }
.breadcrumb a:hover { color: var(--color-primary); }

/* Responsive */
@media (max-width: 989px) {
  .category-grid, .product-grid, .features-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .product-page { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-nav, .header-search { display: none; }
}
@media (max-width: 599px) {
  .category-grid, .product-grid, .features-grid, .footer-grid { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 70px 1fr; }
}
