@import url('../fonts/fonts.css');

:root {
  --bg: oklch(97% 0.013 90);
  --text: oklch(27% 0.02 150);
  --muted: oklch(48% 0.015 150);
  --muted-soft: oklch(45% 0.02 150);
  --muted-strong: oklch(40% 0.02 150);
  --ink: oklch(30% 0.02 150);
  --border: oklch(89% 0.015 150);
  --border-2: oklch(91% 0.015 150);
  --brand: oklch(56% 0.1 150);
  --brand-dark: oklch(46% 0.1 150);
  --brand-darker: oklch(40% 0.1 150);
  --tint-green: oklch(93% 0.03 150);
  --tint-green-2: oklch(94% 0.02 150);
  --header-bg: oklch(99% 0.004 150);
  --tint-blue: oklch(94% 0.025 232);
  --blue-text: oklch(35% 0.03 232);
  --blue-text-2: oklch(40% 0.03 232);
  --blue-strong: oklch(66% 0.075 232);
  --tint-warm: oklch(95% 0.02 75);
  --warm-text: oklch(40% 0.05 75);
  --overlay: oklch(20% 0.01 150 / 0.45);
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 20px;
  --radius-xl: 24px;
  --shadow-drawer: -8px 0 30px oklch(20% 0.01 150 / 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: 'Quicksand', sans-serif; margin: 0; }
button, input, textarea { font-family: inherit; }

@keyframes ab-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1240px; margin: 0 auto; padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-badge {
  width: 42px; height: 42px; border-radius: 50%; background: var(--brand);
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 19px; flex-shrink: 0;
}
.brand-name { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 20px; color: var(--text); }
.brand-tag { font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

.nav-links { display: flex; gap: 26px; flex-wrap: wrap; font-size: 15px; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 600; }
.nav-links a:hover { color: var(--brand); }
.nav-links a.active { color: var(--brand-dark); font-weight: 800; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-phone {
  text-decoration: none; background: var(--tint-warm); color: var(--text);
  padding: 9px 16px; border-radius: 100px; font-weight: 700; font-size: 13.5px; white-space: nowrap;
}
.btn-cart {
  border: 1px solid var(--border); background: #fff; padding: 9px 16px; border-radius: 100px;
  font-weight: 700; font-size: 13.5px; cursor: pointer; position: relative;
}
.cart-badge {
  margin-left: 6px; background: var(--brand); color: #fff; border-radius: 100px;
  padding: 1px 8px; font-size: 12px; display: none;
}
.cart-badge.show { display: inline; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: var(--text); color: #fff; padding: 16px 28px;
  display: flex; gap: 20px; align-items: center; justify-content: center; flex-wrap: wrap;
}
.cookie-banner[hidden] { display: none; }
.cookie-text { max-width: 640px; font-size: 13.5px; }
.cookie-text a { text-decoration: underline; cursor: pointer; }
.cookie-accept {
  background: var(--brand); color: #fff; border: none; padding: 10px 22px;
  border-radius: 100px; font-weight: 700; cursor: pointer; font-size: 13.5px; white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn { border: none; border-radius: 100px; font-weight: 700; cursor: pointer; font-family: inherit; text-decoration: none; display: inline-block; text-align: center; }
.btn-primary { background: var(--brand); color: #fff; padding: 14px 28px; font-size: 15px; }
.btn-secondary { background: #fff; border: 1px solid var(--border); padding: 14px 28px; font-size: 15px; color: var(--text); }
.btn-pill { padding: 10px 20px; font-size: 13.5px; background: #fff; color: var(--text); border: 1px solid var(--border); }
.btn-pill.active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ---------- Main / animation ---------- */
main { animation: ab-fade .3s ease; }

/* ---------- Hero ---------- */
.hero { padding: 56px 28px 40px; display: flex; gap: 48px; align-items: center; flex-wrap: wrap; }
.hero-text { flex: 1 1 420px; min-width: 300px; }
.eyebrow { display: inline-block; background: var(--tint-green); color: var(--brand-darker); font-weight: 700; font-size: 12.5px; padding: 6px 14px; border-radius: 100px; margin-bottom: 16px; }
.hero-text h1 { font-size: 44px; font-weight: 700; margin: 0 0 18px; line-height: 1.15; }
.hero-desc { font-size: 17px; color: var(--muted); margin: 0 0 28px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media { flex: 1 1 380px; min-width: 280px; height: 340px; border-radius: var(--radius-xl); overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- USP ---------- */
.usp-section { background: #fff; border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); }
.usp-grid { padding: 32px 28px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.usp-item { display: flex; gap: 12px; align-items: flex-start; }
.usp-icon { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; }
.usp-title { font-weight: 700; font-size: 15px; margin-bottom: 3px; }
.usp-desc { font-size: 13.5px; color: var(--muted); }

/* ---------- Seasonal tip ---------- */
.tip-section { padding: 48px 28px; }
.tip-card { background: var(--tint-blue); border-radius: var(--radius-l); padding: 28px 32px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.tip-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--blue-strong); flex-shrink: 0; }
.tip-title { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.tip-text { font-size: 14.5px; color: var(--blue-text); }

/* ---------- Section head ---------- */
.section { padding: 16px 28px 56px; }
.section-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 24px; flex-wrap: wrap; gap: 10px; }
.section-head h2 { font-size: 28px; }
.section-link { text-decoration: none; cursor: pointer; font-weight: 700; color: var(--brand); font-size: 14px; }

/* ---------- Cards / grids ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card { background: #fff; border: 1px solid var(--border-2); border-radius: var(--radius-m); padding: 22px; }
.card h3, .card .name { font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.card .desc { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.card .meta { display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; }
.card .meta .muted { color: var(--muted); }
.card .meta .price { font-weight: 800; color: var(--brand-dark); }

/* ---------- Gallery (pred/po) ---------- */
.gallery-card { border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--border-2); background: #fff; }
.gallery-images { display: flex; height: 180px; }
.gallery-half { flex: 1; position: relative; overflow: hidden; }
.gallery-half img { width: 100%; height: 100%; object-fit: cover; }
.gallery-half.before img { filter: grayscale(0.9) brightness(0.85); }
.gallery-half .tag { position: absolute; bottom: 8px; left: 8px; font-family: monospace; font-size: 11px; color: var(--text); background: rgba(255,255,255,0.85); padding: 2px 8px; border-radius: 6px; }
.gallery-caption { padding: 12px 16px; font-size: 13.5px; font-weight: 700; }

/* ---------- Testimonials ---------- */
.testimonial-card { background: var(--tint-warm); border-radius: var(--radius-m); padding: 22px; }
.testimonial-text { font-size: 14px; margin-bottom: 14px; color: var(--ink); }
.testimonial-name { font-weight: 700; font-size: 13.5px; }

/* ---------- Loyalty banner ---------- */
.loyalty-banner { background: var(--brand); border-radius: var(--radius-l); padding: 36px; color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.loyalty-banner h3 { font-weight: 700; font-size: 20px; margin-bottom: 6px; color: #fff; }
.loyalty-banner p { font-size: 14px; opacity: 0.9; margin: 0; }
.btn-loyalty { background: #fff; color: var(--brand-dark); border: none; padding: 12px 26px; border-radius: 100px; font-weight: 700; cursor: pointer; white-space: nowrap; text-decoration: none; }

/* ---------- Blog / article cards ---------- */
.blog-card { cursor: pointer; background: #fff; border: 1px solid var(--border-2); border-radius: var(--radius-m); overflow: hidden; text-decoration: none; color: inherit; display: block; }
.blog-thumb { height: 130px; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 18px; }
.blog-title { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.blog-excerpt { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.blog-meta { font-size: 12.5px; color: var(--muted); }

/* ---------- Services page ---------- */
.page-header { padding: 48px 28px 0; }
.page-header h1 { font-size: 34px; margin: 0 0 12px; }
.page-lead { color: var(--muted); max-width: 640px; margin: 0 0 28px; font-size: 15.5px; }
.filters { display: flex; gap: 10px; margin: 0 28px 28px; flex-wrap: wrap; }
.service-tag { position: absolute; top: 14px; right: 14px; background: var(--tint-warm); color: var(--warm-text); font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 100px; }
.service-card { background: #fff; border: 1px solid var(--border-2); border-radius: var(--radius-m); padding: 24px; position: relative; }
.service-card .name { font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.service-card .desc { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }
.service-card .meta { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.service-card .meta .price { font-weight: 800; color: var(--brand-dark); font-size: 16px; }

.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 760px; margin: 0 28px 56px; }
.faq-item { background: #fff; border: 1px solid var(--border-2); border-radius: 14px; padding: 18px 20px; cursor: pointer; }
.faq-question { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 15px; }
.faq-chevron { font-size: 13px; color: var(--muted); transition: transform .2s; display: inline-block; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { margin-top: 10px; font-size: 13.5px; color: var(--muted); display: none; }
.faq-item.open .faq-answer { display: block; }

/* ---------- Shop ---------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin: 0 28px 64px; }
.product-card { background: #fff; border: 1px solid var(--border-2); border-radius: var(--radius-m); overflow: hidden; display: flex; flex-direction: column; }
.product-photo { height: 150px; overflow: hidden; }
.product-photo img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-name { font-weight: 700; font-size: 14.5px; }
.product-desc { font-size: 12.5px; color: var(--muted); flex: 1; }
.product-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; }
.product-price { font-weight: 800; color: var(--brand-dark); font-size: 15px; }
.btn-add { background: var(--brand); color: #fff; border: none; padding: 8px 14px; border-radius: 100px; font-weight: 700; font-size: 12.5px; cursor: pointer; }

/* ---------- Blog list / detail ---------- */
.narrow { max-width: 900px; margin: 0 auto; padding: 48px 28px 64px; }
.back-link { cursor: pointer; font-weight: 700; color: var(--brand); font-size: 13.5px; text-decoration: none; }
.article-meta-top { font-size: 12.5px; color: var(--muted); margin: 18px 0 8px; }
.article-title { font-size: 30px; margin: 0 0 20px; }
.article-image { height: 260px; border-radius: var(--radius-m); margin-bottom: 24px; overflow: hidden; }
.article-image img { width: 100%; height: 100%; object-fit: cover; }
.article-content p { font-size: 15.5px; color: var(--ink); margin: 0 0 16px; }

/* ---------- About ---------- */
.about-wrap { max-width: 1100px; margin: 0 auto; padding: 48px 28px 64px; }
.about-intro { display: flex; gap: 40px; flex-wrap: wrap; margin-bottom: 48px; }
.about-text { flex: 1 1 400px; min-width: 280px; }
.about-text p { font-size: 15.5px; color: var(--ink); margin: 0 0 16px; }
.about-media { flex: 1 1 280px; min-width: 260px; height: 260px; border-radius: var(--radius-l); overflow: hidden; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-wrap h2 { font-size: 24px; margin: 0 0 20px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-bottom: 48px; }
.team-card { background: #fff; border: 1px solid var(--border-2); border-radius: var(--radius-m); padding: 20px; text-align: center; }
.team-avatar { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 14px; overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 700; font-size: 15.5px; }
.team-role { font-size: 12.5px; color: var(--muted); margin: 4px 0 10px; }
.team-bio { font-size: 13px; color: var(--muted-strong); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.value-card { background: var(--tint-warm); border-radius: 14px; padding: 18px; }
.value-title { font-weight: 700; font-size: 14.5px; margin-bottom: 6px; }
.value-desc { font-size: 13px; color: var(--muted-soft); }

/* ---------- Contact ---------- */
.contact-wrap { max-width: 1100px; margin: 0 auto; padding: 48px 28px 64px; }
.contact-wrap h1 { font-size: 34px; margin: 0 0 12px; }
.contact-lead { color: var(--muted); margin: 0 0 32px; font-size: 15.5px; max-width: 600px; }
.contact-grid { display: flex; gap: 40px; flex-wrap: wrap; }
.contact-col { flex: 1 1 300px; min-width: 260px; }
.contact-form-col { flex: 1 1 340px; min-width: 280px; }
.info-card { background: #fff; border: 1px solid var(--border-2); border-radius: var(--radius-m); padding: 24px; margin-bottom: 20px; }
.info-card .info-title { font-weight: 700; margin-bottom: 14px; }
.info-row { font-size: 14px; color: var(--muted-strong); margin-bottom: 8px; }
.map-card { border-radius: var(--radius-m); background: var(--tint-blue); padding: 22px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.map-card .map-title { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 14.5px; color: var(--blue-text); }
.map-card .map-addr { font-size: 12.5px; color: var(--blue-text-2); }
.btn-map { background: #fff; color: var(--blue-text); border: 1px solid oklch(75% 0.04 232); padding: 9px 18px; border-radius: 100px; font-weight: 700; font-size: 12.5px; text-decoration: none; }

.form-field { padding: 13px 16px; border-radius: var(--radius-s); border: 1px solid var(--border); font-size: 14px; font-family: inherit; width: 100%; }
textarea.form-field { resize: vertical; }
.form-stack { display: flex; flex-direction: column; gap: 12px; }
.form-success { background: var(--tint-green); border-radius: var(--radius-m); padding: 28px; font-weight: 700; color: var(--brand-darker); }
.form-error { background: oklch(93% 0.05 25); border-radius: var(--radius-m); padding: 16px 20px; font-weight: 700; color: oklch(40% 0.12 25); margin-bottom: 14px; display: none; }
.form-error.show { display: block; }

/* ---------- Legal ---------- */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 48px 28px 64px; }
.legal-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.legal-tab { background: var(--bg); color: var(--text); font-weight: 600; border: none; padding: 9px 16px; border-radius: 100px; font-size: 12.5px; cursor: pointer; text-decoration: none; display: inline-block; }
.legal-tab.active { background: var(--brand); color: #fff; font-weight: 700; }
.legal-wrap h1 { font-size: 28px; margin: 0 0 6px; }
.legal-updated { font-size: 12.5px; color: var(--muted); margin-bottom: 28px; }
.legal-section { margin-bottom: 24px; }
.legal-section h3 { font-size: 17px; margin: 0 0 10px; }
.legal-section p { font-size: 14px; color: oklch(35% 0.02 150); margin: 0 0 10px; }

/* ---------- Cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; z-index: 200; display: none; }
.cart-overlay.open { display: flex; justify-content: flex-end; }
.cart-backdrop { position: absolute; inset: 0; background: var(--overlay); }
.cart-drawer { position: relative; width: 380px; max-width: 92vw; height: 100%; background: #fff; padding: 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-drawer); overflow: hidden; }
.cart-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.cart-drawer-head h3 { font-weight: 700; font-size: 19px; }
.cart-close { cursor: pointer; font-size: 20px; color: var(--muted); background: none; border: none; }
.cart-body { flex: 1; overflow: auto; }
.cart-empty { color: var(--muted); font-size: 14px; padding: 40px 0; text-align: center; }
.cart-empty a { text-decoration: underline; cursor: pointer; }
.cart-line { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border-2); align-items: center; }
.cart-line-img { width: 52px; height: 52px; border-radius: var(--radius-s); flex-shrink: 0; overflow: hidden; }
.cart-line-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-info { flex: 1; }
.cart-line-name { font-weight: 700; font-size: 13.5px; }
.cart-line-price { font-size: 12px; color: var(--muted); }
.qty-controls { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.qty-btn { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--border); background: #fff; cursor: pointer; font-size: 12px; line-height: 1; }
.qty-val { font-size: 13px; font-weight: 700; }
.cart-line-right { text-align: right; }
.cart-line-total { font-weight: 800; font-size: 13.5px; }
.cart-remove { font-size: 11px; color: var(--muted); text-decoration: underline; cursor: pointer; background: none; border: none; padding: 0; }
.cart-summary { margin-top: 20px; }
.cart-total-row { display: flex; justify-content: space-between; font-weight: 800; font-size: 16px; margin-bottom: 16px; }
.cart-note { font-size: 11px; color: var(--muted); text-align: center; }
.cart-success { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 16px; }
.cart-success .check { font-size: 40px; }
.cart-success .title { font-weight: 700; font-size: 16px; }
.cart-success .desc { font-size: 13.5px; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--tint-green-2); border-top: 1px solid var(--border); margin-top: 40px; }
.footer-grid { max-width: 1240px; margin: 0 auto; padding: 48px 28px 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.footer-brand { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 10px; }
.footer-desc { font-size: 13px; color: var(--muted-soft); margin-bottom: 14px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social { width: 32px; height: 32px; border-radius: 50%; background: #fff; border: 1px solid var(--border); }
.footer-title { font-weight: 700; font-size: 13.5px; margin-bottom: 12px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; color: var(--muted-strong); }
.footer-links a { text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-contact { font-size: 13.5px; color: var(--muted-strong); display: flex; flex-direction: column; gap: 8px; }
.footer-bottom { max-width: 1240px; margin: 0 auto; padding: 16px 28px 28px; border-top: 1px solid var(--border); font-size: 12px; color: var(--muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .hero-text h1 { font-size: 32px; }
  .btn-phone span.label { display: none; }
  .header-inner { padding: 12px 16px; }
  .container, .hero, .section, .filters, .faq-list, .product-grid, .page-header { padding-left: 16px; padding-right: 16px; }
}
