@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cream: #F7F3EC; --cream-dark: #EDE6D8;
  --forest: #2C4A2E; --forest-light: #3D6B40;
  --moss: #6B8C4E; --white: #FEFCF8;
  --ink: #1A1A18; --ink-light: #4A4A42;
  --gold: #D4A843; --spore: #9FB88A;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius-lg: 16px;
  --shadow: 0 8px 40px rgba(44,74,46,0.1);
  --shadow-hover: 0 16px 60px rgba(44,74,46,0.18);
  --nav-h: 70px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--ink); overflow-x: hidden; padding-top: var(--nav-h); }

/* DISCOUNT BANNER */
#discountBanner {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 98;
  background: linear-gradient(135deg, #D4A843, #B8922E);
  color: #1A1A18; padding: 0.65rem 4vw;
  align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
  animation: slideDown 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 4px 20px rgba(212,168,67,0.35);
}
#discountBanner.show { display: flex; }
@keyframes slideDown { from { transform: translateY(-100%); opacity:0; } to { transform: translateY(0); opacity:1; } }
.banner-text { font-size: 0.88rem; font-weight: 600; text-align: center; }
.banner-code { background: rgba(0,0,0,0.18); border-radius: 5px; padding: 0.15rem 0.6rem; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.1em; font-family: monospace; }
.banner-shop-btn { background: var(--forest); color: var(--white); border: none; border-radius: 20px; padding: 0.32rem 0.9rem; font-size: 0.8rem; font-weight: 700; cursor: pointer; font-family: var(--font-body); transition: background 0.2s; white-space: nowrap; text-decoration: none; display: inline-block; }
.banner-shop-btn:hover { background: var(--forest-light); }
.banner-close { background: rgba(0,0,0,0.18); border: none; border-radius: 50%; width: 24px; height: 24px; cursor: pointer; font-size: 0.8rem; color: #1A1A18; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.banner-close:hover { background: rgba(0,0,0,0.28); }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h); background: rgba(254,252,248,0.94); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(44,74,46,0.1); display: flex; align-items: center; justify-content: space-between; padding: 0 5vw; }
.nav-logo { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--forest); text-decoration: none; letter-spacing: -0.02em; display: flex; align-items: center; gap: 10px; }
.nav-logo span { display: inline-block; width: 36px; height: 36px; background: var(--forest); border-radius: 50%; position: relative; overflow: hidden; flex-shrink: 0; }
.nav-logo span::before { content: ''; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); width: 14px; height: 16px; background: var(--gold); border-radius: 2px; }
.nav-logo span::after { content: ''; position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); width: 26px; height: 10px; background: var(--spore); border-radius: 30px 30px 0 0; }
.nav-logo-img { width: 360px; height: 50px; border-radius: 50%; object-fit: cover; flex-shrink: 0; display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--ink-light); text-decoration: none; letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-cta { background: var(--forest) !important; color: var(--white) !important; padding: 0.55rem 1.4rem; border-radius: 40px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--forest-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--forest); border-radius: 2px; }
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid rgba(44,74,46,0.1); padding: 1.5rem 5vw 2rem; z-index: 99; flex-direction: column; gap: 1.2rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; font-weight: 500; color: var(--ink); text-decoration: none; padding: 0.5rem 0; border-bottom: 1px solid rgba(44,74,46,0.08); }

