:root {
  --bakery-primary: #b86b3c;
  --bakery-accent: #f2b880;
  --bakery-cream: #fff7ea;
  --bakery-text: #2b211b;
  --bakery-muted: #7b6657;
  --bakery-line: #ead8c2;
  --bakery-white: #fffdf8;
  --bakery-green: #5d8a65;
  --bakery-heading: Georgia, serif;
  --bakery-body: Arial, sans-serif;
}

* { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--bakery-cream);
  color: var(--bakery-text);
  font-family: var(--bakery-body);
  line-height: 1.5;
}
body.cream-style {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.cream-style > main {
  flex: 1 0 auto;
  max-width: 100%;
}
a { color: inherit; text-decoration: none; }
img, video, svg, canvas, iframe { max-width: 100%; }
img { height: auto; display: block; }
button, input, select, textarea { font: inherit; }
code { background: #f6e7d2; border-radius: 6px; padding: 2px 6px; }

.shop-header, .admin-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 247, 234, .94);
  border-bottom: 1px solid var(--bakery-line);
  backdrop-filter: blur(18px);
}
.brand-mark { display: flex; align-items: center; gap: 12px; min-width: 230px; }
.brand-mark strong { display: block; font-family: var(--bakery-heading); }
.brand-mark small { display: block; color: var(--bakery-muted); font-size: 12px; }
.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bakery-primary);
  color: white;
  font-weight: 800;
  font-family: var(--bakery-heading);
}
.shop-nav { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.shop-nav a, .cart-button, .quick-actions a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--bakery-muted);
  transition: .2s ease;
}
.shop-nav a:hover, .quick-actions a:hover { border-color: var(--bakery-line); color: var(--bakery-text); background: var(--bakery-white); }
.cart-button { display: inline-flex; align-items: center; gap: 10px; background: var(--bakery-text); color: white; }
.cart-button strong { background: var(--bakery-accent); color: var(--bakery-text); min-width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; }

.hero-slider { position: relative; min-height: 620px; overflow: hidden; }
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 46vw);
  align-items: center;
  gap: 36px;
  padding: 48px clamp(20px, 6vw, 82px) 78px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .7s ease, transform .7s ease;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; transform: translateY(0); }
.hero-copy h1, .page-hero h1, .admin-hero h1, .section-head h2, .split-band h2 {
  font-family: var(--bakery-heading);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}
