/* ==================== RESET & BASE ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow: #F5C000;
  --yellow-dark: #E6A800;
  --yellow-light: #FFF3B0;
  --navy: #1B2B7A;
  --navy-light: #2D3E99;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-muted: #666;
  --bg: #ffffff;
  --gray-light: #f7f7f7;
  --radius: 16px;
  --shadow: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.cart-open {
  overflow: hidden;
}

a, button { -webkit-tap-highlight-color: transparent; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 98px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo-image {
  display: block;
  height: 111px;
  width: auto;
  object-fit: contain;
}

.site-logo-image-footer {
  height: 137px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  font-weight: 700;
}

.nav-links a.active {
  border-bottom: 2px solid var(--yellow);
  border-radius: 0;
  padding-bottom: 0.2rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  padding: 0.4rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}

.icon-btn:hover { background: var(--gray-light); }

.cart-btn { position: relative; }

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.btn-order {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: 25px;
  padding: 0.55rem 1.3rem;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-order:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(245,192,0,0.45);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-quickbar {
  display: none;
}

.hero {
  background: var(--white);
  padding: 4rem 0 2rem;
  min-height: calc(100vh - 75px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--navy);
  line-height: 1.04;
  margin-bottom: 1.25rem;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 28px;
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,192,0,0.5);
}

.arrow-deco { flex-shrink: 0; }

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.hero-blob {
  position: absolute;
  width: 480px;
  height: 480px;
  background: var(--yellow);
  border-radius: 50% 42% 58% 44% / 46% 54% 46% 54%;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.hero-blob-sm {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--yellow);
  border-radius: 50%;
  left: 20px;
  bottom: 40px;
  z-index: 0;
  opacity: 0.5;
}

.hero-cake-img {
  position: relative;
  z-index: 1;
  width: 420px;
  height: 420px;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.18));
}

.quality-badge {
  position: absolute;
  bottom: 60px;
  right: 10px;
  z-index: 2;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: white;
  border: 3px dashed var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.quality-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1.3;
}

.quality-pct {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
}

.dots-deco {
  position: absolute;
  top: 20px;
  right: 0;
  z-index: 0;
}

.section-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  display: inline-block;
}

.section-title {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.section-line {
  width: 50px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 0 auto 2.5rem;
}

.categories-section {
  background: var(--white);
  padding: 5rem 0 4rem;
  border-top: 1px solid #f0f0f0;
}

.cat-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.cat-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  flex: 1;
  padding: 1rem 0;
}

.cat-track::-webkit-scrollbar { display: none; }

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  flex-shrink: 0;
}

.cat-item:hover .cat-circle { border-color: var(--yellow); transform: translateY(-4px); }

.cat-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #e8e8e8;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: var(--shadow-card);
}

.cat-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-item p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

.cat-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  transition: all 0.25s;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
}

.cat-arrow:hover {
  border-color: var(--yellow);
  background: var(--yellow);
}

.view-all-wrap { text-align: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 28px;
  padding: 0.75rem 1.8rem;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-outline:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}

.season-section {
  background:
    radial-gradient(circle at left center, rgba(245, 192, 0, 0.12), transparent 20%),
    radial-gradient(circle at right top, rgba(45, 75, 203, 0.06), transparent 24%),
    #ffffff;
  padding: 4.5rem 0 5rem;
}

.season-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.1fr;
  align-items: center;
  gap: 2rem;
}

.season-showcase {
  position: relative;
}

.season-showcase-top {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.season-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 2px solid #96a9f1;
  background: #fff;
  color: #2340aa;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(35, 64, 170, 0.08);
}

.season-view-all-btn svg {
  width: 18px;
  height: 18px;
  padding: 0.2rem;
  border-radius: 50%;
  background: #2340aa;
  color: #fff;
}

.season-showcase-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(360px, 0.95fr) minmax(320px, 0.95fr);
  gap: 1.2rem;
  align-items: center;
}

.season-text {
  max-width: 320px;
}

.custom-builder-shell {
  position: relative;
}

.custom-builder-header {
  margin-bottom: 2rem;
}

.custom-builder-copy {
  max-width: 760px;
}

.custom-builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.9fr);
  gap: 1.75rem;
  align-items: start;
}

.custom-builder-main {
  display: grid;
  gap: 1rem;
}

.custom-stepper,
.custom-builder-card,
.custom-preview-panel {
  background: #fffdf7;
  border: 1px solid #ece0c3;
  box-shadow: var(--shadow-card);
}

.custom-stepper {
  display: flex;
  align-items: center;
  padding: 1.35rem;
  border-radius: 24px;
}

.custom-step {
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  min-width: 72px;
}

.custom-step span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ece6d6;
  color: var(--navy);
  font-weight: 800;
}

.custom-step strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.custom-step-active span {
  background: var(--yellow);
}

.custom-step-active {
  color: var(--navy);
}

.custom-step-line {
  flex: 1;
  height: 2px;
  background: #e5dcc7;
  margin: 0 0.35rem;
}

.custom-builder-card {
  border-radius: 24px;
  padding: 1.35rem;
}

.custom-builder-card h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.custom-base-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.custom-base-option {
  border: 2px solid #eadfca;
  background: linear-gradient(180deg, #fffef9, #fff6de);
  border-radius: 18px;
  padding: 1rem;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.custom-base-option:hover,
.custom-base-option.active {
  transform: translateY(-2px);
  border-color: var(--yellow);
  box-shadow: 0 14px 30px rgba(245,192,0,0.18);
}

.custom-base-title {
  display: block;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.custom-base-meta {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.custom-builder-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.custom-builder-badges span {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #fff1b8;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.custom-home-promo {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 24px;
  background: #fff7db;
  border: 1px solid #ecdca8;
  box-shadow: var(--shadow-card);
}

.custom-home-promo p {
  color: var(--text-muted);
  line-height: 1.6;
}

.tag-yellow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.season-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.season-desc {
  color: #4f63ae;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.season-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: none;
  background: var(--yellow);
  color: #2340aa;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(245, 192, 0, 0.28);
}

.season-order-btn svg {
  width: 18px;
  height: 18px;
  padding: 0.18rem;
  border-radius: 50%;
  background: #2340aa;
  color: #fff;
}

.custom-order-card {
  margin-top: 1.5rem;
  padding: 1.35rem;
  background: #fffdf7;
  border: 1px solid #ece0c3;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.custom-order-head {
  margin-bottom: 1rem;
}

.custom-order-head h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.custom-order-head p,
.custom-order-note {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

.custom-order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.custom-order-grid-branch {
  grid-template-columns: 1fr;
}

.custom-order-field {
  display: grid;
  gap: 0.45rem;
}

.custom-order-field span {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
}

.custom-order-field input,
.custom-order-field textarea,
.custom-order-field select {
  width: 100%;
  border: 1px solid #ddd3bf;
  background: #fff;
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
}

.custom-order-field textarea {
  resize: vertical;
}

.custom-order-field-full {
  margin-top: 0.9rem;
}

.custom-order-actions {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.custom-order-btn {
  width: fit-content;
}

.custom-preview-panel {
  position: sticky;
  top: 96px;
  border-radius: 32px;
  padding: 1.4rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(245, 192, 0, 0.18), transparent 24%),
    #f8f3e6;
}

.custom-preview-top {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 1.25rem;
}

.custom-preview-top p {
  color: var(--navy);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.custom-preview-dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.custom-preview-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 192, 0, 0.4);
}

.custom-preview-dots span:first-child {
  background: var(--yellow);
}

.custom-preview-stage {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.custom-preview-blob {
  position: absolute;
  width: 290px;
  height: 290px;
  border-radius: 50% 44% 56% 42% / 50% 52% 48% 50%;
  background: rgba(245, 192, 0, 0.72);
}

.custom-preview-image {
  position: relative;
  z-index: 2;
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 24px 40px rgba(0,0,0,0.14);
}

.custom-preview-stand,
.custom-preview-stand-base {
  position: absolute;
  background: #e8dfcc;
  border-radius: 999px;
}

.custom-preview-stand {
  bottom: 24px;
  width: 180px;
  height: 16px;
}

.custom-preview-stand-base {
  bottom: 0;
  width: 120px;
  height: 44px;
  border-radius: 100px 100px 0 0;
}

.custom-preview-label {
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 3;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid #ecdca8;
  box-shadow: var(--shadow-card);
  transform: rotate(8deg);
}

.custom-preview-label small {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.custom-preview-label strong {
  color: var(--navy);
}

.custom-preview-summary {
  position: relative;
  z-index: 1;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  border: 1px solid #e8dcc2;
  display: grid;
  gap: 0.8rem;
}

.custom-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-muted);
}

.custom-summary-row strong {
  color: var(--navy);
  text-align: right;
}

.custom-summary-total {
  padding-top: 0.9rem;
  border-top: 1px solid #e8dcc2;
  align-items: end;
}

.custom-summary-total div {
  display: grid;
  gap: 0.2rem;
}

.custom-summary-total small {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
}

.custom-summary-total strong {
  font-size: 1.8rem;
  line-height: 1;
}

.custom-guarantee {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
}

.custom-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.season-cake-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}

.season-cake-wrap-showcase {
  min-height: 430px;
  overflow: visible;
}

.season-showcase-frame {
  position: absolute;
  z-index: 0;
  width: min(100%, 470px);
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.season-blob {
  position: absolute;
  width: 340px;
  height: 340px;
  background: var(--yellow);
  border-radius: 50% 44% 56% 42% / 50% 52% 48% 50%;
  z-index: 0;
}

.season-cake-img {
  position: relative;
  z-index: 1;
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

.season-cake-img-showcase {
  width: min(100%, 360px);
  height: auto;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.12));
  max-width: 100%;
  transform: translateY(10px);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.season-feature-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1.5px solid #f0d77c;
  border-radius: 26px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 22px 40px rgba(33, 58, 153, 0.05);
  overflow: hidden;
  width: 100%;
}

.season-feature-card {
  padding: 1.5rem 1.2rem;
  display: flex;
  gap: 0.75rem;
  min-height: 150px;
}

.season-feature-card:nth-child(1),
.season-feature-card:nth-child(2) {
  border-bottom: 1px solid #f3e8bf;
}

.season-feature-card:nth-child(odd) {
  border-right: 1px solid #f3e8bf;
}

.season-feature-card .feature-icon {
  background: #fff0b8;
  color: #2340aa;
  width: 40px;
  height: 40px;
}

.season-feature-card h4 {
  color: #2340aa;
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.season-feature-card p {
  color: #4f63ae;
  font-size: 0.78rem;
  line-height: 1.45;
}

.feature-card {
  background: white;
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s;
}

.feature-card:hover { transform: translateY(-3px); }

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--yellow-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.feature-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.bestsellers-section {
  padding: 5rem 0;
  background: white;
}

.testimonial-section {
  background: linear-gradient(180deg, #ffffff 0%, #fffdf6 100%);
  padding: 1.5rem 0 4.5rem;
}

.testimonial-shell {
  display: grid;
  gap: 1.5rem;
}

.testimonial-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.testimonial-tag {
  justify-content: center;
}

.testimonial-title {
  margin-bottom: 0.9rem;
}

.testimonial-copy {
  color: #5d6fb3;
  font-size: 0.98rem;
  line-height: 1.7;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #efe3bf;
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: 0 18px 36px rgba(34, 60, 156, 0.06);
}

.testimonial-card-featured {
  background: linear-gradient(135deg, #fffef9, #fff4cf);
}

.testimonial-stars {
  color: #f5c000;
  letter-spacing: 0.2em;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  color: #233a99;
  font-size: 1.02rem;
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 1.1rem;
}

.testimonial-person strong,
.testimonial-mini-head strong {
  display: block;
  color: #233a99;
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.testimonial-person span,
.testimonial-mini-head span {
  color: #8090cd;
  font-size: 0.82rem;
}

.testimonial-mini-copy {
  margin-top: 1rem;
  color: #4f63ae;
  font-size: 0.9rem;
  line-height: 1.65;
}

.testimonial-card-highlight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #233a99;
  color: #fff;
  text-align: center;
}

.testimonial-highlight-value {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}

.testimonial-highlight-label {
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  font-size: 0.9rem;
}

.catalog-page {
  padding: 3.5rem 0 0;
  background:
    radial-gradient(circle at top right, rgba(245, 192, 0, 0.18), transparent 24%),
    linear-gradient(180deg, #fffdf4 0%, #ffffff 18%);
}

.catalog-hero {
  padding: 0 0 3rem;
}

.catalog-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(245, 192, 0, 0.12), rgba(27, 43, 122, 0.08));
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.catalog-hero-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background-image: radial-gradient(rgba(245, 192, 0, 0.8) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.18;
}

.catalog-tag {
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.catalog-title {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.04;
  margin-bottom: 1rem;
}

.catalog-subtitle {
  max-width: 620px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.catalog-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.catalog-hero-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.9;
}

.catalog-hero-image {
  position: relative;
  z-index: 1;
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.catalog-section {
  padding: 0 0 5rem;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: 100px;
}

.catalog-panel {
  background: #fff;
  border: 1px solid #efe8d7;
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.catalog-panel-title {
  color: var(--navy);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.filter-stack {
  display: grid;
  gap: 0.85rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-size: 0.95rem;
  cursor: pointer;
}

.filter-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--yellow);
}

.catalog-divider {
  height: 1px;
  background: #eee6d4;
  margin: 1.35rem 0;
}

.catalog-range {
  width: 100%;
  accent-color: var(--yellow);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

.catalog-filter-btn {
  margin-top: 1.5rem;
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.catalog-content {
  display: grid;
  gap: 1.5rem;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
}

.catalog-sort {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--navy);
  font-size: 0.92rem;
}

.catalog-sort select {
  border: none;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.catalog-card {
  border-radius: 18px;
}

.catalog-card-image-wrap {
  position: relative;
  height: 240px;
}

.catalog-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}

.catalog-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: calc(100% - 240px);
}

.catalog-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

.catalog-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.catalog-rating svg {
  width: 16px;
  height: 16px;
}

.catalog-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  flex: 1;
}

.catalog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
}

.catalog-pagination button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #ddd4be;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-weight: 700;
}

.catalog-pagination button.active {
  background: var(--yellow);
  border-color: var(--yellow);
}

.contact-page {
  padding: 3.5rem 0 0;
  background:
    radial-gradient(circle at top left, rgba(245, 192, 0, 0.14), transparent 18%),
    radial-gradient(circle at bottom right, rgba(27, 43, 122, 0.08), transparent 22%),
    #fcfbf5;
}

.contact-hero {
  position: relative;
  padding: 1rem 0 3rem;
  overflow: hidden;
}

.contact-hero-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-pill {
  display: inline-block;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(245, 192, 0, 0.18);
  color: #7d6100;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.contact-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.25rem, 4.2vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.contact-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.contact-hero-orb-right {
  width: 260px;
  height: 260px;
  background: rgba(245, 192, 0, 0.24);
  top: -40px;
  right: -60px;
}

.contact-hero-orb-left {
  width: 220px;
  height: 220px;
  background: rgba(27, 43, 122, 0.12);
  bottom: 0;
  left: -40px;
}

.contact-section {
  padding: 0 0 5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-bento {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2rem;
}

.contact-side,
.contact-main {
  display: grid;
  gap: 1.5rem;
}

.contact-panel {
  background: #fff;
  border: 1px solid #ece4d2;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.contact-panel-main,
.contact-form-panel {
  padding: 1.6rem;
}

.contact-form-panel {
  position: relative;
  overflow: hidden;
}

.contact-map-panel {
  padding: 1.6rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(245, 192, 0, 0.08));
}

.contact-panel-deco {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  opacity: 0.08;
}

.contact-panel-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.contact-info-stack {
  display: grid;
  gap: 1.15rem;
}

.contact-info-item,
.contact-inline-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.contact-info-label {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.contact-info-text,
.contact-inline-card p,
.contact-form-copy,
.contact-map-copy p {
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-info-text a {
  color: inherit;
  text-decoration: none;
}

.contact-info-text a:hover {
  color: var(--navy);
}

.store-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff0b8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-inline-card {
  margin-top: 1.3rem;
  padding: 1rem;
  border-radius: 18px;
  background: var(--yellow);
  color: var(--navy);
}

.contact-inline-card strong {
  display: block;
  margin-bottom: 0.15rem;
}

.contact-follow {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ece2cd;
}

.contact-follow p {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.contact-follow-links {
  display: flex;
  gap: 0.75rem;
}

.contact-follow-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #1b2b7a;
  color: #1b2b7a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
}

.contact-hours-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 22px;
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-card);
}

.contact-hours-icon {
  font-size: 2rem;
  font-weight: 700;
  opacity: 0.4;
  line-height: 1;
}

.contact-hours-title {
  font-weight: 800;
}

.contact-hours-text {
  font-size: 0.88rem;
}

.contact-form-shell {
  max-width: 720px;
}

.contact-heading-large {
  font-size: 1.9rem;
  margin-bottom: 0.4rem;
}

.contact-form-copy {
  margin-bottom: 1.3rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd3bf;
  background: #fffdf7;
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
}

.contact-submit-btn {
  border: none;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  padding: 1rem 1.8rem;
  cursor: pointer;
  width: fit-content;
}

.contact-wave {
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  opacity: 0.2;
}

/* ==================== MAP SECTION (4 branches) ==================== */