/* HERO */
.hero { min-height: calc(100vh - var(--nav-h)); background: var(--cream); display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 6rem 5vw 4rem; gap: 4rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(107,140,78,0.12) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero-text { animation: fadeUp 0.8s ease both; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(44,74,46,0.08); color: var(--forest); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 40px; margin-bottom: 1.5rem; }
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.8rem,5vw,4.2rem); line-height: 1.1; color: var(--forest); margin-bottom: 1.2rem; letter-spacing: -0.02em; }
.hero h1 em { color: var(--moss); font-style: italic; }
.hero p { font-size: 1.05rem; color: var(--ink-light); line-height: 1.75; max-width: 420px; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { background: var(--forest); color: var(--white); padding: 0.85rem 2rem; border-radius: 40px; font-size: 0.95rem; font-weight: 600; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; display: inline-block; text-decoration: none; font-family: var(--font-body); }
.btn-primary:hover { background: var(--forest-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--forest); padding: 0.85rem 2rem; border-radius: 40px; border: 1.5px solid var(--forest); font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.2s; display: inline-block; text-decoration: none; font-family: var(--font-body); }
.btn-outline:hover { background: var(--forest); color: var(--white); }
.hero-visual { display: flex; align-items: center; justify-content: center; animation: fadeUp 0.8s 0.2s ease both; }
.hero-img-wrap { width: min(480px,90%); position: relative; }
.hero-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 24px; display: block; box-shadow: var(--shadow-hover); }
.hero-badge { position: absolute; bottom: -16px; right: 16px; background: var(--gold); color: var(--forest); border-radius: var(--radius-lg); padding: 0.8rem 1.2rem; font-size: 0.78rem; font-weight: 700; text-align: center; box-shadow: var(--shadow); }

/* STATS */
.stats-bar { background: var(--forest); padding: 2.5rem 5vw; display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 2rem; text-align: center; }
.stat-item { color: var(--white); }
.stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold); display: block; }
.stat-label { font-size: 0.82rem; font-weight: 500; opacity: 0.75; letter-spacing: 0.06em; text-transform: uppercase; }

/* ABOUT */
.about-strip { padding: 5rem 5vw; background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.section-tag { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--moss); margin-bottom: 0.8rem; display: block; }
.section-h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.6rem); line-height: 1.2; color: var(--forest); margin-bottom: 1.2rem; }
.body-text { color: var(--ink-light); line-height: 1.8; font-size: 0.98rem; margin-bottom: 1rem; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 1.5rem; }
.feature-card { background: var(--cream); border-radius: var(--radius-lg); padding: 1.2rem; }
.feature-icon { width: 40px; height: 40px; background: var(--forest); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.7rem; }
.feature-card h4 { font-weight: 600; font-size: 0.9rem; color: var(--forest); margin-bottom: 0.3rem; }
.feature-card p { font-size: 0.82rem; color: var(--ink-light); line-height: 1.5; }
.mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; gap: 12px; }
.mosaic-block { border-radius: var(--radius-lg); overflow: hidden; }
.mosaic-block:first-child { grid-row: 1/3; background: var(--forest); display: flex; align-items: center; justify-content: center; }
.mosaic-block:nth-child(2) { background: var(--cream-dark); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 6px; }
.mosaic-block:nth-child(3) { background: var(--moss); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 6px; }

/* PAGE HERO */
.page-hero { background: var(--cream); padding: 5rem 5vw 4rem; text-align: center; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.5rem); color: var(--forest); margin-bottom: 0.8rem; }
.page-hero p { color: var(--ink-light); max-width: 540px; margin: 0 auto; font-size: 1rem; line-height: 1.7; }

