/* Cukravia — self-hosted fonts, no external CDN */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latinext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0300-0304, U+0308, U+0329, U+1E00-1EFF;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/nunito-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/nunito-latinext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0300-0304, U+0308, U+0329, U+1E00-1EFF;
}

:root {
  --bg: oklch(97% 0.014 75);
  --text: oklch(32% 0.045 45);
  --text-dark: oklch(24% 0.05 40);
  --text-muted: oklch(45% 0.04 45);
  --text-light: oklch(40% 0.04 45);
  --primary: oklch(55% 0.13 15);
  --primary-dark: oklch(45% 0.08 45);
  --accent: oklch(62% 0.1 55);
  --badge-bg: oklch(94% 0.03 10);
  --badge-text: oklch(50% 0.1 15);
  --surface-warm: oklch(94% 0.05 60);
  --surface-warm2: oklch(90% 0.05 60);
  --dark: oklch(24% 0.05 40);
  --border: oklch(90% 0.03 60);
  --border-2: oklch(88% 0.03 60);
  --shadow: 0 4px 18px rgba(80,50,30,0.08);
  --shadow-sm: 0 4px 18px rgba(80,50,30,0.06);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', 'Segoe UI', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; color: var(--text-dark); margin: 0; }
a { color: var(--primary); text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
p { margin: 0; }
ul { margin: 0; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-md { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.container-cart { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.section { padding: 64px 0; }
.section-sm { padding: 48px 0; }
.section-tint { background: var(--surface-warm); }
.section-tint2 { background: var(--surface-warm2); }
.section-badge-bg { background: var(--badge-bg); }
.section-dark { background: var(--dark); color: white; }

.eyebrow { display: inline-block; background: var(--badge-bg); color: var(--badge-text); font-weight: 800; font-size: 13px; padding: 6px 14px; border-radius: 20px; margin-bottom: 18px; }
.eyebrow-accent { background: var(--accent); color: oklch(20% 0.04 40); }

.btn { display: inline-block; border: none; cursor: pointer; font-weight: 800; font-size: 15px; padding: 15px 28px; border-radius: 10px; text-decoration: none; font-family: 'Nunito', sans-serif; text-align: center; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--accent); color: var(--text-light); padding: 13px 26px; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-light { background: var(--badge-bg); color: oklch(30% 0.1 15); }
.btn-sm { padding: 9px 14px; border-radius: 8px; font-size: 12.5px; }
.btn-block { display: block; width: 100%; }

/* ===== Header ===== */
.promo-bar { background: var(--accent); color: oklch(99% 0.006 75); text-align: center; padding: 8px 16px; font-size: 13px; font-weight: 700; }
.site-header { background: var(--bg); border-bottom: 1px solid var(--border); }
.header-inner { max-width: 1240px; margin: 0 auto; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 700; color: var(--text-dark); }
.main-nav { display: flex; gap: 22px; flex-wrap: wrap; font-size: 15px; font-weight: 700; }
.main-nav a { color: var(--text); }
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.phone-link { font-size: 14px; font-weight: 700; color: var(--text); white-space: nowrap; }
.cart-link { position: relative; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--badge-bg); color: oklch(30% 0.05 20); font-size: 20px; }
.cart-badge { position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px; border-radius: 10px; background: oklch(55% 0.15 25); color: #fff; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; padding: 0 5px; }
.nav-toggle { display: none; }

.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--dark); color: var(--bg); padding: 18px 24px; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; font-size: 14px; box-shadow: 0 -4px 20px rgba(0,0,0,0.15); }
.cookie-banner p { max-width: 640px; }
.cookie-banner a { color: oklch(80% 0.05 60); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { padding: 10px 18px; border-radius: 8px; font-weight: 700; cursor: pointer; font-size: 13px; }
.cookie-btn-reject { border: 1px solid oklch(60% 0.02 60); background: transparent; color: var(--bg); }
.cookie-btn-accept { border: none; background: oklch(72% 0.09 10); color: var(--dark); font-weight: 800; }

/* ===== Footer ===== */
.site-footer { background: var(--dark); color: oklch(90% 0.02 60); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 36px; padding: 56px 0 32px; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: oklch(97% 0.014 75); margin-bottom: 12px; }
.footer-desc { font-size: 14px; line-height: 1.7; color: oklch(80% 0.02 60); max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: oklch(32% 0.04 45); display: flex; align-items: center; justify-content: center; font-size: 16px; color: oklch(90% 0.02 60); text-decoration: none; }
.footer-heading { font-weight: 800; color: oklch(97% 0.014 75); margin-bottom: 14px; font-size: 15px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-links a { color: oklch(90% 0.02 60); text-decoration: none; }
.footer-links a:hover { color: oklch(99% 0.006 75); text-decoration: underline; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: oklch(85% 0.02 60); }
.footer-bottom { border-top: 1px solid oklch(35% 0.04 45); padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: oklch(70% 0.02 55); }

/* ===== Hero ===== */
.hero { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 64px 0; }
.hero h1 { font-size: 56px; line-height: 1.08; margin: 0 0 20px; }
.hero p.lead { font-size: 17px; line-height: 1.7; color: var(--text-light); margin: 0 0 28px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.hero-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 700; color: var(--text-dark); }
.hero-stat-label { font-size: 13px; color: var(--text-muted); }
.media { border-radius: 24px; overflow: hidden; background: var(--surface-warm); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media-460 { height: 460px; }
.media-380 { height: 380px; }
.media-340 { height: 340px; border-radius: 20px; }
.media-180 { height: 180px; }
.media-200 { height: 180px; }

/* ===== Page hero banners ===== */
.page-hero { padding: 48px 0; text-align: center; }
.page-hero h1 { font-size: 44px; margin: 0 0 12px; }
.page-hero p { font-size: 16px; max-width: 620px; margin: 0 auto; color: var(--text-light); }
.page-hero--dark { background: var(--dark); color: #fff; }
.page-hero--dark h1 { color: #fff; }
.page-hero--dark p { color: oklch(85% 0.02 60); }
.page-hero--wide h1 { font-size: 44px; max-width: 800px; margin: 0 auto 12px; }
.page-hero--wide p { max-width: 660px; }

/* ===== Grids ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-4-tight { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ===== Category / product cards ===== */
.category-card { text-decoration: none; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: block; }
.category-card-body { padding: 16px; }
.category-card-title { font-weight: 800; color: var(--text-dark); font-size: 16px; }
.category-card-sub { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

.product-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.product-card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card-body.lg { padding: 20px; gap: 10px; }
.product-name { font-weight: 800; color: var(--text-dark); font-size: 15px; }
.product-name.lg { font-size: 17px; }
.product-desc { font-size: 12.5px; color: var(--text-muted); flex: 1; line-height: 1.5; }
.product-desc.lg { font-size: 13.5px; line-height: 1.6; }
.product-sizes { font-size: 12px; color: oklch(55% 0.08 55); font-weight: 700; }
.product-row { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.product-price { font-weight: 800; color: var(--badge-text); font-size: 15px; }
.product-price.lg { font-size: 18px; }

.tag-pill-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.tag-pill { background: #fff; border: 1px solid var(--border-2); padding: 10px 18px; border-radius: 20px; font-weight: 700; font-size: 13.5px; color: var(--text-light); }

/* ===== Features / values / testimonials ===== */
.feature-item { text-align: center; }
.feature-icon { font-size: 34px; margin-bottom: 10px; }
.feature-title { font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.feature-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

.value-card, .testimonial-card { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.value-icon { font-size: 30px; margin-bottom: 10px; }
.value-title { font-weight: 800; color: var(--text-dark); margin-bottom: 8px; font-size: 16px; }
.value-desc { font-size: 13.5px; line-height: 1.7; color: var(--text-muted); }
.stars { color: var(--accent); margin-bottom: 10px; }
.testimonial-quote { font-size: 14.5px; line-height: 1.7; color: oklch(35% 0.04 45); margin: 0 0 14px; }
.testimonial-author { font-weight: 800; color: var(--text-dark); font-size: 13.5px; }

/* ===== Timeline (about) ===== */
.timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.timeline-year { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--primary); margin-bottom: 8px; text-align: center; }
.timeline-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; text-align: center; }

/* ===== Team ===== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-member { text-align: center; }
.team-avatar { width: 140px; height: 140px; border-radius: 50%; overflow: hidden; margin: 0 auto 14px; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 800; color: var(--text-dark); font-size: 15px; }
.team-role { font-size: 12.5px; color: var(--text-muted); }

/* ===== Collections ===== */
.collections-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.collection-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr 1.1fr; }
.collection-media { min-height: 220px; }
.collection-media img { width: 100%; height: 100%; object-fit: cover; }
.collection-body { padding: 26px; display: flex; flex-direction: column; gap: 10px; }
.collection-tag { font-size: 12px; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: 0.04em; }
.collection-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: var(--text-dark); }
.collection-desc { font-size: 13.5px; line-height: 1.7; color: var(--text-muted); flex: 1; }
.collection-cta { font-weight: 800; font-size: 13.5px; margin-top: 4px; }

/* ===== Seasonal banner ===== */
.seasonal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.seasonal-desc { font-size: 15px; line-height: 1.7; color: oklch(85% 0.02 60); margin: 0 0 24px; }

/* ===== Newsletter ===== */
.newsletter-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.newsletter-form input { padding: 14px 18px; border-radius: 10px; border: 1px solid oklch(80% 0.04 60); font-size: 14px; width: 280px; font-family: 'Nunito', sans-serif; }
.newsletter-success { margin-top: 14px; color: oklch(45% 0.1 145); font-weight: 700; font-size: 14px; }
.newsletter-success[hidden] { display: none; }

/* ===== CTA card (cakes/giftsets) ===== */
.cta-card { background: #fff; border-radius: 20px; padding: 36px; box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.cta-card ul { font-size: 14px; line-height: 1.9; color: var(--text-light); padding-left: 20px; margin: 0; }
.cta-center { text-align: center; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-info-list { display: flex; flex-direction: column; gap: 18px; }
.contact-info-item { background: #fff; border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); display: flex; gap: 14px; align-items: flex-start; }
.contact-info-icon { font-size: 22px; }
.contact-info-title { font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.contact-info-text { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
.contact-form-card { background: #fff; border-radius: 20px; padding: 32px; box-shadow: var(--shadow); }
.form-group { display: flex; flex-direction: column; gap: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-control { padding: 13px 16px; border-radius: 10px; border: 1px solid oklch(85% 0.03 60); font-size: 14px; font-family: 'Nunito', sans-serif; width: 100%; }
.form-control.sm { padding: 12px 14px; border-radius: 9px; font-size: 13.5px; }
textarea.form-control { resize: vertical; }
.consent-label { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: var(--text-muted); }
.form-success { text-align: center; padding: 40px 0; }
.form-success[hidden] { display: none; }
.form-success .icon { font-size: 40px; margin-bottom: 14px; }
.form-success .title { font-weight: 800; font-size: 18px; color: var(--text-dark); margin-bottom: 8px; }
.form-success .sub { font-size: 14px; color: var(--text-muted); }

/* ===== Cart ===== */
.cart-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-item { background: #fff; border-radius: 14px; padding: 18px; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 16px; }
.cart-item-thumb { width: 64px; height: 64px; border-radius: 10px; background: var(--surface-warm2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 800; color: var(--text-dark); font-size: 14.5px; }
.cart-item-price { font-size: 13px; color: var(--badge-text); font-weight: 700; margin-top: 4px; }
.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--border-2); background: #fff; cursor: pointer; font-weight: 800; }
.cart-item-total { width: 70px; text-align: right; font-weight: 800; color: var(--text-dark); font-size: 14px; }
.cart-item-remove { background: none; border: none; color: oklch(55% 0.1 30); cursor: pointer; font-size: 18px; }
.cart-summary { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); position: sticky; top: 24px; }
.summary-title { font-weight: 800; font-size: 17px; color: var(--text-dark); margin-bottom: 18px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; color: var(--text-light); }
.summary-total { border-top: 1px solid var(--border); padding-top: 14px; display: flex; justify-content: space-between; font-weight: 800; font-size: 17px; color: var(--text-dark); margin-bottom: 20px; }
.summary-note { font-size: 11.5px; color: oklch(55% 0.04 45); text-align: center; margin-top: 10px; }
.empty-state, .order-success { background: #fff; border-radius: 20px; padding: 64px; text-align: center; box-shadow: var(--shadow); }
.order-success { padding: 56px; }
.order-success .icon { font-size: 48px; margin-bottom: 16px; }
.order-success .title { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--text-dark); margin-bottom: 10px; }
.order-success .sub { font-size: 14.5px; color: var(--text-muted); margin-bottom: 24px; }
.empty-state .icon { font-size: 44px; margin-bottom: 14px; }
.empty-state .msg { font-size: 16px; color: var(--text-light); margin-bottom: 20px; }
[hidden] { display: none !important; }

/* ===== Legal pages ===== */
.legal-content { padding: 56px 0 72px; line-height: 1.75; font-size: 14.5px; color: oklch(35% 0.04 45); }
.legal-content h1 { font-size: 38px; margin: 0 0 8px; }
.legal-content .updated { color: oklch(50% 0.03 45); margin: 0 0 32px; font-size: 13px; }
.legal-content h2 { font-size: 19px; margin: 28px 0 10px; }
.legal-content p { margin: 0 0 6px; }
.legal-content ul { padding-left: 20px; }
.legal-content table { width: 100%; border-collapse: collapse; font-size: 13.5px; margin: 8px 0; }
.legal-content th, .legal-content td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); }
.legal-content th { color: var(--text-dark); font-weight: 800; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .grid-4, .grid-4-tight { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero, .grid-2, .seasonal-grid, .cta-card, .contact-grid, .cart-grid, .about-hero-grid { grid-template-columns: 1fr; }
  .collections-grid { grid-template-columns: 1fr; }
  .collection-card { grid-template-columns: 1fr; }
  .collection-media { min-height: 200px; }
  .main-nav { order: 3; width: 100%; justify-content: flex-start; gap: 16px; }
  .cta-center { text-align: left; margin-top: 12px; }
}
@media (max-width: 640px) {
  .grid-3, .grid-4, .grid-4-tight { grid-template-columns: repeat(1, 1fr); }
  .hero h1 { font-size: 38px; }
  .page-hero h1 { font-size: 32px; }
  .form-row-2, .cta-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-inner { padding: 14px 16px; }
  .promo-bar { font-size: 12px; }
  .cookie-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form input { width: 100%; }
}