.contact-map-showcase {
  grid-column: 1 / -1;
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
}

/* Map-like background: soft base + road grid + block texture */
.contact-map-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f3efe2, #e4dcc6);
}

.contact-map-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.55) 3px, transparent 3px),
    linear-gradient(90deg, rgba(255,255,255,0.55) 3px, transparent 3px),
    linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 220px 220px, 220px 220px, 44px 44px, 44px 44px;
}

.contact-map-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 70%, rgba(27,43,122,0.08) 0 60px, transparent 61px),
    radial-gradient(circle at 60% 20%, rgba(245,192,0,0.14) 0 70px, transparent 71px),
    radial-gradient(circle at 85% 75%, rgba(27,43,122,0.08) 0 55px, transparent 56px),
    radial-gradient(circle at 35% 45%, rgba(245,192,0,0.1) 0 50px, transparent 51px);
}

.contact-map-pins {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transform: translate(-50%, -100%);
  transition: transform 0.25s;
}

.map-pin:hover { transform: translate(-50%, -100%) translateY(-4px); }

.map-pin-num {
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  box-shadow: 0 8px 18px rgba(27,43,122,0.35);
  border: 3px solid #fff;
}

.map-pin-num > * { transform: rotate(-45deg); }

.map-pin:nth-child(2n) .map-pin-num { background: var(--yellow-dark); color: var(--navy); }