/* PRODUCTS */
.products-section { padding: 4rem 5vw 5rem; background: var(--white); }
.products-filter { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 2.5rem; justify-content: center; }
.filter-btn { background: transparent; border: 1.5px solid var(--cream-dark); color: var(--ink-light); padding: 0.5rem 1.3rem; border-radius: 40px; font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all 0.2s; font-family: var(--font-body); }
.filter-btn.active, .filter-btn:hover { background: var(--forest); border-color: var(--forest); color: var(--white); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(255px,1fr)); gap: 1.8rem; }
.product-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid rgba(44,74,46,0.1); overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-img { height: 185px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--forest); font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.7rem; border-radius: 40px; text-transform: uppercase; letter-spacing: 0.05em; }
.product-info { padding: 1.3rem; }
.product-name { font-family: var(--font-display); font-size: 1.12rem; font-weight: 700; color: var(--forest); margin-bottom: 0.35rem; }
.product-desc { font-size: 0.83rem; color: var(--ink-light); line-height: 1.6; margin-bottom: 0.6rem; }
.product-weight { font-size: 0.76rem; color: var(--moss); font-weight: 600; margin-bottom: 0.9rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-price { font-size: 1.05rem; font-weight: 700; color: var(--forest); }
.product-price span { font-size: 0.76rem; font-weight: 400; color: var(--ink-light); }

/* WhatsApp Buy Button */
.buy-btn {
  background: #25D366; color: #fff;
  border: none; border-radius: 40px; padding: 0.52rem 1.1rem;
  font-size: 0.83rem; font-weight: 700; cursor: pointer;
  transition: background 0.2s, transform 0.15s; font-family: var(--font-body);
  display: inline-flex; align-items: center; gap: 5px; text-decoration: none;
  white-space: nowrap;
}
.buy-btn:hover { background: #1DA855; transform: translateY(-1px); }
.buy-btn svg { width: 15px; height: 15px; flex-shrink: 0; fill: #fff; }

/* RECIPES */
.recipes-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 2rem; padding: 4rem 5vw; }
.recipe-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid rgba(44,74,46,0.1); overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; }
.recipe-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.recipe-img { height: 190px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; overflow: hidden; }
.recipe-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.recipe-meta-tags { position: absolute; bottom: 12px; left: 12px; display: flex; gap: 6px; }
.tag { background: rgba(254,252,248,0.9); color: var(--forest); font-size: 0.7rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 40px; }
.recipe-info { padding: 1.3rem; }
.recipe-name { font-family: var(--font-display); font-size: 1.12rem; font-weight: 700; color: var(--forest); margin-bottom: 0.35rem; }
.recipe-desc { font-size: 0.84rem; color: var(--ink-light); line-height: 1.6; margin-bottom: 0.9rem; }
.recipe-stats { display: flex; gap: 1rem; margin-bottom: 1.1rem; }
.recipe-stat { font-size: 0.77rem; color: var(--ink-light); }
.recipe-stat strong { color: var(--forest); }
.view-recipe-btn { width: 100%; background: var(--cream); color: var(--forest); border: 1.5px solid rgba(44,74,46,0.2); border-radius: 40px; padding: 0.68rem; font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: var(--font-body); }
.view-recipe-btn:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }

/* MODAL */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(26,26,24,0.65); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--white); border-radius: 24px; width: 100%; max-width: 490px; max-height: 90vh; overflow-y: auto; padding: 2.5rem; position: relative; animation: modalIn 0.3s ease; }
@keyframes modalIn { from { transform: scale(0.94) translateY(20px); opacity:0; } to { transform: scale(1) translateY(0); opacity:1; } }
.modal-close { position: absolute; top: 1.2rem; right: 1.2rem; background: var(--cream); border: none; width: 33px; height: 33px; border-radius: 50%; cursor: pointer; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; color: var(--ink); }
.modal-close:hover { background: var(--cream-dark); }
.recipe-full-content h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--forest); margin-bottom: 0.7rem; }
.recipe-full-content ul, .recipe-full-content ol { padding-left: 1.4rem; color: var(--ink-light); font-size: 0.87rem; line-height: 1.85; margin-bottom: 1.2rem; }
.tip-box { background: var(--cream); border-radius: 12px; padding: 1rem; margin-top: 0.5rem; }
.tip-box strong { color: var(--forest); font-size: 0.84rem; }
.tip-box p { font-size: 0.82rem; color: var(--ink-light); margin-top: 0.3rem; line-height: 1.6; }
.modal-video { margin-bottom: 1.5rem; border-radius: 12px; overflow: hidden; background: #1a1a18; aspect-ratio: 16/9; position: relative; }
.modal-video iframe { width: 100%; height: 100%; display: block; border: none; }
.video-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: rgba(255,255,255,0.5); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; position: absolute; inset: 0; }