.hero-copy h1 { font-size: clamp(44px, 6vw, 82px); max-width: 820px; }
.hero-copy p { max-width: 590px; font-size: 18px; color: var(--bakery-muted); }
.hero-slide img { width: min(560px, 100%); justify-self: center; filter: drop-shadow(0 22px 34px rgba(79, 49, 29, .18)); }
.eyebrow { text-transform: uppercase; font-size: 12px; letter-spacing: .12em; color: var(--bakery-primary); font-weight: 800; }
.hero-actions, .product-actions, .shop-tools, .view-toggle, .segmented, .quick-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.btn {
  border: 1px solid var(--bakery-line);
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--bakery-white);
  color: var(--bakery-text);
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(72, 44, 26, .12); }
.btn.primary { background: var(--bakery-primary); border-color: var(--bakery-primary); color: white; }
.btn.soft { background: #ffe4c4; border-color: #ffd19e; }
.btn.ghost { background: transparent; }
.btn.full { width: 100%; display: inline-flex; justify-content: center; }
.btn.compact { padding: 9px 14px; font-size: 14px; }

.ticker { overflow: hidden; border-block: 1px solid var(--bakery-line); background: #fff0d8; }
.ticker div { display: flex; gap: 36px; width: max-content; padding: 12px 0; animation: ticker 25s linear infinite; }
.ticker span { white-space: nowrap; font-weight: 800; color: var(--bakery-primary); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.section, .catalog-layout, .cart-page, .checkout-layout, .shop-tools, .admin-panel, .admin-grid, .timeline, .philosophy-grid {
  width: min(1180px, calc(100% - 36px));
  margin: 52px auto;
}
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 22px; }
.section-head h2 { font-size: clamp(28px, 3vw, 46px); }
.section-head a { color: var(--bakery-primary); font-weight: 800; }
.product-grid { width: min(1180px, calc(100% - 36px)); margin: 34px auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.product-grid.is-list { grid-template-columns: 1fr; }
.product-card {
  background: var(--bakery-white);
  border: 1px solid var(--bakery-line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(79, 49, 29, .12); }
.product-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #fce4c8; }
.product-card-body { padding: 16px; }
.product-card h2,
.product-card h3 { font-family: var(--bakery-heading); font-size: 22px; margin: 6px 0; }
.product-card h2 a,
.product-card h3 a { color: var(--bakery-text); }
.product-card p { color: var(--bakery-muted); min-height: 50px; }
.product-card .product-category { color: var(--bakery-muted); font-size: 13px; margin-bottom: 6px; }
.product-card .product-price .price { color: var(--bakery-primary); font-size: 19px; font-weight: 900; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 14px 0; }
.product-meta strong { font-size: 20px; }
.product-actions input { width: 72px; border: 1px solid var(--bakery-line); border-radius: 999px; padding: 10px 12px; background: #fffaf3; }
.split-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(35, 23, 42, .90), rgba(35, 23, 42, .82)),
    var(--split-band-image, none) center / cover;
  color: white;
}
.split-band h2 { max-width: 760px; font-size: clamp(28px, 4vw, 52px); }
.quick-actions a { background: rgba(255, 255, 255, .1); color: white; border-color: rgba(255,255,255,.2); }
.testimonial-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
blockquote { margin: 0; background: var(--bakery-white); border: 1px solid var(--bakery-line); border-radius: 8px; padding: 24px; }
blockquote p { font-family: var(--bakery-heading); font-size: 21px; margin-top: 0; }
cite { color: var(--bakery-primary); font-weight: 800; font-style: normal; }
.testimonial-card { display: flex; flex-direction: column; gap: 16px; min-height: 188px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; order: 2; margin-top: auto; }
.testimonial-author img, .testimonial-author span {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  background: linear-gradient(135deg, var(--bakery-primary), var(--bakery-accent));
  color: #fff;
  border: 3px solid #fff;
  box-shadow: 0 10px 22px rgba(35, 23, 42, .16);
  font-family: var(--bakery-heading);
  font-size: 22px;
  font-weight: 800;
}
.testimonial-card p { order: 1; margin-bottom: 0; }

.page-hero, .admin-hero { padding: 72px clamp(20px, 6vw, 84px); background: #ffe8c9; }
.page-hero.compact, .admin-hero { padding-block: 48px; }
.page-hero h1, .admin-hero h1 { max-width: 920px; font-size: clamp(34px, 5vw, 64px); }
.page-hero p { color: var(--bakery-muted); max-width: 660px; }
.about-hero { background: linear-gradient(0deg, rgba(255,247,234,.25), rgba(255,247,234,.25)), url("../media/hero-bread.svg") center right / contain no-repeat #ffe3bd; }
.legal-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: stretch;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid #eadfed;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(251,247,251,.98), rgba(251,247,251,.72)),
    url("../media/hero-cake.svg") right center / contain no-repeat;
  box-shadow: 0 18px 42px rgba(35, 23, 42, .07);
}
.legal-hero h1 {
  max-width: 780px;
  margin: 10px 0 14px;
  font-family: var(--bakery-heading);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
}
.legal-hero p { max-width: 680px; color: var(--bakery-muted); font-size: 18px; }
.legal-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.legal-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(123,45,131,.94), rgba(35,23,42,.90));
  color: #fff;
}
.legal-card span { color: #f6a6c9; font-size: 12px; text-transform: uppercase; font-weight: 900; letter-spacing: .12em; }
.legal-card strong { font-family: var(--bakery-heading); font-size: 28px; }
.legal-card a { color: #fff; font-weight: 800; }
.legal-card small { color: rgba(255,255,255,.78); line-height: 1.5; }
.legal-summary-grid {
  width: min(1180px, calc(100% - 36px));
  margin: 18px auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.legal-summary-grid article {
  background: #fff;
  border: 1px solid #eadfed;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(35, 23, 42, .05);
}
.legal-summary-grid span {
  display: block;
  width: 36px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bakery-primary), var(--bakery-accent));
  margin-bottom: 16px;
}
.legal-summary-grid h2,
.legal-content h2 {
  font-family: var(--bakery-heading);
  margin: 0 0 8px;
  color: #24142c;
}
.legal-summary-grid p,
.legal-content p { color: var(--bakery-muted); line-height: 1.7; }
.legal-layout {
  width: min(1180px, calc(100% - 36px));
  margin: 24px auto 64px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  background: #fff;
  border: 1px solid #eadfed;
  border-radius: 8px;
  padding: 18px;
}
.legal-toc strong { font-family: var(--bakery-heading); font-size: 21px; }
.legal-toc a { color: #67506f; border-top: 1px solid #f1e9f3; padding-top: 10px; }
.legal-content { display: grid; gap: 16px; }
.legal-content article {
  background: #fff;
  border: 1px solid #eadfed;
  border-radius: 8px;
  padding: 26px;
}
.legal-content article > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #f8edf4;
  color: var(--bakery-primary);
  font-weight: 900;
}
.contact-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: stretch;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid #eadfed;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(251,247,251,.98), rgba(251,247,251,.72)),
    url("../media/hero-bread.svg") right center / contain no-repeat;
  box-shadow: 0 18px 42px rgba(35, 23, 42, .07);
}
.contact-hero h1 {
  max-width: 760px;
  margin: 10px 0 14px;
  font-family: var(--bakery-heading);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
}
.contact-hero p { max-width: 670px; color: var(--bakery-muted); font-size: 18px; line-height: 1.7; }
.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}
.contact-methods a,
.contact-feature-card,
.contact-info-panel article,
.contact-form-card,
.contact-extra {
  border: 1px solid #eadfed;
  border-radius: 8px;
  background: #fff;
}
.contact-methods a {
  display: grid;
  gap: 6px;
  padding: 16px;
  color: #24142c;
  text-decoration: none;
}
.contact-methods span,
.contact-feature-card span,
.contact-info-panel article > span {
  color: var(--bakery-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-methods strong { overflow-wrap: anywhere; }
.contact-feature-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(123,45,131,.95), rgba(35,23,42,.86)),
    url("../media/product-cake.svg") center top / 70% no-repeat;
  color: #fff;
}
.contact-feature-card span { color: #f6a6c9; }
.contact-feature-card strong { font-family: var(--bakery-heading); font-size: 30px; line-height: 1.1; }
.contact-feature-card small { color: rgba(255,255,255,.78); line-height: 1.5; }
.contact-layout {
  width: min(1180px, calc(100% - 36px));
  margin: 24px auto 64px;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.contact-info-panel { display: grid; gap: 14px; }
.contact-info-panel article,
.contact-extra { padding: 22px; }
.contact-info-panel h2,
.contact-form-head h2 {
  margin: 8px 0;
  font-family: var(--bakery-heading);
  color: #24142c;
}
.contact-info-panel p { margin: 0; color: var(--bakery-muted); line-height: 1.7; }
.contact-form-card {
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 16px 36px rgba(35, 23, 42, .06);
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0;
}
.contact-form-grid label {
  display: grid;
  gap: 8px;
  color: #5f5267;
  font-weight: 800;
}
.contact-form-grid .span-2 { grid-column: 1 / -1; }
.contact-form-grid textarea { min-height: 150px; }
.faq-hero,
.about-story-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: stretch;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid #eadfed;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(251,247,251,.98), rgba(251,247,251,.78));
  box-shadow: 0 18px 42px rgba(35, 23, 42, .07);
}
.faq-hero { background: linear-gradient(90deg, rgba(251,247,251,.98), rgba(248,237,244,.86)), url("../media/product-rolls.svg") right center / contain no-repeat; }
.about-story-hero { grid-template-columns: minmax(0, 1fr) 420px; }
.faq-hero h1,
.about-story-hero h1 {
  max-width: 780px;
  margin: 10px 0 14px;
  font-family: var(--bakery-heading);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
}
.faq-hero p,
.about-story-hero p { max-width: 680px; color: var(--bakery-muted); font-size: 18px; line-height: 1.7; }
.faq-search-card {
  display: grid;
  gap: 6px;
  width: min(520px, 100%);
  margin-top: 24px;
  padding: 18px;
  border: 1px solid #eadfed;
  border-radius: 8px;
  background: #fff;
}
.faq-search-card span,
.faq-hero aside span,
.about-values article > span {
  color: var(--bakery-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.faq-hero aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(123,45,131,.94), rgba(35,23,42,.90));
  color: #fff;
}
.faq-hero aside strong {
  font-family: var(--bakery-heading);
  font-size: 72px;
  line-height: 1;
}
.faq-layout {
  width: min(1180px, calc(100% - 36px));
  margin: 24px auto 64px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.faq-topic-list { display: grid; gap: 14px; position: sticky; top: 104px; }
.faq-topic-list article,
.faq-accordion details,
.faq-extra,
.about-note,
.about-values article,
.about-timeline article {
  border: 1px solid #eadfed;
  border-radius: 8px;
  background: #fff;
}
.faq-topic-list article { padding: 18px; display: grid; gap: 6px; }
.faq-topic-list span { color: var(--bakery-primary); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.faq-accordion { display: grid; gap: 14px; }
.faq-accordion details { padding: 0; overflow: hidden; }
.faq-accordion summary {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 20px 22px;
  cursor: pointer;
  font-family: var(--bakery-heading);
  font-size: 22px;
  color: #24142c;
}
.faq-accordion summary span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: #f8edf4;
  color: var(--bakery-primary);
  font-family: var(--bakery-body);
  font-size: 13px;
  font-weight: 900;
}
.faq-accordion p { margin: 0; padding: 0 22px 22px 78px; color: var(--bakery-muted); line-height: 1.7; }
.faq-extra { padding: 22px; }
.about-story-hero figure {
  margin: 0;
  display: grid;
  place-items: end center;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(123,45,131,.16), rgba(246,166,201,.28));
  overflow: hidden;
}
.about-story-hero img { width: min(330px, 90%); filter: drop-shadow(0 22px 34px rgba(75, 32, 92, .18)); }
.about-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}
.about-stat-strip article {
  padding: 16px;
  border: 1px solid #eadfed;
  border-radius: 8px;
  background: #fff;
}
.about-stat-strip strong { display: block; font-family: var(--bakery-heading); font-size: 28px; color: var(--bakery-primary); }
.about-stat-strip span { color: var(--bakery-muted); }
.about-note,
.about-values,
.about-timeline,
.about-team-strip {
  width: min(1180px, calc(100% - 36px));
  margin: 24px auto;
}
.about-note { padding: 24px; }
.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.about-values article { padding: 24px; }
.about-values h2,
.about-timeline h2,
.about-team-strip h2 {
  font-family: var(--bakery-heading);
  color: #24142c;
}
.about-values p,
.about-timeline p { color: var(--bakery-muted); line-height: 1.7; }
.about-timeline > div:last-child {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.about-timeline article { padding: 20px; }
.about-timeline article strong { font-family: var(--bakery-heading); font-size: 28px; color: var(--bakery-primary); }
.about-team-strip { margin-bottom: 64px; }

.catalog-layout { display: grid; grid-template-columns: 240px 1fr; gap: 26px; align-items: start; }
.filter-panel, .summary-panel, .admin-panel {
  background: var(--bakery-white);
  border: 1px solid var(--bakery-line);
  border-radius: 8px;
  padding: 20px;
}
.filter-panel { position: sticky; top: 92px; }
.filter-pill { display: block; margin: 8px 0; border-radius: 999px; padding: 10px 14px; background: #fff4e4; }
.filter-pill.is-active { background: var(--bakery-primary); color: white; }
.menu-category { margin-bottom: 32px; }
.menu-category h2 { font-family: var(--bakery-heading); font-size: 34px; }
.menu-items article, .cart-line, .table-row, .recipe-links article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--bakery-line);
  padding: 16px 0;
}
.menu-items h3, .cart-line h3 { margin: 0; font-family: var(--bakery-heading); }
.menu-items p, .cart-line p, .muted { color: var(--bakery-muted); margin: 4px 0 0; }

.search-form { flex: 1; display: grid; grid-template-columns: minmax(220px, 1fr) 180px 190px auto; gap: 10px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--bakery-line);
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--bakery-white);
  color: var(--bakery-text);
}
textarea { min-height: 96px; resize: vertical; }
.view-toggle { background: var(--bakery-white); border: 1px solid var(--bakery-line); border-radius: 999px; padding: 4px; }
.view-toggle button { border: 0; border-radius: 999px; padding: 9px 12px; background: transparent; cursor: pointer; }
.view-toggle button.is-active { background: var(--bakery-primary); color: white; }