.map-pin-drop {
  width: 8px;
  height: 8px;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  margin-top: 2px;
  filter: blur(1px);
}

.pin-tl { top: 32%; left: 22%; }
.pin-tr { top: 26%; left: 74%; }
.pin-bl { top: 72%; left: 30%; }
.pin-br { top: 78%; left: 80%; }

.contact-map-card {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 3;
  max-width: 340px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(221, 211, 191, 0.85);
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.12);
  padding: 1.25rem;
}

.contact-map-card-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
}

.contact-map-card-head p {
  color: var(--navy);
  font-weight: 800;
}

.contact-map-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
}

.contact-branch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  margin-top: 1rem;
}

.contact-branch-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  background: #fff9e7;
  border: 1px solid #ebdfbc;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.contact-branch-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  border-color: var(--yellow);
}

.branch-num {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.branch-text strong {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
}

.branch-text span {
  display: block;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.branch-text em {
  display: inline-block;
  margin-top: 0.3rem;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
}

/* ==================== END MAP SECTION ==================== */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.5rem;
}

.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: white;
  border: 1px solid #f0f0f0;
  transition: all 0.3s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.13);
}

.product-img-wrap {
  height: 200px;
  overflow: hidden;
  background: var(--gray-light);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.product-card:hover .product-img-wrap img { transform: scale(1.08); }

.product-info {
  padding: 1rem;
}

.product-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.stars {
  display: flex;
  gap: 1px;
}

.stars svg {
  width: 13px;
  height: 13px;
}

.product-rating span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}

