/* ===== Base & Reset ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ink: #18251e;
  --green: #2a7f5d;
  --green-dark: #1e5f44;
  --green-soft: #e7f2ea;
  --gold: #d9a441;
  --gold-dark: #b8872e;
  --cream: #faf7f0;
  --cream-2: #f2ecdd;
  --white: #ffffff;
  --muted: #66746b;
  --line: #e6dfd0;
  --danger: #c0392b;
  --shadow: 0 10px 32px rgba(24, 37, 30, 0.10);
  --radius: 16px;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --font-display: "Poppins", "Segoe UI", Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
a { color: var(--green-dark); }

.container { width: min(1140px, 92%); margin: 0 auto; }

.hidden { display: none !important; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.25; color: var(--ink); font-weight: 700; }

.center { text-align: center; }
.tiny { font-size: 0.8rem; color: var(--muted); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0 6px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo { display: inline-flex; }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--ink); letter-spacing: 0.2px; }
.brand-tagline { font-size: 0.7rem; color: var(--gold-dark); font-style: italic; letter-spacing: 0.6px; }

.header-tools { display: flex; align-items: center; gap: 12px; }

.lang-select {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  cursor: pointer;
}
.lang-select:focus { outline: 2px solid var(--gold); }

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.cart-btn:hover { background: var(--green-soft); transform: translateY(-2px); }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.nav-row { padding-bottom: 8px; }
.main-nav { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 4px; }
.nav-link {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover { background: var(--green-soft); color: var(--green-dark); }
.nav-cta { background: var(--green); color: var(--white); }
.nav-cta:hover { background: var(--green-dark); color: var(--white); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 3px; background: var(--ink); border-radius: 2px; transition: 0.3s; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 12px 26px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--green-dark); border-color: var(--green); }
.btn-outline:hover { background: var(--green-soft); }
.btn-secondary { background: var(--cream-2); color: var(--ink); border-color: var(--line); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-small { padding: 9px 18px; font-size: 0.86rem; }
.btn-block { width: 100%; }

/* ===== Hero ===== */
.hero { padding: 70px 0 78px; background: radial-gradient(circle at 85% 12%, #f4e7c8, transparent 42%), var(--cream); }
.hero-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
.hero-kicker { color: var(--gold-dark); font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 14px; }
.hero h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); margin-bottom: 16px; }
.hero-sub { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin-bottom: 26px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-features { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-features li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--green-dark);
}

.hero-art { display: flex; justify-content: center; }
.mushroom-basket { position: relative; width: 240px; height: 250px; }
.msh {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 2px solid var(--line);
  border-bottom: none;
  border-radius: 50% 50% 6px 6px;
  box-shadow: var(--shadow);
}
.msh::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 30px;
  background: var(--white);
  border: 2px solid var(--line);
  border-top: none;
  border-radius: 0 0 4px 4px;
}
.msh1 { width: 84px; height: 46px; top: 10px; }
.msh2 { width: 100px; height: 54px; top: 44px; }
.msh3 { width: 120px; height: 62px; top: 84px; }
.basket {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px; height: 58px;
  background: linear-gradient(180deg, #ecd3a2, #d0ac6d);
  border-radius: 8px 8px 20px 20px;
  border: 2px solid var(--gold-dark);
}

/* ===== Sections ===== */
.section { padding: 74px 0; }
.section-alt { background: var(--cream-2); }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 40px; }
.eyebrow { color: var(--gold-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 1.8px; font-size: 0.78rem; margin-bottom: 8px; }
.section-head h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 10px; }
.lead { color: var(--muted); font-size: 1.02rem; }