.cart-page, .checkout-layout { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.cart-line { grid-template-columns: 86px minmax(0, 1fr) 92px auto; background: var(--bakery-white); border: 1px solid var(--bakery-line); border-radius: 8px; padding: 12px; margin-bottom: 12px; }
.cart-line img { width: 86px; aspect-ratio: 1; object-fit: cover; border-radius: 8px; }
.summary-panel h2 { font-family: var(--bakery-heading); margin-top: 0; }
.summary-panel div { display: flex; justify-content: space-between; margin: 12px 0; }
.summary-panel .grand { border-top: 1px solid var(--bakery-line); padding-top: 14px; font-size: 20px; }
.checkout-form { background: var(--bakery-white); border: 1px solid var(--bakery-line); border-radius: 8px; padding: 20px; }
fieldset { border: 0; padding: 0; margin: 0 0 20px; display: grid; gap: 12px; }
legend { font-family: var(--bakery-heading); font-weight: 800; margin-bottom: 8px; }
.segmented label { border: 1px solid var(--bakery-line); border-radius: 999px; padding: 10px 14px; cursor: pointer; background: #fff4e4; }
.form-status { font-weight: 800; color: var(--bakery-green); }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.timeline article, .philosophy-grid article, .team-grid article, .metric {
  background: var(--bakery-white);
  border: 1px solid var(--bakery-line);
  border-radius: 8px;
  padding: 20px;
}
.timeline strong { color: var(--bakery-primary); font-family: var(--bakery-heading); font-size: 28px; }
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.philosophy-grid h2, .team-grid h3 { font-family: var(--bakery-heading); margin-top: 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.avatar { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: var(--bakery-primary); color: white; font-family: var(--bakery-heading); font-size: 28px; }

.cart-drawer {
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 0;
  width: min(390px, 94vw);
  height: 100vh;
  background: var(--bakery-white);
  border-left: 1px solid var(--bakery-line);
  box-shadow: -20px 0 50px rgba(48, 30, 18, .18);
  padding: 20px;
  transform: translateX(105%);
  transition: transform .25s ease;
}
.cart-drawer.is-open { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; font-family: var(--bakery-heading); font-size: 24px; }
.drawer-head button { border: 0; background: var(--bakery-text); color: white; border-radius: 50%; width: 34px; height: 34px; cursor: pointer; }
.mini-line { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--bakery-line); }
.drawer-total { display: flex; justify-content: space-between; margin: 20px 0; font-size: 20px; }
.drawer-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.drawer-actions .btn {
  min-height: 54px;
  padding: 12px 10px;
  border-radius: 8px;
  text-align: center;
  align-items: center;
  line-height: 1.2;
  font-weight: 800;
  white-space: normal;
}
.drawer-actions .btn.full {
  width: 100%;
}
.empty-state { color: var(--bakery-muted); }
.admin-shell { background: #f7ead9; }
.admin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.metric span { color: var(--bakery-muted); }
.metric strong { display: block; font-size: 42px; font-family: var(--bakery-heading); }
.order-table .table-row { grid-template-columns: .8fr 1.3fr 1fr 170px 120px 90px; }
.order-table form.table-row { margin: 0; }
.order-table select { width: 100%; }
.table-head { font-weight: 800; color: var(--bakery-primary); }
.table-row small { display: block; color: var(--bakery-muted); }
.table-row.is-updated { background: #fff4e4; margin-inline: -10px; padding-inline: 10px; border-radius: 8px; }
.form-status.success { color: #237a39; font-weight: 800; }
.form-status.error { color: #b3261e; font-weight: 800; }
.recipe-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.recipe-links article { border: 1px solid var(--bakery-line); border-radius: 8px; padding: 14px; }
.form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.form-grid .span-2 { grid-column: span 2; }
.customizer-form h2 { font-family: var(--bakery-heading); margin-top: 28px; }
.slider-config { border: 1px solid var(--bakery-line); border-radius: 8px; padding: 16px; }
.file-upload-field { display: grid; gap: 8px; color: var(--bakery-muted); font-size: 14px; font-weight: 700; }
.file-upload-field input[type="file"] { width: 100%; border: 1px dashed var(--bakery-line); border-radius: 8px; padding: 13px; background: #fffaf4; color: var(--bakery-text); }
.catalog-editor { display: grid; grid-template-columns: 1fr 160px 180px 160px 110px auto; gap: 10px; align-items: center; }
.toggle, .switch { display: inline-flex; align-items: center; gap: 8px; }
.switch input { display: none; }
.switch i { width: 46px; height: 26px; border-radius: 999px; background: var(--bakery-line); position: relative; }
.switch i::after { content: ""; position: absolute; width: 20px; height: 20px; top: 3px; left: 3px; border-radius: 50%; background: white; transition: .2s ease; }
.switch input:checked + i { background: var(--bakery-green); }
.switch input:checked + i::after { transform: translateX(20px); }

.shop-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(20px, 5vw, 72px);
  background: var(--bakery-text);
  color: white;
  margin-top: 72px;
  flex-shrink: 0;
}
.shop-footer p { color: #f6d9b8; }
.shop-footer span { display: block; color: #f6d9b8; }
.exact-footer {
  min-height: 124px;
  align-items: center;
  margin-top: 70px;
  padding: 30px 16px;
  background: #fff;
  color: #172c3f;
  border-top: 1px solid #bde5c8;
  box-shadow: none;
}
.exact-footer a {
  color: #172c3f;
  font-weight: 800;
}
.payment-marks {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 330px;
}
.hamburger-mark {
  color: #14aee4 !important;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}
.card-mark {
  position: relative;
  width: 52px;
  height: 34px;
  display: inline-block;
}
.card-mark i,
.card-mark b {
  position: absolute;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  top: 0;
}
.card-mark i { left: 4px; background: #e91b24; }
.card-mark b { left: 21px; background: #f79f1b; opacity: .92; }
.card-mark small {
  position: absolute;
  left: 7px;
  bottom: 0;
  font-size: 7px;
  color: #111;
  font-weight: 800;
}
.visa-mark {
  color: #0a5daa !important;
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -1px;
}
.verve-mark {
  color: #333 !important;
  font-size: 24px;
  font-weight: 900;
}
.verve-mark b { color: #e5262e; }
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 4vw, 42px);
  flex: 1;
  white-space: nowrap;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 210px;
  justify-content: flex-end;
}
.footer-social strong {
  margin-right: 2px;
  color: #172c3f;
}
.footer-social a {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2e8be6;
  color: #fff;
  font-weight: 900;
}
.footer-social button {
  width: 36px;
  height: 36px;
  margin-left: 12px;
  border-radius: 50%;
  border: 2px solid #172c3f;
  background: #fff;
  color: #172c3f;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.auth-page {
  width: min(1080px, calc(100% - 36px));
  margin: 54px auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 28px;
  align-items: stretch;
}
.auth-art,
.auth-card {
  border: 1px solid #eadfed;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(32, 18, 38, .07);
}
.auth-art {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(123, 45, 131, .90), rgba(246, 166, 201, .58)),
    url("../media/hero-cake.svg") center / cover;
  color: #fff;
}
.auth-art.register-art {
  background:
    linear-gradient(135deg, rgba(35, 23, 42, .92), rgba(123, 45, 131, .62)),
    url("../media/hero-bread.svg") center / cover;
}
.auth-art .eyebrow {
  color: #fff;
}
.auth-art h1 {
  margin: 8px 0 14px;
  max-width: 620px;
  font-family: var(--bakery-heading);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
}
.auth-art p {
  max-width: 560px;
  font-size: 18px;
}
.auth-card {
  padding: 30px;
  display: grid;
  align-content: center;
  gap: 16px;
}
.auth-card h2 {
  margin: 0 0 4px;
  font-family: var(--bakery-heading);
  font-size: 38px;
  color: var(--bakery-primary);
}
.auth-card label {
  display: grid;
  gap: 8px;
  color: #423149;
  font-weight: 800;
}
.auth-row,
.auth-two {
  display: flex;
  gap: 12px;
  align-items: center;
}
.auth-row {
  justify-content: space-between;
}
.auth-two > label {
  flex: 1;
}
.check-row {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px !important;
  font-weight: 700 !important;
  color: #6d6172 !important;
}
.check-row input {
  width: auto;
}
.auth-card p {
  margin: 0;
  color: #6d6172;
  text-align: center;
}
.auth-card a {
  color: var(--bakery-primary);
  font-weight: 900;
}

@media (max-width: 900px) {
  .auth-page {
    grid-template-columns: 1fr;
  }
  .auth-art {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .auth-two,
  .auth-row {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 980px) {
  .hero-slide { grid-template-columns: 1fr; min-height: 760px; align-content: center; }
  .hero-slide img { max-height: 340px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-layout, .cart-page, .checkout-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .search-form, .catalog-editor, .form-grid { grid-template-columns: 1fr 1fr; }
  .timeline, .philosophy-grid, .team-grid, .admin-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-row, .recipe-links { grid-template-columns: 1fr; }
  .legal-hero,
  .legal-layout,
  .contact-hero,
  .contact-layout,
  .faq-hero,
  .faq-layout,
  .about-story-hero { grid-template-columns: 1fr; }
  .legal-summary-grid,
  .about-values,
  .about-timeline > div:last-child { grid-template-columns: 1fr; }
  .legal-toc,
  .faq-topic-list { position: static; }
}

@media (max-width: 680px) {
  .shop-header, .admin-topbar, .shop-footer, .split-band { flex-direction: column; align-items: stretch; }
  .brand-mark { min-width: 0; }
  .hero-slider { min-height: 720px; }
  .hero-slide { padding: 30px 18px 64px; }
  .hero-copy h1 { font-size: 42px; }
  .product-grid, .timeline, .philosophy-grid, .team-grid, .admin-grid, .search-form, .form-grid, .catalog-editor { grid-template-columns: 1fr; }
  .cart-line, .table-row { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .legal-hero,
  .legal-content article,
  .legal-summary-grid article,
  .contact-hero,
  .contact-form-card,
  .faq-hero,
  .faq-accordion summary,
  .about-story-hero { padding: 22px 18px; }
  .legal-hero h1 { font-size: 38px; }
  .legal-card { padding: 20px; }
  .contact-hero h1 { font-size: 38px; }
  .faq-hero h1,
  .about-story-hero h1 { font-size: 38px; }
  .contact-methods,
  .contact-form-grid,
  .about-stat-strip { grid-template-columns: 1fr; }
  .faq-accordion p { padding: 0 18px 20px; }
  .faq-accordion summary { align-items: flex-start; }
  .drawer-actions { grid-template-columns: 1fr; }
}

/* Gold-style storefront adaptation: bright bakeshop ordering layout. */
.gold-style {
  background: #fff9e8;
}
.gold-style .order-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 9px 18px;
  background: var(--bakery-primary);
  color: #fff;
  font-weight: 800;
  text-align: center;
}
.gold-style .order-strip a {
  color: var(--bakery-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gold-style .shop-header {
  background: #fff;
  box-shadow: 0 8px 28px rgba(64, 26, 22, .08);
  border-bottom: 4px solid var(--bakery-accent);
}
.gold-style .brand-icon {
  width: 58px;
  height: 58px;
  background: var(--bakery-accent);
  color: var(--bakery-primary);
  border: 3px solid var(--bakery-primary);
  font-size: 16px;
}
.gold-style .brand-mark strong {
  color: var(--bakery-primary);
  font-size: 20px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gold-style .shop-nav a {
  color: #4a2923;
  font-weight: 800;
}
.gold-style .cart-button {
  background: var(--bakery-primary);
}
.gold-style .hero-slider {
  min-height: 590px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 213, 46, .65), transparent 32%),
    linear-gradient(135deg, #fff0b6 0%, #fff9e8 52%, #ffe0a7 100%);
}
.gold-style .hero-copy h1 {
  color: var(--bakery-primary);
}
.gold-style .hero-copy p {
  color: #5f3b2d;
  font-weight: 700;
}
.gold-style .hero-slide img {
  filter: drop-shadow(0 26px 35px rgba(154, 41, 28, .18));
}
.order-mode-panel {
  width: min(1080px, calc(100% - 36px));
  margin: -48px auto 44px;
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #f2d777;
  box-shadow: 0 20px 42px rgba(124, 57, 20, .12);
}
.order-mode-panel.slim {
  margin-top: 24px;
}
.order-mode-panel h2 {
  font-family: var(--bakery-heading);
  color: var(--bakery-primary);
  margin: 4px 0 0;
  font-size: clamp(26px, 3vw, 38px);
}
.mode-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.gold-style .btn.primary {
  background: var(--bakery-primary);
  border-color: var(--bakery-primary);
}
.gold-style .btn.soft {
  background: var(--bakery-accent);
  border-color: #e5be11;
  color: #3a221b;
  font-weight: 800;
}
.gold-style .ticker {
  background: var(--bakery-accent);
  border-color: #e9bd12;
}
.gold-style .ticker span {
  color: var(--bakery-primary);
}
.gold-style .product-card {
  border-color: #f0d57c;
  box-shadow: 0 10px 22px rgba(131, 45, 27, .06);
}
.gold-style .product-card h3 {
  color: #311a16;
}
.gold-style .product-meta strong {
  color: var(--bakery-primary);
}
.gold-style .split-band {
  background:
    linear-gradient(rgba(201, 22, 29, .94), rgba(201, 22, 29, .94)),
    var(--bakery-primary);
  border-block: 10px solid var(--bakery-accent);
}
.gold-style .split-band .eyebrow {
  color: var(--bakery-accent);
}
.category-showcase {
  width: min(1180px, calc(100% - 36px));
  margin: 48px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.category-showcase a {
  position: relative;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 213, 46, .86), rgba(255, 242, 162, .78)),
    var(--category-image, none) center / cover;
  border: 1px solid #edc51c;
  color: #3a221b;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.category-showcase a:nth-child(even) {
  background:
    linear-gradient(145deg, rgba(201, 22, 29, .84), rgba(240, 68, 68, .70)),
    var(--category-image, none) center / cover;
  border-color: #b91419;
  color: #fff;
}
.category-showcase a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(101, 40, 22, .16);
}
.category-showcase span {
  position: relative;
  z-index: 1;
  font-family: var(--bakery-heading);
  font-size: 30px;
  line-height: 1.05;
}
.category-showcase strong {
  position: relative;
  z-index: 1;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.shop-hero {
  background: linear-gradient(135deg, #fff2a7, #fff9e8);
}
.gold-style .filter-pill.is-active {
  background: var(--bakery-primary);
}
.gold-style .filter-pill {
  background: #fff2a7;
  color: #3a221b;
  font-weight: 800;
}
.gold-style .page-hero {
  background: linear-gradient(135deg, #fff1a2, #fff9e8);
}
.gold-style .shop-footer {
  background: #fff;
  border-top: 1px solid #bde5c8;
}

@media (max-width: 980px) {
  .order-mode-panel,
  .category-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  .order-mode-panel {
    flex-direction: column;
    align-items: stretch;
    margin-top: 22px;
  }
}

@media (max-width: 680px) {
  .gold-style .order-strip,
  .header-actions {
    flex-direction: column;
  }
  .category-showcase {
    grid-template-columns: 1fr;
  }
}

/* Cakes-and-Cream inspired shop layout */
.cream-style {
  --bakery-primary: #7b2d83;
  --bakery-accent: #f6a6c9;
  --bakery-cream: #fbf7fb;
  --bakery-text: #23172a;
  background: #f6f3f8;
}
.cream-style .utility-bar {
  min-height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  background: var(--bakery-header-top-bg, #2e8be6);
  border-bottom: 0;
  color: var(--bakery-header-top-text, #fff);
  font-size: 12px;
}
.cream-style .utility-bar nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cream-style .utility-bar nav {
  min-width: 280px;
}
.utility-bar strong {
  color: var(--bakery-header-top-text, #fff);
  font-weight: 800;
  justify-self: center;
}
.cream-style .shop-header {
  min-height: 148px;
  display: grid;
  grid-template-columns: 210px minmax(280px, 600px) minmax(360px, 1fr);
  align-items: center;
  gap: 30px;
  padding: 28px 22px;
  background: var(--bakery-header-bg, #fff);
  color: var(--bakery-header-text, #253d4e);
  border-bottom: 0;
  box-shadow: none;
}
.cream-style .brand-mark {
  min-width: 0;
  gap: 0;
}
.cream-style .brand-mark > span:last-child {
  display: none;
}
.brand-logo-art {
  width: var(--bakery-logo-width, 166px);
  min-height: 76px;
  display: grid;
  place-items: center;
  position: relative;
  color: #2e8be6;
  font-family: Georgia, serif;
  line-height: .9;
  text-align: center;
}
.brand-logo-img {
  width: var(--bakery-logo-width, 150px);
  max-height: 92px;
  object-fit: contain;
}
.brand-logo-art::before,
.brand-logo-art::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: #b9bec8;
}
.brand-logo-art::before { top: 16px; }
.brand-logo-art::after { bottom: 16px; }
.brand-logo-art span {
  font-size: 37px;
  letter-spacing: .07em;
}
.brand-logo-art small {
  display: block;
  color: #6a7d9a;
  font-size: 14px;
  letter-spacing: .22em;
}
.cream-style .brand-mark strong {
  color: var(--bakery-primary);
  font-size: var(--bakery-brand-font-size, 20px);
}
.cream-style .brand-mark small {
  font-size: var(--bakery-tagline-font-size, 12px);
}
.header-search {
  display: flex;
  width: min(460px, 100%);
  min-width: 0;
  max-width: 100%;
  height: 50px;
}
.header-search input {
  border-radius: 8px 0 0 8px;
  background: #fff;
  border: 2px solid var(--bakery-search-border, #2e8be6);
  border-right: 0;
  padding-left: 24px;
  font-size: var(--bakery-search-font-size, 16px);
}
.header-search button {
  border: 0;
  border-radius: 6px;
  margin: 4px;
  min-width: 44px;
  padding: 0 12px;
  background: var(--bakery-search-button, #2e8be6);
  color: #fff;
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
}
.cream-style .header-actions {
  justify-content: end;
  gap: 22px;
}
.header-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bakery-header-text, #666);
  font-size: var(--bakery-header-action-font-size, 16px);
  white-space: nowrap;
}
.action-icon {
  color: var(--bakery-header-text, #1f344b);
  font-size: 30px;
  line-height: 1;
}
.action-badge {
  position: absolute;
  top: -10px;
  left: 22px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bakery-primary, #2e8be6);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.category-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(72px, 7.6vw, 96px);
  min-height: 70px;
  padding: 0 15px;
  background: var(--bakery-nav-bg, #2e8be6);
  border-bottom: 1px solid var(--bakery-nav-bg, #2e8be6);
  transition: background .2s ease, box-shadow .2s ease, min-height .2s ease;
  will-change: transform;
}
.category-menu-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 0;
  height: 100%;
}
.category-nav a {
  color: var(--bakery-nav-text, #fff);
  font-weight: 800;
  font-size: var(--bakery-nav-font-size, 16px);
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  line-height: 1;
  white-space: nowrap;
}
.category-dropdown {
  position: relative;
}
.category-dropdown summary {
  width: 260px;
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  cursor: pointer;
  list-style: none;
  border-radius: 8px;
  padding: 10px 18px;
  background: color-mix(in srgb, var(--bakery-nav-bg, #2e8be6) 86%, #000);
  color: var(--bakery-nav-text, #fff);
  font-weight: 800;
  font-size: var(--bakery-nav-font-size, 16px);
}
.grid-icon {
  font-size: 20px;
}
.category-dropdown div {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  display: grid;
  gap: 3px;
  background: #fff;
  border: 1px solid #eadfed;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 18px 40px rgba(30, 18, 36, .14);
}
.category-accordion {
  gap: 4px;
}
.category-group {
  border-bottom: 1px solid #edf0f4;
}
.category-group:last-child {
  border-bottom: 0;
}
.category-group summary {
  min-height: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  color: #122337;
  border-radius: 6px;
  padding: 11px 10px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.category-group summary:hover {
  background: #f5f8fc;
}
.category-group div {
  position: static;
  min-width: 0;
  border: 0;
  box-shadow: none;
  padding: 0 0 9px 12px;
  background: transparent;
}
.category-group div a {
  color: #556273;
  font-size: 14px;
  font-weight: 700;
  padding: 7px 10px;
}
.category-dropdown div a {
  padding: 9px 10px;
  border-radius: 6px;
  color: #423149;
}
.category-dropdown div a:hover {
  background: #f8edf4;
}
.cream-style.header-collapsed .utility-bar,
.cream-style.header-collapsed .shop-header {
  visibility: hidden;
  pointer-events: none;
}
.cream-style.header-collapsed .category-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 72px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .10);
  border-top: 0;
  border-bottom: 1px solid #e9eef5;
  padding-top: 0;
  padding-bottom: 0;
  grid-template-columns: 260px minmax(0, 1fr);
  column-gap: clamp(72px, 7.6vw, 96px);
}
body.header-collapsed main {
  padding-top: 72px;
}
.cream-style.header-collapsed .category-nav a {
  color: #122337;
  font-size: 16px;
  line-height: 1;
  min-height: 72px;
  display: inline-flex;
  align-items: center;
}
.cream-style.header-collapsed .category-dropdown summary {
  background: #2e8be6;
  color: #fff;
  min-height: 38px;
  width: 260px;
  font-size: 14px;
  justify-content: center;
  gap: 8px;
  padding: 9px 18px;
}
.category-menu-placeholder {
  display: none;
  justify-content: flex-start;
}
.category-menu-placeholder span {
  color: #fff;
  font-weight: 800;
}
.category-menu-collapsed {
  display: flex;
}
.cream-style.header-collapsed .category-menu-placeholder {
  display: none;
}
.cream-style.header-collapsed .category-menu-collapsed {
  display: flex;
}
.cream-style .hero-slider {
  width: min(1180px, calc(100% - 36px));
  margin: 16px auto 0;
  min-height: 500px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f7d7e7 0%, #fff 55%, #ead9f1 100%);
}
.cream-style .hero-slide {
  padding: 40px 44px;
  align-items: start;
}
.cream-style .hero-copy h1 {
  color: #2c1533;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.06;
  max-width: 540px;
}
.cream-style .hero-copy p {
  color: #6d6172;
  font-size: 16px;
  line-height: 1.45;
  max-width: 520px;
}
.cream-style .hero-slide img {
  filter: drop-shadow(0 24px 34px rgba(75, 32, 92, .18));
}
.promo-mosaic {
  width: min(1180px, calc(100% - 36px));
  margin: 22px auto 42px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}
.promo-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(123,45,131,.9), rgba(246,166,201,.72)), var(--promo-image, url("../media/product-cake.svg")) center / cover;
  color: #fff;
  overflow: hidden;
}
.promo-card.large {
  grid-row: span 2;
  min-height: 356px;
}
.promo-card span {
  font-family: var(--bakery-heading);
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.05;
}
.promo-card strong {
  width: fit-content;
  border-radius: 999px;
  background: #fff;
  color: var(--bakery-primary);
  padding: 10px 14px;
}
.menu-hero {
  background:
    linear-gradient(90deg, rgba(251, 247, 251, .96), rgba(251, 247, 251, .82)),
    url("../media/hero-cake.svg") right 8% center / 270px auto no-repeat;
}
.menu-page-layout {
  align-items: start;
  gap: 28px;
}
.menu-filter-panel {
  position: sticky;
  top: 92px;
}
.menu-filter-panel h2 {
  margin-bottom: 18px;
}
.menu-filter-panel .filter-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.menu-filter-panel .filter-pill small {
  min-width: 28px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(123, 45, 131, .10);
  color: var(--bakery-primary);
  font-size: 12px;
  font-weight: 900;
}
.menu-filter-panel .filter-pill.is-active small {
  background: rgba(255, 255, 255, .22);
  color: #fff;
}
.menu-list {
  display: grid;
  gap: 30px;
}
.menu-category {
  display: grid;
  gap: 16px;
}
.menu-category-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eadfed;
}
.menu-category-head h2 {
  margin: 4px 0 0;
  font-family: var(--bakery-heading);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  color: #2c1533;
}
.menu-category-head > a {
  color: var(--bakery-primary);
  font-weight: 900;
  white-space: nowrap;
}
.menu-items {
  display: grid;
  gap: 14px;
}
.menu-product-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid #eadfed;
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 16px 36px rgba(38, 19, 48, .07);
}
.menu-product-image {
  width: 112px;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #fff4e4;
}
.menu-product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.menu-product-body {
  min-width: 0;
}
.menu-product-category {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--bakery-primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.menu-product-body h3 {
  margin: 0;
  font-family: var(--bakery-heading);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
}
.menu-product-body h3 a {
  color: #18061d;
}
.menu-product-body h3 a:hover {
  color: var(--bakery-primary);
}
.menu-product-body p {
  max-width: 680px;
  margin: 8px 0 0;
  color: #6d6172;
  line-height: 1.5;
}
.menu-product-side {
  display: grid;
  justify-items: end;
  gap: 12px;
}
.menu-product-side strong {
  color: #120017;
  font-size: 18px;
  white-space: nowrap;
}
.menu-empty-state {
  padding: 34px;
  border: 1px solid #eadfed;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(38, 19, 48, .07);
}
.menu-empty-state h2 {
  margin: 6px 0 18px;
  font-family: var(--bakery-heading);
  color: #2c1533;
}
.cream-style .ticker {
  background: #fff;
  border-block: 1px solid #eadfed;
}
.cream-style .ticker span {
  color: var(--bakery-primary);
}
.product-tab-head {
  align-items: center;
}
.product-tab-head h2 {
  font-size: 28px;
}
.product-tabs {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
  margin-left: auto;
}
.product-tabs button {
  border: 0;
  background: transparent;
  color: #122337;
  font-size: 13px;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}
.product-tabs button.is-active {
  color: #2e8be6;
}
.product-tabs button:hover {
  color: #2e8be6;
}
.popular-accordion {
  width: min(1180px, calc(100% - 36px));
  margin: -4px auto 0;
  display: grid;
  gap: 12px;
}
.popular-accordion > details {
  background: transparent;
}
.popular-accordion > details > summary {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid #e6d9ea;
  border-radius: 999px;
  background: #fff;
  color: #5b4663;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}
.popular-accordion > details[open] > summary {
  background: var(--bakery-primary);
  color: #fff;
  border-color: var(--bakery-primary);
}
.popular-accordion > details > summary span {
  min-width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f8edf4;
  color: var(--bakery-primary);
  font-size: 13px;
}
.popular-accordion > details[open] > summary span {
  background: #fff;
}
.popular-accordion .product-grid {
  width: 100%;
  margin-top: 18px;
}
.cream-style .product-card {
  border-color: #eadfed;
  background: #fff;
  box-shadow: 0 10px 24px rgba(32, 18, 38, .06);
}
.cream-style .product-card img {
  background: #f5e9f4;
}
.cream-style .product-card .eyebrow,
.cream-style .product-meta strong {
  color: var(--bakery-primary);
}
.cream-style .product-card h3 {
  color: #23172a;
}
.cream-style .btn.primary {
  background: var(--bakery-primary);
  border-color: var(--bakery-primary);
}
.cream-style .btn.soft {
  background: #f8edf4;
  border-color: #eadfed;
  color: var(--bakery-primary);
}
.cream-style .split-band {
  width: min(1180px, calc(100% - 36px));
  margin: 60px auto;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(123, 45, 131, .92), rgba(50, 26, 67, .88)),
    var(--split-band-image, none) center / cover;
}
.cream-style .split-band .eyebrow {
  color: var(--bakery-accent);
}
.cream-style .category-showcase a {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .62)),
    var(--category-image, none) center / cover;
  border-color: #eadfed;
  color: #23172a;
}
.cream-style .category-showcase a:nth-child(even) {
  background:
    linear-gradient(145deg, rgba(248, 237, 244, .86), rgba(248, 237, 244, .58)),
    var(--category-image, none) center / cover;
  border-color: #eadfed;
  color: #23172a;
}
.breadcrumb-strip {
  width: min(1180px, calc(100% - 36px));
  margin: 24px auto 0;
  color: #7c7183;
  display: flex;
  gap: 10px;
}
.breadcrumb-strip a {
  color: var(--bakery-primary);
}
.category-breadcrumb strong {
  color: #23172a;
}
.shop-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 22px auto 54px;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.shop-sidebar {
  display: grid;
  gap: 16px;
}
.filter-block,
.side-promo {
  background: #fff;
  border: 1px solid #eadfed;
  border-radius: 8px;
  padding: 18px;
}
.filter-block h3 {
  margin: 0 0 14px;
  font-family: var(--bakery-heading);
}
.filter-block a {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #f1e9f3;
  color: #423149;
}
.filter-block a.active {
  color: var(--bakery-primary);
  font-weight: 800;
}
.filter-block small {
  color: #9a8fa1;
}
.side-promo {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(135deg, rgba(123,45,131,.92), rgba(246,166,201,.7)), var(--side-promo-image, url("../media/hero-cake.svg")) center / cover;
  color: #fff;
  text-decoration: none;
}
.side-promo strong {
  font-family: var(--bakery-heading);
  font-size: 25px;
}
.shop-result-bar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #eadfed;
  border-radius: 8px;
  color: #6d6172;
}
.category-archive-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 16px;
}
.category-archive-head h1 {
  margin: 4px 0 0;
  font-family: var(--bakery-heading);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  color: #170a1d;
}
.empty-category {
  background: #fff;
  border: 1px solid #eadfed;
  border-radius: 8px;
  padding: 34px;
}
.empty-category h2 {
  margin: 0 0 8px;
  font-family: var(--bakery-heading);
}
.shop-sort {
  width: 250px;
}
.shop-product-grid {
  width: 100%;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.dokan_only_breadcrumb {
  background: #fff;
  border-bottom: 1px solid #eadfed;
}
.dokan_only_breadcrumb .auto-container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}
.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 18px 0;
  color: #7d7283;
  font-size: 14px;
}
.breadcrumb li::after {
  content: "/";
  margin-left: 9px;
  color: #c6b9cb;
}
.breadcrumb li:last-child::after {
  content: "";
  margin: 0;
}
.breadcrumb a {
  color: var(--bakery-primary);
  font-weight: 700;
}
.woocommerce-archive.shop-shell {
  grid-template-columns: minmax(0, 1fr) 286px;
  gap: 28px;
  margin-top: 28px;
}
.woocommerce-products-header {
  margin-bottom: 18px;
}
.woocommerce-products-header .flex_enable {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 16px;
  background: #fff;
  border: 1px solid #eadfed;
  border-radius: 8px;
}
.filter_end {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
}
.nest_filter_btn {
  border: 1px solid #e2d5e7;
  background: #fff7fb;
  color: #3b2842;
  border-radius: 6px;
  padding: 9px 14px;
  font-weight: 800;
  cursor: pointer;
}
.products-per-page-box,
.in_right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.products-per-page-box label,
.woocommerce-result-count {
  margin: 0;
  color: #6d6172;
  font-size: 14px;
}
.products-per-page-box select,
.woocommerce-ordering select,
.filter-block select,
.filter-block input {
  width: 100%;
  border: 1px solid #eadfed;
  border-radius: 6px;
  background: #fff;
  color: #3b2842;
  padding: 10px 12px;
}
.products-per-page-box select {
  width: 76px;
}
.woocommerce-ordering select {
  min-width: 210px;
}
.products_box_outer .shop-product-grid {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 22px;
}
.product-listing-item {
  min-width: 0;
}
.woocommerce-archive .product-card {
  height: 100%;
  border-color: #eadfed;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(32, 18, 38, .06);
}
.woocommerce-archive .product-img-action-wrap {
  position: relative;
  padding: 12px 12px 0;
}
.woocommerce-archive .product-img {
  overflow: hidden;
  border-radius: 6px;
  background: #faedf6;
}
.woocommerce-archive .product-img img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .25s ease;
}
.woocommerce-archive .product-card:hover .product-img img {
  transform: scale(1.04);
}
.woocommerce-archive .product-content-wrap {
  padding: 14px 16px 16px;
}
.woocommerce-archive .product-category {
  color: #9a8fa1;
  font-size: 12px;
}
.woocommerce-archive .product-content-wrap h2 {
  margin: 7px 0 12px;
  font-family: var(--bakery-heading);
  font-size: 18px;
  line-height: 1.25;
}
.woocommerce-archive .product-content-wrap h2 a {
  color: #24142c;
}
.woocommerce-archive .product-excerpt {
  min-height: 0;
  margin: 0;
  display: none;
}
.woocommerce-archive .product-card-bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.woocommerce-archive .product-price .price {
  color: var(--bakery-primary);
  font-weight: 900;
  font-size: 17px;
}
.price-filter-caption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
  color: #7d7283;
  font-size: 12px;
}
.woocommerce-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.page-numbers {
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eadfed;
  border-radius: 6px;
  background: #fff;
  color: #3b2842;
  font-weight: 800;
}
.page-numbers.current {
  background: var(--bakery-primary);
  border-color: var(--bakery-primary);
  color: #fff;
}
.recent_viewd_products {
  width: min(1180px, calc(100% - 36px));
  margin: -20px auto 54px;
}
.recent_viewd_products .section-title h2 {
  margin: 0 0 16px;
  font-family: var(--bakery-heading);
  color: #24142c;
}
.recent-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.recent-product {
  border: 1px solid #eadfed;
  border-radius: 8px;
  background: #fff;
  padding: 12px;
  display: block;
  text-decoration: none;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.recent-product:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(35, 23, 42, .10);
}
.recent-product img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  margin-bottom: 12px;
  background: #f8edf4;
}
.recent-product span,
.recent-product small {
  display: block;
  color: #7d7283;
  font-size: 12px;
}
.recent-product strong {
  display: block;
  margin: 6px 0;
  color: #24142c;
}
.rating {
  color: #f2a13a;
  font-size: 13px;
  margin: 8px 0;
}
.product-detail-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 34px auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 34px;
}
.product-gallery,
.product-detail-info,
.dashboard-panel,
.compare-table-wrap {
  background: #fff;
  border: 1px solid #eadfed;
  border-radius: 8px;
  padding: 22px;
}
.product-main-image-link {
  display: block;
}
.product-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: #faedf6;
}
.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.gallery-thumb {
  width: 74px;
  height: 74px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}
.gallery-thumb.is-active {
  border-color: var(--bakery-primary);
}
.gallery-thumb img,
.gallery-thumbs img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eadfed;
}
.gallery-thumb img {
  display: block;
  border: 0;
}
.quantity-row input {
  width: 90px;
}
.single-product-price {
  color: var(--bakery-primary);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  margin: 12px 0;
}
.single-product-summary {
  color: #63576b;
  line-height: 1.7;
}
.product-meta-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}
.product-meta-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0e7f1;
}
.product-meta-list dt {
  color: #8e8393;
  font-weight: 700;
}
.product-meta-list dd {
  margin: 0;
  color: #24142c;
  font-weight: 800;
}
.product-description-panel {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 34px;
  background: #fff;
  border: 1px solid #eadfed;
  border-radius: 8px;
  padding: 26px;
}
.related-products-head {
  width: min(1180px, calc(100% - 36px));
  margin-top: 36px;
}
.related-product-grid {
  margin-top: 0;
}
.dashboard-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 34px auto;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 20px;
}
.dashboard-tabs {
  background: #fff;
  border: 1px solid #eadfed;
  border-radius: 8px;
  padding: 12px;
  display: grid;
  gap: 8px;
}
.dashboard-tabs button,
.dashboard-tabs a {
  text-align: left;
  border: 0;
  background: transparent;
  color: #23172a;
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
}
.dashboard-tabs .active {
  background: var(--bakery-primary);
  color: #fff;
}
.dashboard-panel {
  display: none;
}
.dashboard-panel.active {
  display: block;
}
.dash-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #f1e9f3;
}
.account-dashboard {
  width: min(1180px, calc(100% - 18px));
  margin: 4px auto 44px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  color: #070707;
}
.account-sidebar {
  background: #f0f1f4;
  min-height: 640px;
}
.account-profile-card {
  min-height: 180px;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 24px 18px;
  text-align: center;
}
.account-profile-card img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e2e3e8;
  padding: 8px;
}
.account-profile-card strong {
  display: block;
  margin-top: 6px;
  font-size: 16px;
}
.account-profile-card span {
  display: block;
  color: #383b45;
  font-size: 12px;
  overflow-wrap: anywhere;
}
.account-menu {
  display: grid;
}
.account-menu button,
.account-menu a {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  border: 0;
  border-top: 1px solid #d5d7de;
  background: #f0f1f4;
  color: #060606;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.account-menu button:last-of-type,
.account-menu a:last-child {
  border-bottom: 1px solid #d5d7de;
}
.account-menu i {
  width: 14px;
  color: #050505;
  text-align: center;
}
.account-menu .active {
  background: #130b59;
  color: #fff;
}
.account-menu .active i {
  color: #ff513e;
}
.account-main {
  display: grid;
  align-content: start;
  gap: 36px;
}
.account-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.account-stat {
  min-height: 172px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  color: #fff;
  text-align: center;
}
.account-stat.red { background: #ff5362; }
.account-stat.green { background: #23c28e; }
.account-stat.teal { background: #1ebf97; }
.account-stat.orange { background: #ffa705; }
.account-stat i {
  font-size: 28px;
  margin-bottom: 6px;
}
.account-stat strong {
  font-size: 24px;
  line-height: 1;
}
.account-stat span {
  font-size: 13px;
  font-weight: 700;
}
.account-panel {
  display: none;
  background: #fff;
  border: 1px solid #dedede;
  padding: 34px 38px 38px;
  min-height: 430px;
}
.account-panel.active {
  display: block;
}
.account-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.account-panel-head h2 {
  margin: 0;
  font-family: var(--bakery-body);
  font-size: 22px;
  color: #050505;
}
.edit-info-btn {
  border: 0;
  background: #d8492f;
  color: #fff;
  padding: 13px 22px;
  font-weight: 700;
  cursor: pointer;
}
.edit-info-btn.secondary {
  background: #eef0f4;
  color: #1f2d3d;
}
.account-notice {
  border: 1px solid #bfe5ca;
  background: #f4fff7;
  color: #245d35;
  padding: 13px 16px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 700;
}
.account-notice.error {
  border-color: #f1b7ad;
  background: #fff5f3;
  color: #9d2d1d;
}
.account-form {
  display: grid;
  gap: 18px;
}
.account-form .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.account-form label {
  display: grid;
  gap: 8px;
  color: #26384d;
  font-size: 13px;
  font-weight: 800;
}
.avatar-picker {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border: 1px solid #e3e7ef;
  background: #fafbfc;
}
.avatar-picker img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 86px;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(31, 45, 61, 0.12);
}
.avatar-picker label {
  flex: 1;
}
.avatar-picker span {
  color: #737b88;
  font-size: 12px;
  font-weight: 600;
}
.account-form input,
.account-form select,
.account-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d8dde7;
  background: #fff;
  color: #1f2d3d;
  padding: 12px 14px;
  font: inherit;
  font-weight: 500;
}
.account-form input[type="file"] {
  padding: 10px;
  background: #fff;
}
.account-form input:focus,
.account-form select:focus,
.account-form textarea:focus {
  border-color: #d8492f;
  outline: 2px solid rgba(216, 73, 47, 0.15);
}
.account-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.settings-form {
  margin-top: 22px;
}
.account-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.account-info-table.compact {
  margin-bottom: 0;
}
.account-info-table th,
.account-info-table td {
  border: 1px solid #dedede;
  padding: 13px 18px;
  text-align: left;
}
.account-info-table th {
  width: 34%;
  color: #050505;
  font-weight: 800;
  background: #fff;
}
.account-list-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #e6e6e6;
  font-size: 13px;
}
.account-list-row.two-col {
  grid-template-columns: 1fr 1.5fr;
}
.account-empty {
  color: #626670;
  margin: 0;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th,
.compare-table td {
  border: 1px solid #eadfed;
  padding: 12px;
  vertical-align: top;
}
.compare-breadcrumb {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 16px solid #2e8be6;
  border-bottom: 1px solid #d7d7d7;
  color: #72777f;
  padding: 0 clamp(18px, 4vw, 48px);
}
.compare-breadcrumb a {
  color: #1f86ee;
  font-weight: 700;
}
.compare-breadcrumb strong {
  color: #72777f;
  font-weight: 700;
}
.compare-empty-stage {
  min-height: 210px;
  display: grid;
  place-items: center;
  color: #22364b;
  font-size: 16px;
}
.recent-compare-box {
  width: min(1276px, calc(100% - 28px));
  margin: 0 auto 48px;
  border: 2px dashed #b8b8b8;
  border-radius: 8px;
  padding: 28px 24px;
}
.recent-compare-box h2 {
  margin: 0 0 18px;
  font-family: var(--bakery-body);
  font-size: 24px;
  color: #22364b;
}
.recent-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 290px));
  gap: 22px;
}
.recent-compare-card {
  min-height: 102px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: center;
  border: 2px dashed #b8b8b8;
  border-radius: 8px;
  padding: 14px 18px;
  color: #22364b;
}
.recent-compare-card img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 2px;
  background: #f3eef6;
}
.recent-compare-card strong {
  display: block;
  margin-bottom: 8px;
}
.recent-compare-card b {
  display: block;
  color: #2387f4;
  line-height: 1.2;
}
.cake-toast {
  position: fixed;
  right: 18px;
  bottom: 90px;
  background: #23172a;
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: .2s ease;
  z-index: 1000;
}
.cake-toast.show {
  opacity: 1;
  transform: translateY(0);
}
.cake-chatbot-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 0;
  background: var(--bakery-primary);
  color: #fff;
  font-weight: 800;
}
.cake-chatbot-panel {
  position: fixed;
  right: 18px;
  bottom: 88px;
  width: min(360px, calc(100vw - 36px));
  background: #fff;
  border: 1px solid #eadfed;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(35,23,42,.18);
  z-index: 1000;
  overflow: hidden;
}
.cake-chatbot-panel header,
.cake-chatbot-panel form {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px;
  background: #fbf7fb;
}
.cake-chatbot-panel header {
  justify-content: space-between;
}
.cake-chat-log {
  max-height: 260px;
  overflow: auto;
  padding: 12px;
}
.cake-chat-log p {
  padding: 8px 10px;
  border-radius: 8px;
  background: #f4edf6;
}
.cake-chat-log .chat-user {
  background: var(--bakery-primary);
  color: #fff;
  margin-left: 34px;
}
.cake-chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 12px 12px;
}
.cake-chat-quick button {
  border: 1px solid #eadfed;
  background: #fff;
  border-radius: 999px;
  padding: 7px 9px;
}

@media (max-width: 1080px) {
  .cream-style .shop-header {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .promo-mosaic,
  .shop-shell {
    grid-template-columns: 1fr;
  }
  .woocommerce-archive.shop-shell {
    grid-template-columns: 1fr;
  }
  .woocommerce-archive .shop-sidebar {
    order: -1;
  }
  .promo-card.large {
    min-height: 250px;
  }
  .shop-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-detail-shell {
    grid-template-columns: 1fr;
  }
  .account-dashboard {
    grid-template-columns: 220px minmax(0, 1fr);
  }
  .account-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .cream-style .utility-bar,
  .category-nav,
  .shop-result-bar,
  .category-archive-head {
    flex-direction: column;
    align-items: stretch;
  }
  .category-nav {
    position: static;
    gap: 8px;
    padding: 12px;
  }
  .category-dropdown summary {
    width: 100%;
  }
  .cream-style.header-collapsed .category-nav {
    min-height: 0;
  }
  .shop-product-grid {
    grid-template-columns: 1fr;
  }
  .woocommerce-products-header .flex_enable,
  .in_right,
  .filter_end {
    align-items: stretch;
    flex-direction: column;
  }
  .woocommerce-ordering select,
  .products-per-page-box select {
    width: 100%;
    min-width: 0;
  }
  .recent-products-grid {
    grid-template-columns: 1fr;
  }
  .shop-sort {
    width: 100%;
  }
  .product-meta-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .card-actions {
    flex-direction: column;
  }
  .card-actions .btn {
    width: 100%;
  }
  .account-dashboard {
    grid-template-columns: 1fr;
    width: min(100% - 18px, 560px);
  }
  .account-sidebar {
    min-height: 0;
  }
  .account-main {
    gap: 18px;
  }
  .account-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .account-stat {
    min-height: 120px;
  }
  .account-panel {
    padding: 22px 16px;
  }
  .account-form .form-grid {
    grid-template-columns: 1fr;
  }
  .account-form .span-2 {
    grid-column: auto;
  }
  .avatar-picker {
    flex-direction: column;
    align-items: flex-start;
  }
  .account-form-actions {
    justify-content: stretch;
  }
  .account-form-actions .edit-info-btn {
    width: 100%;
  }
  .account-panel-head,
  .account-list-row,
  .account-list-row.two-col {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }
  .account-info-table th,
  .account-info-table td {
    display: block;
    width: 100%;
  }
  .account-info-table td {
    border-top: 0;
  }
}

@media (max-width: 1080px) {
  .exact-footer {
    flex-wrap: wrap;
    justify-content: center;
  }
  .payment-marks,
  .footer-social {
    min-width: 0;
  }
  .footer-links {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .exact-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 16px;
    padding: 22px 14px 96px;
    text-align: center;
  }

  .payment-marks {
    width: 100%;
    min-width: 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .hamburger-mark {
    display: none;
  }

  .visa-mark {
    font-size: 25px;
  }

  .verve-mark {
    font-size: 22px;
  }

  .footer-links {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    white-space: normal;
    font-size: 14px;
  }

  .footer-social {
    width: 100%;
    min-width: 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .footer-social strong {
    flex: 0 0 100%;
    margin: 0 0 2px;
  }

  .footer-social a,
  .footer-social button {
    width: 34px;
    height: 34px;
  }

  .footer-social button {
    margin-left: 0;
  }
}

/* Responsive hardening: fix real overflow sources without changing desktop layout. */
.cream-style .shop-header,
.cream-style .utility-bar,
.category-nav,
.shop-shell,
.woocommerce-archive.shop-shell,
.product-detail-shell,
.dashboard-shell,
.account-dashboard,
.cart-page,
.checkout-layout,
.product-grid,
.shop-product-grid,
.recent-products-grid,
.recent-compare-grid,
.promo-mosaic,
.section,
.popular-accordion,
.breadcrumb-strip,
.product-description-panel,
.recent_viewd_products,
.recent-compare-box,
.exact-footer {
  max-width: 100%;
}

.cream-style .shop-header > *,
.cream-style .utility-bar > *,
.category-nav > *,
.shop-shell > *,
.woocommerce-archive.shop-shell > *,
.product-detail-shell > *,
.dashboard-shell > *,
.account-dashboard > *,
.cart-page > *,
.checkout-layout > *,
.section > *,
.product-card,
.account-main,
.account-panel,
.compare-table-wrap,
.filter-block,
.side-promo,
.woocommerce-products-header .flex_enable > * {
  min-width: 0;
}

.header-search {
  width: min(460px, 100%);
  min-width: 0;
  max-width: 100%;
}

.header-search input,
.header-search button,
.btn,
.header-action,
.category-nav a,
.footer-links a,
.account-menu a,
.account-menu button {
  min-width: 0;
}

.header-action,
.btn,
.category-nav a,
.footer-links a {
  overflow-wrap: anywhere;
}

.compare-table-wrap,
.account-panel,
.cart-lines,
.gallery-thumbs {
  max-width: 100%;
}

.compare-table-wrap,
.account-panel {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table,
.account-info-table {
  min-width: 0;
}

.mini-line > *,
.drawer-total > *,
.cart-line > *,
.summary-panel div > *,
.compare-table th,
.compare-table td,
.account-info-table th,
.account-info-table td,
.dash-row > *,
.account-list-row > *,
.product-card,
.product-card h2,
.product-card h3,
.product-card p {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 1080px) {
  .cream-style .shop-header {
    justify-items: stretch;
    gap: 18px;
  }

  .cream-style .brand-mark,
  .header-search,
  .cream-style .header-actions {
    justify-self: stretch;
  }

  .cream-style .header-actions {
    justify-content: flex-start;
  }

  .category-nav,
  .cream-style.header-collapsed .category-nav {
    column-gap: 20px;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  }

  .category-menu-items {
    gap: 16px;
    overflow: hidden;
  }

  .category-menu-collapsed {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .recent-compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .cream-style .shop-header,
  .category-nav,
  .cream-style.header-collapsed .category-nav {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .cream-style .shop-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .category-nav,
  .cream-style.header-collapsed .category-nav {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
  }

  .category-dropdown,
  .category-dropdown summary,
  .cream-style.header-collapsed .category-dropdown summary {
    width: 100%;
    max-width: 100%;
  }

  .category-menu-collapsed,
  .cream-style.header-collapsed .category-menu-collapsed {
    display: none;
  }

  .category-menu-placeholder {
    display: none;
  }
}

@media (max-width: 680px) {
  .cream-style .utility-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 12px 12px;
    text-align: center;
  }

  .cream-style .utility-bar nav {
    min-width: 0;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px 10px;
    font-size: 12px;
    line-height: 1.25;
  }

  .cream-style .utility-bar strong {
    width: 100%;
    font-size: 13px;
    line-height: 1.2;
  }

  .cream-style .shop-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 14px 14px 12px;
    text-align: center;
  }

  .cream-style.header-collapsed .utility-bar,
  .cream-style.header-collapsed .shop-header {
    display: none;
    min-height: 0;
    height: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
  }

  .cream-style .brand-mark {
    justify-content: center;
    min-width: 0;
    gap: 0;
  }

  .cream-style .brand-mark > span {
    display: none;
  }

  .brand-logo-art,
  .brand-logo-img {
    width: min(var(--bakery-logo-width, 150px), 150px, calc(100vw - 56px));
    max-height: 92px;
    object-fit: contain;
  }

  .header-search {
    width: 100%;
    height: 46px;
    border-radius: 8px;
  }

  .header-search input {
    min-width: 0;
    padding-left: 14px;
    font-size: 15px;
  }

  .header-search button {
    flex: 0 0 44px;
    min-width: 44px;
    width: 44px;
    height: 40px;
    margin: 3px 3px 3px 0;
    padding: 0;
    border-radius: 7px;
    font-size: 27px;
  }

  .cream-style .header-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    align-items: start;
    width: 100%;
    padding: 2px 0 0;
  }

  .header-action {
    width: 100%;
    min-height: 56px;
    display: grid;
    grid-template-rows: 26px auto;
    align-items: start;
    justify-content: center;
    justify-items: center;
    gap: 2px;
    padding: 0 2px;
    white-space: normal;
    font-size: 11.5px;
    line-height: 1.1;
  }

  .header-action .action-icon {
    font-size: 24px;
    line-height: 1;
  }

  .action-badge {
    top: -5px;
    left: calc(50% + 4px);
    min-width: 18px;
    height: 18px;
    font-size: 11px;
  }

  .category-nav {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    gap: 8px;
    padding: 12px;
    min-height: 0;
    overflow-x: clip;
  }

  .cream-style.header-collapsed .category-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    gap: 0;
    min-height: 58px;
    padding: 8px 12px;
    background: #fff;
    border-bottom: 1px solid #e9eef5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .10);
    overflow-x: clip;
  }

  body.header-collapsed main {
    padding-top: 58px;
  }

  .category-dropdown,
  .category-dropdown summary,
  .cream-style.header-collapsed .category-dropdown summary {
    width: 100%;
  }

  .category-dropdown div {
    max-width: calc(100vw - 24px);
    min-width: 0;
  }

  .category-menu-items,
  .category-menu-collapsed,
  .cream-style.header-collapsed .category-menu-collapsed {
    height: auto;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .category-menu-collapsed,
  .cream-style.header-collapsed .category-menu-collapsed {
    display: none;
  }

  .cream-style.header-collapsed .category-nav a {
    min-height: 0;
  }

  .cream-style .hero-slider,
  .section,
  .catalog-layout,
  .cart-page,
  .checkout-layout,
  .shop-tools,
  .admin-panel,
  .admin-grid,
  .timeline,
  .philosophy-grid,
  .product-grid,
  .promo-mosaic,
  .popular-accordion,
  .shop-shell,
  .dokan_only_breadcrumb .auto-container,
  .woocommerce-archive.shop-shell,
  .recent_viewd_products,
  .product-detail-shell,
  .product-description-panel,
  .dashboard-shell,
  .breadcrumb-strip,
  .recent-compare-box {
    width: min(100% - 24px, 560px);
  }

  .cream-style .hero-slider {
    min-height: 650px;
  }

  .cream-style .hero-slide {
    padding: 28px 18px 54px;
  }

  .cream-style .hero-copy h1 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .menu-filter-panel {
    position: static;
  }

  .menu-category-head,
  .menu-product-card {
    grid-template-columns: 1fr;
  }

  .menu-category-head {
    align-items: start;
  }

  .menu-product-image {
    width: 100%;
    max-height: 230px;
  }

  .menu-product-side {
    justify-items: start;
  }

  .product-tabs {
    justify-content: flex-start;
    margin-left: 0;
  }

  .recent-compare-grid,
  .recent-compare-card,
  .dash-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .recent-compare-card {
    text-align: center;
    justify-items: center;
  }

  .gallery-thumbs {
    flex-wrap: wrap;
  }

  .cart-drawer {
    width: min(390px, calc(100vw - 20px));
    padding: 18px;
  }

  .cake-toast {
    right: 10px;
    left: 10px;
    bottom: 84px;
    text-align: center;
  }

  .cake-chatbot-toggle {
    right: 10px;
    bottom: 18px;
  }

  .cake-chatbot-panel {
    right: 10px;
    left: 10px;
    width: auto;
  }
}

@media (max-width: 420px) {
  .cream-style .header-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cream-style .utility-bar nav a {
    padding-inline: 1px;
  }

  .header-action {
    min-height: 52px;
    font-size: 10.5px;
  }

  .header-action .action-icon {
    font-size: 22px;
  }

  .payment-marks {
    gap: 16px;
  }

  .compare-breadcrumb {
    flex-wrap: wrap;
  }
}