.cart-add-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--yellow);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.cart-add-btn svg { stroke: var(--navy); }

.cart-add-btn:hover {
  background: var(--navy);
  transform: scale(1.1);
}

.cart-add-btn:hover svg { stroke: white; }

.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.25s;
}

.social-links a:hover { background: var(--yellow); color: var(--navy); }

.footer-links h4, .footer-contact h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--yellow); }

.footer-contact p {
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  color: rgba(255,255,255,0.65);
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 2rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy);
  color: white;
  padding: 0.9rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 999;
  border-left: 4px solid var(--yellow);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
}

.cart-drawer.open {
  pointer-events: auto;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 28, 67, 0.45);
  border: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cart-drawer.open .cart-drawer-backdrop {
  opacity: 1;
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: #fffdf7;
  box-shadow: -18px 0 40px rgba(0,0,0,0.14);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-panel-head,
.cart-panel-foot {
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid #efe5ce;
}

.cart-panel-foot {
  border-top: 1px solid #efe5ce;
  border-bottom: none;
  background: #fffaf0;
}

.cart-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.cart-panel-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9b7b00;
  margin-bottom: 0.4rem;
}

.cart-panel-head h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.cart-panel-close {
  width: 40px;
  height: 40px;
  border: 1px solid #eadfca;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cart-panel-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 1rem 1.25rem 1.4rem;
  display: grid;
  gap: 1rem;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}