/* ===== Explore tabs ===== */
.tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.tab-btn {
  border: 2px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.tab-btn:hover { border-color: var(--gold); }
.tab-btn.active { background: var(--green); border-color: var(--green); color: var(--white); }
.tab-panel { display: none; animation: fadeIn 0.35s ease; }
.tab-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 30px; align-items: start; }
.split h3, .cards h3, .guide-block h3, .modal-box h3, .suggestion-box h3, .contact-box h3, .settings-grid h3 { margin-bottom: 10px; }
.split p { color: var(--muted); margin-bottom: 12px; }
.fact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.fact-card ul { list-style: none; }
.fact-card li { padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 0.93rem; }
.fact-card li:last-child { border-bottom: none; }
.fact-card li::before { content: "🍄 "; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { color: var(--green-dark); font-size: 1.06rem; }
.card p { color: var(--muted); font-size: 0.94rem; }

.nutrition-wrap { max-width: 640px; margin: 0 auto; text-align: center; }
.nutrition-wrap h3 { margin-bottom: 18px; }
.nut-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.nut-table th, .nut-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.93rem; }
.nut-table th { background: var(--green); color: var(--white); font-family: var(--font-display); font-weight: 600; }
.nut-table tr:nth-child(even) td { background: var(--green-soft); }
.nutrition-wrap .tiny { margin-top: 12px; }

.faq-list { max-width: 720px; margin: 0 auto; }
.faq-list details { background: var(--white); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; padding: 16px 20px; }
.faq-list summary { font-weight: 700; cursor: pointer; }
.faq-list p { color: var(--muted); margin-top: 10px; font-size: 0.94rem; }

/* ===== Pricing ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
}
.price-card:hover { transform: translateY(-5px); }
.price-card.featured { border: 2px solid var(--green); position: relative; }
.price-card.featured::before {
  content: "★ Bestseller";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-icon { font-size: 2.1rem; }
.price-name { font-weight: 700; font-size: 1.1rem; margin: 8px 0 4px; }
.price-desc { color: var(--muted); font-size: 0.89rem; flex: 1; }
.price-amount { font-size: 1.9rem; font-weight: 800; color: var(--green-dark); margin: 12px 0 2px; }
.price-amount small { font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.price-per { color: var(--muted); font-size: 0.8rem; margin-bottom: 12px; }
.price-card .btn { margin-top: 6px; }
.price-note { margin-top: 26px; background: #fff6e2; border: 1px dashed var(--gold); border-radius: 12px; padding: 14px 20px; text-align: center; color: var(--ink); }

/* ===== Delivery ===== */
.delivery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.delivery-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: center; box-shadow: var(--shadow); }
.d-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.delivery-card h3 { color: var(--green-dark); font-size: 1.02rem; margin-bottom: 6px; }
.delivery-card p { color: var(--muted); font-size: 0.93rem; }
.section .tiny.center { display: block; margin-top: 18px; }

/* ===== Recipes ===== */
.recipe-toolbar { text-align: center; margin-bottom: 24px; }
.recipe-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.recipe-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.recipe-head { padding: 20px 20px 12px; border-bottom: 1px dashed var(--line); }
.recipe-head h3 { font-size: 1.12rem; color: var(--green-dark); margin-bottom: 6px; }
.recipe-meta { display: flex; gap: 14px; font-size: 0.82rem; color: var(--muted); font-weight: 600; flex-wrap: wrap; }
.recipe-desc { padding: 12px 20px 4px; color: var(--muted); font-size: 0.92rem; }
.recipe-body { padding: 10px 20px 20px; flex: 1; }
.recipe-body summary { font-weight: 700; color: var(--green-dark); cursor: pointer; margin-bottom: 8px; }
.recipe-body details { margin-bottom: 10px; }
.recipe-body h4 { font-size: 0.92rem; margin: 10px 0 6px; color: var(--gold-dark); }
.recipe-ing { list-style: disc; padding-left: 18px; color: var(--muted); font-size: 0.9rem; }
.recipe-steps { list-style: decimal; padding-left: 20px; color: var(--muted); font-size: 0.9rem; }
.recipe-del { align-self: flex-end; margin: 0 16px 16px; background: none; border: 1px solid var(--line); color: var(--danger); border-radius: 999px; padding: 6px 14px; font-size: 0.82rem; font-weight: 600; cursor: pointer; }
.recipe-del:hover { background: #fbeae7; border-color: var(--danger); }

/* ===== Guide ===== */
.guide-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 26px; align-items: start; }
.guide-block { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.guide-block label { display: block; font-weight: 600; margin: 14px 0 6px; font-size: 0.92rem; }
.guide-block input, .guide-block select, .guide-block textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
}
.guide-block input:focus, .guide-block textarea:focus, .guide-block select:focus { outline: 2px solid var(--gold); background: var(--white); }