/* CONTACT */
.contact-section { padding: 5rem 5vw; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; max-width: 1100px; margin: 0 auto; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-icon { width: 44px; height: 44px; background: var(--cream); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-item h4 { font-weight: 600; font-size: 0.9rem; color: var(--forest); }
.contact-item p { font-size: 0.85rem; color: var(--ink-light); line-height: 1.5; margin-top: 2px; }
.contact-form-box { background: var(--cream); border-radius: 24px; padding: 2.5rem; }
.contact-form-box h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--forest); margin-bottom: 0.4rem; }
.contact-form-box > p { font-size: 0.87rem; color: var(--ink-light); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 0.35rem; }
.form-group input { width: 100%; padding: 0.72rem 1rem; border: 1.5px solid rgba(44,74,46,0.2); border-radius: 10px; font-size: 0.93rem; font-family: var(--font-body); color: var(--ink); background: var(--white); transition: border-color 0.2s; outline: none; }
.form-group input:focus { border-color: var(--forest); }
.form-group select { width: 100%; padding: 0.72rem 1rem; border: 1.5px solid rgba(44,74,46,0.2); border-radius: 10px; font-size: 0.93rem; font-family: var(--font-body); color: var(--ink); background: var(--white); outline: none; }
.form-submit { width: 100%; background: var(--forest); color: var(--white); border: none; border-radius: 40px; padding: 0.9rem; font-size: 0.97rem; font-weight: 600; cursor: pointer; transition: background 0.2s; font-family: var(--font-body); margin-top: 0.2rem; }
.form-submit:hover { background: var(--forest-light); }
.success-msg { display: none; text-align: center; padding: 0.8rem 1rem; background: rgba(107,140,78,0.12); border-radius: 10px; color: var(--forest); font-weight: 600; margin-bottom: 1rem; font-size: 0.88rem; line-height: 1.5; }
.success-msg.show { display: block; }

/* FOOTER */
footer { background: var(--forest); color: var(--white); padding: 4rem 5vw 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); margin-bottom: 0.7rem; }
.footer-brand p { font-size: 0.85rem; opacity: 0.7; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.55; margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.87rem; opacity: 0.75; color: var(--white); text-decoration: none; margin-bottom: 0.55rem; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.82rem; opacity: 0.5; }
.social-links { display: flex; gap: 1rem; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.85rem; cursor: pointer; transition: background 0.2s; text-decoration: none; font-weight: 700; }
.social-link:hover { background: rgba(255,255,255,0.2); }

/* TOAST */
.toast { position: fixed; bottom: 2rem; right: 2rem; z-index: 300; background: var(--forest); color: var(--white); padding: 1rem 1.5rem; border-radius: 12px; font-size: 0.88rem; font-weight: 500; box-shadow: var(--shadow); transform: translateY(120px); opacity: 0; transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1); max-width: 310px; pointer-events: none; }
.toast.show { transform: translateY(0); opacity: 1; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }

.pc-white { background: linear-gradient(135deg,#EEEEED,#D2D2CE); }
.pc-grey { background: linear-gradient(135deg,#D5D8DE,#ACAEB8); }
.pc-pink { background: linear-gradient(135deg,#EDD8E5,#D4A8C5); }
.pc-dried { background: linear-gradient(135deg,#ECE0C5,#CCAA78); }
.pc-chutney { background: linear-gradient(135deg,#E8DEC8,#C5A868); }
.pc-soup { background: linear-gradient(135deg,#D8E5EC,#A0C0CC); }
.pc-pickle { background: linear-gradient(135deg,#EDD5C0,#C8956A); }
.rc1 { background: linear-gradient(135deg,#2C4A2E,#3D6B40); }
.rc2 { background: linear-gradient(135deg,#4A3A2C,#6B5540); }
.rc3 { background: linear-gradient(135deg,#2C3A4A,#40556A); }
.rc4 { background: linear-gradient(135deg,#3A2C4A,#554060); }
.rc5 { background: linear-gradient(135deg,#4A4A2C,#646440); }
.rc6 { background: linear-gradient(135deg,#2C4A44,#406B64); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; padding: 3rem 5vw 4rem; text-align: center; }
  .hero-visual { order: -1; }
  .hero p { margin: 0 auto 2rem; }
  .hero-btns { justify-content: center; }
  .hero-img-wrap { width: 280px; }
  .about-strip { grid-template-columns: 1fr; gap: 2.5rem; }
  .mosaic { display: none; }
  .contact-section { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .modal-box { padding: 1.8rem; }
}