.cart-empty,
.cart-summary,
.cart-store-picker,
.cart-line-item {
  background: #fff;
  border: 1px solid #efe5ce;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.cart-empty {
  padding: 1.1rem;
  display: grid;
  gap: 0.35rem;
  color: var(--text-muted);
}

.cart-empty strong {
  color: var(--navy);
}

.cart-items {
  display: grid;
  gap: 0.9rem;
}

.cart-line-item {
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
}

.cart-line-copy {
  display: grid;
  gap: 0.2rem;
}

.cart-line-copy strong,
.cart-line-actions strong,
.cart-store-copy strong {
  color: var(--navy);
}

.cart-line-copy span,
.cart-store-copy span,
.cart-store-heading span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.cart-line-actions {
  display: grid;
  gap: 0.7rem;
}

.cart-qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  background: #fff7d8;
}

.cart-qty-controls button,
.cart-remove-btn,
.cart-whatsapp-btn {
  border: none;
  cursor: pointer;
}

.cart-qty-controls button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 1rem;
}

.cart-remove-btn {
  width: fit-content;
  background: transparent;
  color: #b54a3c;
  font-weight: 700;
  padding: 0;
}

.cart-summary,
.cart-store-picker {
  padding: 1rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
}

.cart-summary-row + .cart-summary-row {
  margin-top: 0.8rem;
}

.cart-summary-total {
  padding-top: 0.8rem;
  border-top: 1px solid #efe5ce;
  color: var(--navy);
}

.cart-store-heading {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
}

.cart-store-list {
  display: grid;
  gap: 0.75rem;
}

.cart-store-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid #ebdfc6;
  border-radius: 14px;
  background: #fffdf8;
  cursor: pointer;
}

.cart-store-option input {
  accent-color: var(--navy);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cart-store-copy {
  display: grid;
  gap: 0.15rem;
}

.cart-store-map {
  display: inline-flex;
  margin-top: 0.9rem;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
}

.cart-store-map:hover {
  color: var(--yellow-dark);
}

.cart-whatsapp-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 999px;
  padding: 1rem 1.2rem;
}

.cart-whatsapp-btn:disabled {
  background: #a7d8b8;
  cursor: not-allowed;
}

/* ==================== ABOUT PAGE ==================== */

.about-page {
  background:
    radial-gradient(circle at top left, rgba(245, 192, 0, 0.12), transparent 22%),
    radial-gradient(circle at top right, rgba(27, 43, 122, 0.05), transparent 26%),
    #fff;
}

.about-hero,
.about-pillars,
.about-story,
.about-signature,
.about-branches,
.about-cta {
  padding: 4.5rem 0;
}

.about-hero-grid,
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.about-hero-copy {
  max-width: 620px;
}

.about-hero-title,
.about-story-title,
.about-cta-title {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.about-hero-title {
  font-size: clamp(2.5rem, 4.8vw, 4.5rem);
  margin-bottom: 1.2rem;
}

.about-hero-text,
.about-story-text,
.about-cta-text,
.about-pillar-card p,
.about-check-item p,
.about-signature-copy p,
.about-branch-card p,
.about-stat-card span {
  color: #4f63ae;
  line-height: 1.75;
}

.about-hero-actions,
.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.about-stat-card {
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.95);
  border: 1px solid #efe1b2;
  box-shadow: var(--shadow-card);
}