.ingredients, .steps { list-style: none; }
.ingredients li { padding: 8px 0; border-bottom: 1px dashed var(--line); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.steps li { padding: 10px 0; border-bottom: 1px dashed var(--line); display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.guide-block > .btn { margin-top: 14px; }
.item-del { background: none; border: none; color: var(--danger); cursor: pointer; font-size: 1.05rem; font-weight: 700; flex-shrink: 0; }
.item-del:hover { transform: scale(1.2); }

/* ===== Modal ===== */
.modal { position: fixed; inset: 0; background: rgba(24, 37, 30, 0.55); display: flex; align-items: center; justify-content: center; z-index: 200; padding: 20px; }
.modal-box { background: var(--white); border-radius: var(--radius); padding: 26px; width: min(520px, 100%); box-shadow: var(--shadow); position: relative; animation: fadeIn 0.25s ease; max-height: 90vh; overflow-y: auto; }
.modal-wide { width: min(640px, 100%); }
.modal-box label { display: block; font-weight: 600; margin: 12px 0 6px; font-size: 0.92rem; }
.modal-box select, .modal-box textarea, .modal-box input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
}
.modal-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--muted); line-height: 1; }
.modal-actions { display: flex; gap: 12px; margin-top: 18px; justify-content: flex-end; }

/* ===== Videos ===== */
.video-toolbar { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.toolbar-hint { color: var(--muted); font-size: 0.86rem; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.video-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.video-frame { position: relative; padding-top: 56.25%; background: var(--ink); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card-body { padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.video-card-body h3 { font-size: 0.96rem; margin: 0; }
.video-card-body .item-del { font-size: 1.25rem; }
.empty-state { grid-column: 1 / -1; text-align: center; color: var(--muted); background: var(--white); border: 1px dashed var(--line); border-radius: var(--radius); padding: 40px; }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow); background: var(--cream-2); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-ph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(160deg, #e7f2ea, #f2ecdd); font-size: 2.2rem; }
.gallery-ph span { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; color: var(--green-dark); }
.gallery-del { position: absolute; top: 8px; right: 8px; background: rgba(255, 255, 255, 0.92); border: none; color: var(--danger); width: 30px; height: 30px; border-radius: 50%; font-size: 1rem; font-weight: 700; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }

/* ===== Testimonials ===== */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.testimonial-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); display: flex; flex-direction: column; position: relative; }
.testimonial-card::before { content: "“"; position: absolute; top: 6px; left: 16px; font-size: 3rem; color: var(--gold); font-family: var(--font-display); line-height: 1; }
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 10px; }
.testimonial-text { color: var(--ink); font-size: 0.94rem; font-style: italic; flex: 1; }
.testimonial-who { margin-top: 14px; display: flex; align-items: center; gap: 10px; }
.test-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--green); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-display); font-size: 0.9rem; }
.testimonial-who strong { display: block; font-size: 0.92rem; }
.testimonial-who small { color: var(--muted); }
.testimonial-del { position: absolute; top: 14px; right: 14px; background: none; border: none; color: var(--muted); cursor: pointer; font-size: 1.1rem; }
.testimonial-del:hover { color: var(--danger); }