.about-stat-card strong,
.about-pillar-card h3,
.about-signature-copy h3,
.about-branch-card strong,
.about-check-item strong {
  display: block;
  color: var(--navy);
  font-weight: 800;
}

.about-stat-card strong {
  margin-bottom: 0.35rem;
}

.about-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}

.about-hero-blob {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 58% 42% 55% 45% / 43% 58% 42% 57%;
  background: linear-gradient(180deg, #ffd229, #f5c000);
  z-index: 0;
}

.about-hero-image {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 42px rgba(0,0,0,0.16));
}

.about-hero-badge {
  position: absolute;
  right: 0.5rem;
  bottom: 3rem;
  z-index: 2;
  max-width: 190px;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  border: 1px solid #eedda6;
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-card);
}

.about-hero-badge strong {
  display: block;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.about-hero-badge span {
  color: #4f63ae;
  font-size: 0.9rem;
  line-height: 1.6;
}

.about-pillars {
  background: linear-gradient(180deg, #fffefb, #fff8e6);
}

.about-pillar-grid,
.about-signature-grid,
.about-branch-grid {
  display: grid;
  gap: 1.2rem;
}

.about-pillar-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-pillar-card {
  padding: 1.5rem;
  border-radius: 28px;
  border: 1px solid #efe1b2;
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-card);
}

.about-pillar-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: #fff3bf;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.about-pillar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.about-story {
  background: #fff;
}

.about-story-visual {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-story-frame {
  position: absolute;
  width: 100%;
  max-width: 430px;
  aspect-ratio: 1;
  border-radius: 60% 40% 56% 44% / 44% 57% 43% 56%;
  background: linear-gradient(180deg, rgba(245, 192, 0, 0.95), rgba(245, 192, 0, 0.75));
}

.about-story-image {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.16));
}

.about-story-tag,
.about-cta-tag {
  justify-content: flex-start;
}

.about-story-title,
.about-cta-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}

.about-story-copy {
  max-width: 560px;
}

.about-checklist {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-check-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: #fffdf7;
  border: 1px solid #efe3bf;
  box-shadow: var(--shadow-card);
}

.about-check-item span {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--yellow);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.about-signature {
  background: linear-gradient(180deg, #fff, #fffaf0);
}

.about-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about-left-title {
  text-align: left;
}

.about-signature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-signature-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #efe3bf;
  box-shadow: var(--shadow-card);
}

.about-signature-image-wrap {
  height: 250px;
  background: #faf7ef;
}

.about-signature-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-signature-copy {
  padding: 1.2rem;
}

.about-signature-copy h3 {
  margin-bottom: 0.45rem;
}

.about-branches {
  background:
    radial-gradient(circle at right top, rgba(245, 192, 0, 0.12), transparent 24%),
    #fff;
}

.about-branch-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-branch-card {
  display: grid;
  gap: 0.45rem;
  padding: 1.35rem;
  text-decoration: none;
  border-radius: 24px;
  background: #fffdf8;
  border: 1px solid #eedeb0;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.about-branch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.09);
  border-color: var(--yellow);
}

.about-branch-number {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.about-branch-link {
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 700;
  margin-top: 0.4rem;
}

.about-cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 34px;
  background: linear-gradient(135deg, #fffaf0, #fff2bf);
  border: 1px solid #ebd899;
  box-shadow: var(--shadow-card);
}

.about-cta-shell > div:first-child {
  max-width: 660px;
}

@media (max-width: 1024px) {
  .season-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .season-showcase-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, 1fr);
  }

  .season-cake-wrap { order: -1; grid-column: 1 / -1; }

  .custom-builder-layout {
    grid-template-columns: 1fr;
  }

  .custom-preview-panel {
    position: static;
  }

  .catalog-hero-card,
  .catalog-layout,
  .contact-layout,
  .contact-bento {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: static;
  }

  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-hero-grid,
  .about-story-grid,
  .about-pillar-grid,
  .about-signature-grid,
  .about-branch-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-hero-stats {
    grid-template-columns: 1fr;
  }

  .about-cta-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .navbar {
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(12px);
  }

  .nav-inner {
    height: 84px;
    gap: 1rem;
  }

  .site-logo-image {
    height: 88px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.25rem;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0 1rem;
    background:
      radial-gradient(circle at top right, rgba(245, 192, 0, 0.22), transparent 28%),
      linear-gradient(180deg, #fffdf7 0%, #f7f8ff 100%);
  }

  .hero-image-wrap {
    min-height: 280px;
    order: -1;
  }

  .hero-blob { width: 320px; height: 320px; right: 50%; transform: translate(50%, -50%); }
  .hero-cake-img { width: 280px; height: 280px; }
  .quality-badge { bottom: 10px; right: calc(50% - 180px); }
  .hero-cta { justify-content: center; flex-wrap: wrap; gap: 1rem; }
  .hero-text {
    padding: 1.6rem 1.2rem;
    border-radius: 28px;
    background: rgba(255,255,255,0.82);
    box-shadow: 0 18px 36px rgba(27, 43, 122, 0.08);
  }
  .hero-text h1 {
    font-size: clamp(2.55rem, 10vw, 4rem);
  }
  .hero-sub {
    max-width: 34ch;
    margin: 0 auto 1.75rem;
  }

  .nav-links {
    position: absolute;
    top: calc(100% - 8px);
    left: 1rem;
    right: 1rem;
    background: #fff;
    flex-direction: column;
    width: calc(100% - 2rem);
    margin-left: 0;
    padding: 1rem;
    border-radius: 22px;
    border: 1px solid rgba(27, 43, 122, 0.08);
    box-shadow: 0 18px 34px rgba(0,0,0,0.1);
    display: none;
    gap: 0.35rem;
    z-index: 30;
  }

  .nav-links.open { display: flex; }
  .nav-links li {
    width: 100%;
  }
  .nav-actions {
    display: flex;
    margin-left: auto;
    gap: 0.5rem;
  }
  .nav-actions .icon-btn:first-child,
  .nav-actions .btn-order {
    display: none;
  }
  .hamburger {
    display: flex;
    margin-left: 0;
  }
  .nav-links a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
    padding: 0.8rem 0.9rem;
    border-radius: 16px;
    background: linear-gradient(180deg, #fbfbff 0%, #f3f6ff 100%);
    border: 1px solid rgba(27, 43, 122, 0.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
  }
  .nav-links a.active {
    border-bottom: none;
    padding-bottom: 0.8rem;
    background: linear-gradient(180deg, #eef2ff 0%, #e5ebff 100%);
    border-color: rgba(27, 43, 122, 0.12);
  }

  .cart-drawer {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 5rem 1rem 1rem;
    overflow-y: auto;
  }

  .cart-panel {
    position: relative;
    top: 0;
    right: 0;
    width: min(100%, 480px);
    max-height: calc(100vh - 6rem);
    height: auto;
    border-radius: 28px;
    box-shadow: 0 24px 56px rgba(0,0,0,0.18);
    transform: translateY(24px);
    opacity: 0;
  }

  @supports (height: 100svh) {
    .cart-panel {
      max-height: calc(100svh - 6rem);
    }
  }

  @supports (height: 100dvh) {
    .cart-panel {
      max-height: calc(100dvh - 6rem);
    }
  }

  .cart-drawer.open .cart-panel {
    transform: translateY(0);
    opacity: 1;
  }

  .cart-panel-head {
    position: relative;
    padding-top: 1.4rem;
  }

  .cart-panel-head::before {
    content: "";
    position: absolute;
    top: 0.6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 5px;
    border-radius: 999px;
    background: #decda7;
  }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-form-grid,
  .contact-branch-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-grid,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-copy {
    max-width: none;
  }

  .about-hero-visual {
    min-height: 420px;
  }

  .about-hero-image {
    width: min(100%, 420px);
  }

  .about-hero-badge {
    right: 0;
    bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .season-inner {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .season-feature-panel {
    grid-template-columns: 1fr;
  }

  .season-feature-card:nth-child(odd) {
    border-right: none;
  }

  .season-feature-card:not(:last-child) {
    border-bottom: 1px solid #f3e8bf;
  }

  .custom-order-grid {
    grid-template-columns: 1fr;
  }

  .custom-base-grid,
  .custom-feature-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .about-pillar-grid,
  .about-signature-grid,
  .about-branch-grid {
    grid-template-columns: 1fr;
  }

  .about-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .catalog-hero-card {
    padding: 2rem 1.5rem;
  }

  .contact-panel-main,
  .contact-form-panel,
  .contact-map-panel {
    padding: 1.25rem;
  }

  .contact-map-showcase { min-height: 340px; }

  .contact-map-card {
    position: relative;
    top: auto;
    left: auto;
    margin: 1rem;
    max-width: none;
  }

  .pin-tl { top: 20%; left: 20%; }
  .pin-tr { top: 20%; left: 78%; }
  .pin-bl { top: 60%; left: 22%; }
  .pin-br { top: 62%; left: 80%; }

  .about-hero,
  .about-pillars,
  .about-story,
  .about-signature,
  .about-branches,
  .about-cta {
    padding: 3.5rem 0;
  }

  .about-cta-shell {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .products-grid { grid-template-columns: 1fr; gap: 1rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .cat-circle { width: 90px; height: 90px; }
  .hero {
    padding-top: 1.25rem;
  }
  .hero-cake-img { width: 220px; height: 220px; }
  .hero-text {
    padding: 1.35rem 1rem;
  }
  .hero-text h1 {
    font-size: clamp(2.2rem, 12vw, 3.35rem);
  }
  .btn-primary, .btn-outline, .btn-order { justify-content: center; }
  .btn-primary, .btn-outline {
    width: 100%;
  }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-hero-image { width: 220px; height: 220px; }
  .catalog-hero-ring { width: 250px; height: 250px; }
  .cart-panel {
    width: 100%;
    max-height: calc(100vh - 5.5rem);
    border-radius: 24px;
  }
  @supports (height: 100svh) {
    .cart-panel {
      max-height: calc(100svh - 5rem);
    }
  }
  @supports (height: 100dvh) {
    .cart-panel {
      max-height: calc(100dvh - 5rem);
    }
  }
  .cart-panel-head,
  .cart-panel-foot {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cart-panel-foot {
    flex-shrink: 0;
    padding-bottom: 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  }
  .cart-panel-head h2 {
    font-size: 1.45rem;
  }
  .cart-panel-body {
    padding: 0.9rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  }
  .cart-line-item,
  .cart-summary,
  .cart-store-picker,
  .cart-empty {
    border-radius: 20px;
  }
  .cart-store-option {
    grid-template-columns: 28px 1fr;
    gap: 0.85rem;
    padding: 1rem;
  }
  .cart-store-copy strong {
    font-size: 0.98rem;
  }
  .custom-stepper {
    padding: 1rem 0.75rem;
  }
  .custom-step {
    min-width: 54px;
  }
  .custom-step strong {
    font-size: 0.66rem;
  }
  .custom-preview-label {
    right: 10px;
    top: 0;
  }
  .season-cake-img-showcase {
    width: min(100%, 360px);
  }
  .season-showcase-frame {
    width: min(100%, 400px);
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-blob {
    width: 320px;
    height: 320px;
  }

  .about-hero-visual,
  .about-story-visual {
    min-height: 320px;
  }

  .about-check-item {
    grid-template-columns: 1fr;
  }
}

.cat-item {
  text-decoration: none;
  color: inherit;
}

.catalog-sidebar-select {
  width: 100%;
  border: 1px solid rgba(27, 43, 122, 0.14);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: #1b2b7a;
  background: #fff;
}

.catalog-helper-copy,
.product-copy,
.shop-hero-text {
  color: #6d7285;
  line-height: 1.7;
}

.product-category-label {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c47d12;
  font-weight: 700;
}

.product-name a,
.product-link-btn,
.shop-category-card,
.shop-custom-card {
  text-decoration: none;
  color: inherit;
}

.product-copy {
  margin: 0.2rem 0 1rem;
  font-size: 0.95rem;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 43, 122, 0.12);
  color: #1b2b7a;
  background: #fff;
  font-weight: 600;
}

.shop-page,
.product-detail-page {
  background:
    radial-gradient(circle at top left, rgba(245, 192, 0, 0.14), transparent 32%),
    linear-gradient(180deg, #fffaf1 0%, #ffffff 24%, #f7f8ff 100%);
}

.shop-hero,
.product-detail-hero {
  padding: 3rem 0 2rem;
}

.shop-hero-grid,
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.shop-hero-title,
.product-detail-title {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4.3rem);
  line-height: 1.02;
  color: #16245c;
}

.shop-hero-actions,
.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.shop-hero-visual,
.product-detail-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.shop-hero-ring,
.product-detail-image-shell {
  position: relative;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(253,245,225,0.95) 100%);
  box-shadow: 0 32px 80px rgba(27, 43, 122, 0.12);
}

.shop-hero-ring {
  width: min(420px, 100%);
  padding: 2rem;
}

.shop-hero-image,
.product-detail-image {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 28px;
}

.shop-section {
  padding: 2rem 0 4rem;
}

.shop-section-cream,
.product-detail-benefits {
  background: rgba(255, 247, 231, 0.62);
}

.shop-category-grid,
.shop-custom-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.shop-category-card,
.shop-custom-card {
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 44px rgba(27, 43, 122, 0.08);
}

.shop-category-card {
  overflow: hidden;
}

.shop-category-image-wrap {
  padding: 1rem 1rem 0;
}

.shop-category-image-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 22px;
}

.shop-category-copy {
  padding: 1.2rem 1.25rem 1.4rem;
}

.shop-category-copy strong,
.shop-custom-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.15rem;
  color: #16245c;
}

.shop-category-copy p,
.shop-custom-card p,
.product-detail-summary,
.product-detail-description p {
  margin: 0;
  color: #6d7285;
  line-height: 1.7;
}

.shop-custom-shell {
  display: grid;
  gap: 1.5rem;
}

.shop-custom-card {
  padding: 1.5rem;
}

.shop-custom-card span {
  display: inline-flex;
  margin-top: 1rem;
  color: #1b2b7a;
  font-weight: 700;
}

.shop-custom-actions {
  display: flex;
  justify-content: flex-start;
}

.product-detail-copy {
  display: grid;
  gap: 1rem;
}

.product-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  color: #6d7285;
}

.product-detail-price {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  color: #1b2b7a;
}

.product-detail-description h2 {
  margin: 0 0 0.75rem;
  color: #16245c;
}

@media (max-width: 1024px) {
  .shop-hero-grid,
  .product-detail-grid,
  .shop-category-grid,
  .shop-custom-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .shop-hero-grid,
  .product-detail-grid,
  .shop-category-grid,
  .shop-custom-grid {
    grid-template-columns: 1fr;
  }

  .shop-hero,
  .product-detail-hero {
    padding-top: 1.5rem;
  }
}