/* ===== Feedback ===== */
.feedback-layout { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 26px; align-items: start; }
.feedback-form, .suggestion-box, .contact-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.92rem; }
.form-group input, .form-group select, .form-group textarea, .suggestion-box textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus, .suggestion-box textarea:focus { outline: 2px solid var(--gold); background: var(--white); }

.star-row { display: flex; gap: 6px; font-size: 1.7rem; cursor: pointer; user-select: none; }
.star { color: #d8cdb8; transition: color 0.15s, transform 0.15s; }
.star.active { color: var(--gold); }
.star:hover { transform: scale(1.15); }

.form-success { margin-top: 14px; color: var(--green-dark); font-weight: 600; background: var(--green-soft); padding: 10px 14px; border-radius: 8px; }

.feedback-side { display: flex; flex-direction: column; gap: 20px; }
.suggestion-box textarea, .suggestion-box .btn { margin-top: 10px; }
.contact-box p { margin-bottom: 8px; font-size: 0.93rem; }

/* ===== Settings ===== */
.settings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; align-items: start; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #e7efea; padding: 44px 0 22px; margin-top: 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.1fr; gap: 36px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: #fff; }
.footer-tag { font-size: 0.74rem; color: var(--gold); font-style: italic; }
.footer-about { font-size: 0.9rem; color: #b9c9bf; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.footer-nav a { color: #b9c9bf; text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }

.newsletter { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.newsletter input {
  flex: 1;
  min-width: 160px;
  padding: 11px 14px;
  border: 1px solid #31493d;
  border-radius: 999px;
  background: #243830;
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
}
.newsletter input::placeholder { color: #8fa59a; }
.newsletter input:focus { outline: 2px solid var(--gold); }
.site-footer .form-success { background: #2b4a3b; color: #cdeccf; }

.footer-bottom { border-top: 1px solid #31493d; margin-top: 32px; padding-top: 18px; text-align: center; }
.copyright { font-size: 0.82rem; color: #8fa59a; }

/* ===== Cart drawer ===== */
.cart-backdrop { position: fixed; inset: 0; background: rgba(24, 37, 30, 0.5); z-index: 300; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100vw);
  height: 100vh;
  background: var(--white);
  z-index: 310;
  box-shadow: -10px 0 40px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform 0.32s ease;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-size: 1.1rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 22px; }
.cart-empty { color: var(--muted); text-align: center; margin-top: 30px; }
.cart-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.cart-item .ci-info { flex: 1; }
.cart-item .ci-name { font-weight: 600; font-size: 0.93rem; }
.cart-item .ci-price { color: var(--muted); font-size: 0.85rem; }
.qty-row { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); background: var(--cream); cursor: pointer; font-size: 1rem; font-weight: 700; }
.qty-btn:hover { background: var(--green-soft); }
.ci-qty { min-width: 22px; text-align: center; font-weight: 700; }
.ci-total { font-weight: 700; color: var(--green-dark); min-width: 60px; text-align: right; }
.cart-foot { padding: 18px 22px; border-top: 1px solid var(--line); background: var(--cream); }
.cart-total { display: flex; justify-content: space-between; font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; }
.cart-total strong { color: var(--green-dark); font-size: 1.25rem; }

/* ===== Responsive ===== */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .hero-inner, .split, .guide-layout, .feedback-layout { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .nav-row { display: block; }
  .main-nav { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .main-nav::-webkit-scrollbar { display: none; }
  .nav-link { white-space: nowrap; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-row { padding-bottom: 0; }
  .main-nav {
    position: fixed;
    top: 60px;
    right: 0;
    width: min(300px, 82vw);
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 0 0 0 14px;
    box-shadow: var(--shadow);
    background: var(--white);
    transform: translateX(110%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    max-height: calc(100vh - 60px);
  }
  .main-nav.open { transform: translateX(0); }
  .nav-link { white-space: normal; padding: 12px 16px; border-radius: 10px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
