:root {
  --pink: #f30058;
  --pink-strong: #d8004c;
  --pink-soft: #fff0f6;
  --pink-mist: #fff7fb;
  --ink: #16121a;
  --muted: #655d68;
  --line: #ffd1e2;
  --white: #ffffff;
  --cocoa: #5d2d22;
  --mint: #48bfa0;
  --lemon: #ffd95a;
  --shadow: 0 22px 60px rgba(243, 0, 88, 0.16);
  --radius: 8px;
  --radius-lg: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(243, 0, 88, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fffafd 46%, #ffffff 100%);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(255, 209, 226, 0.72);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand-link {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-link img {
  width: 142px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.primary-nav a {
  position: relative;
  border-radius: 0;
  color: #211720;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding: 24px 16px 21px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  background: transparent;
  color: var(--pink);
  transform: none;
}

.primary-nav a::after {
  width: calc(100% - 32px);
  height: 2px;
  content: "";
  position: absolute;
  left: 16px;
  bottom: 13px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.hamburger {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  cursor: pointer;
}

.hamburger span {
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.menu-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 34%, rgba(255, 255, 255, 0.18) 70%),
    radial-gradient(circle at 14% 74%, rgba(243, 0, 88, 0.12), transparent 34%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  min-height: 690px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(610px, 100%);
  padding: 78px 0 92px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 700;
}

h3 {
  font-size: 21px;
  font-weight: 700;
}

.hero-copy h1,
.page-hero h1,
.menu-hero h1 {
  color: var(--pink);
}

.hero-copy p,
.page-hero p,
.menu-hero p,
.section-heading p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  max-width: 590px;
}

.hero-actions,
.cta-grid {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 32px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  padding: 13px 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(243, 0, 88, 0.28);
}

.btn-soft {
  background: #ffffff;
  color: var(--pink);
  border: 1px solid var(--line);
}

.btn-white {
  background: var(--white);
  color: var(--pink);
}

.trust-strip {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 22px 0;
}

.trust-grid article,
.values-grid article,
.support-grid article,
.branch-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(243, 0, 88, 0.08);
}

.trust-grid article {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
}

.trust-grid strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.25;
}

.line-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--pink);
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.icon-ingredients::before {
  width: 12px;
  height: 18px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  content: "";
}

.icon-recipe::before {
  width: 17px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 3px;
  content: "";
}

.icon-recipe::after {
  width: 8px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor;
  content: "";
  position: absolute;
  top: 13px;
}

.icon-shield::before {
  width: 17px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 12px 12px 14px 14px;
  clip-path: polygon(50% 0, 100% 18%, 88% 100%, 50% 83%, 12% 100%, 0 18%);
  content: "";
}

.icon-heart::before,
.icon-heart::after {
  width: 12px;
  height: 18px;
  background: currentColor;
  border-radius: 12px 12px 0 0;
  content: "";
  position: absolute;
  top: 9px;
}

.icon-heart::before {
  left: 10px;
  transform: rotate(-45deg);
  transform-origin: 0 100%;
}

.icon-heart::after {
  right: 10px;
  transform: rotate(45deg);
  transform-origin: 100% 100%;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding-bottom: 72px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.section-heading.centered {
  justify-items: center;
  text-align: center;
}

.section-heading h2 {
  color: var(--ink);
}

.section-heading h2::first-letter,
.category-section h2,
.menu-note h2,
.visual-panel h2,
.contact-info-panel h2 {
  color: var(--pink);
}

.pink-band {
  background: var(--pink);
  color: var(--white);
  overflow: hidden;
}

.split-band {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) 1fr;
  align-items: center;
  gap: 44px;
  padding: 54px 0;
}

.band-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(110, 0, 39, 0.25);
}

.band-image img {
  width: 100%;
  aspect-ratio: 1.7;
  object-fit: cover;
}

.band-copy {
  max-width: 560px;
}

.band-copy p,
.menu-cta p,
.cta-section p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.band-copy .btn {
  margin-top: 22px;
}

.favorite-grid,
.category-tiles,
.values-grid,
.support-grid {
  display: grid;
  gap: 18px;
}

.favorite-grid {
  grid-template-columns: repeat(4, 1fr);
}

.favorite-card {
  min-height: 250px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background-image:
    linear-gradient(180deg, transparent 42%, rgba(22, 18, 26, 0.76) 100%),
    url("../img/menu-spread.png");
  background-size: auto 118%, cover;
  background-position: var(--pos), var(--pos);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.favorite-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 74px rgba(243, 0, 88, 0.21);
}

.favorite-card span {
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 20px;
}

.category-tiles {
  grid-template-columns: repeat(4, 1fr);
}

.category-tiles a {
  min-height: 118px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(243, 0, 88, 0.12), rgba(72, 191, 160, 0.12)),
    var(--white);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.category-tiles a::after {
  width: 84px;
  height: 84px;
  content: "";
  position: absolute;
  right: -24px;
  top: -22px;
  border: 12px solid rgba(243, 0, 88, 0.18);
  border-radius: 50%;
}

.category-tiles a:hover {
  transform: translateY(-4px);
  border-color: var(--pink);
}

.cta-section {
  background:
    radial-gradient(circle at 10% 40%, rgba(255, 217, 90, 0.2), transparent 30%),
    linear-gradient(135deg, var(--pink), #ff3c82);
  color: var(--white);
}

.cta-grid {
  justify-content: space-between;
}

.cta-grid h2 {
  max-width: 760px;
}

.cta-grid p {
  margin: 16px 0 0;
  max-width: 700px;
}

.page-hero,
.menu-hero {
  padding: 88px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 16%, rgba(243, 0, 88, 0.13), transparent 30%),
    linear-gradient(180deg, #fff7fb 0%, #ffffff 100%);
}

.page-hero-grid,
.menu-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 52px;
}

.identity-card,
.branch-search,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 26px;
}

.identity-card {
  justify-self: end;
  width: min(420px, 100%);
}

.branch-hero-tools {
  display: grid;
  gap: 16px;
  justify-self: end;
  width: min(460px, 100%);
}

.branch-hero-card {
  background: var(--white);
  border: 1px solid rgba(243, 0, 88, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 24px;
}

.branch-hero-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--pink);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.branch-hero-card h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.branch-hero-card a {
  display: inline-flex;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 10px;
}

.branch-hero-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.identity-card img {
  width: 260px;
  margin: 0 auto;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.swatch {
  height: 58px;
  border-radius: var(--radius);
}

.hot-pink {
  background: var(--pink);
}

.blush {
  background: #ffd9e8;
}

.cocoa {
  background: var(--cocoa);
}

.mint {
  background: var(--mint);
}

.story-grid,
.visual-grid,
.application-grid,
.contact-layout,
.branch-layout,
.product-layout {
  display: grid;
  gap: 36px;
}

.story-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.story-copy {
  color: var(--muted);
  font-size: 18px;
}

.story-copy p {
  margin: 0 0 18px;
}

.visual-section {
  background: #fff7fb;
}

.visual-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.visual-grid > img,
.franchise-image,
.menu-hero-image {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-grid > img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.corporate-trust-strip {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 5px solid var(--pink);
  padding: 26px 0;
}

.corporate-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.corporate-trust-grid article {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(243, 0, 88, 0.08);
  padding: 22px;
}

.corporate-trust-grid strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.2;
}

.corporate-about-section {
  background: #ffffff;
}

.corporate-about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: start;
}

.corporate-about-copy {
  border-left: 4px solid var(--pink);
  padding-left: 28px;
}

.corporate-about-copy h3 {
  color: var(--pink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.corporate-about-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.corporate-feature-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(243, 0, 88, 0.11), transparent 26%),
    linear-gradient(180deg, #fff7fb 0%, #ffffff 100%);
}

.corporate-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.corporate-feature-grid article {
  min-height: 182px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(243, 0, 88, 0.08);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.corporate-feature-grid article::after {
  width: 74px;
  height: 74px;
  content: "";
  position: absolute;
  right: -22px;
  bottom: -22px;
  border: 10px solid rgba(243, 0, 88, 0.12);
  border-radius: 50%;
}

.corporate-feature-grid h3 {
  color: var(--pink);
  font-size: 20px;
  line-height: 1.16;
}

.corporate-feature-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.corporate-visual-section .visual-grid > img {
  aspect-ratio: 1.58;
}

.corporate-fresh-section {
  background: #ffffff;
}

.visual-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 32px;
  position: relative;
  color: var(--muted);
}

.check-list li::before {
  width: 18px;
  height: 18px;
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: inset 0 0 0 5px var(--white), 0 0 0 1px var(--pink);
}

.values-grid,
.support-grid {
  grid-template-columns: repeat(3, 1fr);
}

.support-grid {
  grid-template-columns: repeat(4, 1fr);
}

.values-grid article,
.support-grid article {
  padding: 28px;
}

.values-grid h3,
.support-grid h2 {
  margin-top: 18px;
  color: var(--pink);
}

.support-grid h2 {
  font-size: 22px;
}

.values-grid p,
.support-grid p,
.branch-card p,
.contact-info-panel p,
.menu-note p,
.product-info p {
  color: var(--muted);
}

.menu-hero {
  padding-bottom: 42px;
}

.menu-hero-image img,
.franchise-image img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.menu-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
  align-self: start;
}

.menu-filter-panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 42px rgba(243, 0, 88, 0.1);
  padding: 18px;
}

.menu-filter-panel h2 {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 23px;
  line-height: 1.08;
  text-transform: none;
}

.menu-filter {
  display: grid;
  gap: 10px;
}

.filter-button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  text-align: left;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

.product-layout {
  grid-template-columns: 292px 1fr;
  align-items: start;
}

.menu-note {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 217, 90, 0.32), transparent 32%),
    var(--pink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 22px 58px rgba(243, 0, 88, 0.22);
}

.menu-note img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
  margin-bottom: 22px;
}

.menu-note h2 {
  color: var(--white);
  font-size: 29px;
}

.menu-note p {
  color: rgba(255, 255, 255, 0.86);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 42px rgba(243, 0, 88, 0.09);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 70px rgba(243, 0, 88, 0.17);
}

.product-card.is-hidden {
  display: none;
}

.product-shot {
  height: 198px;
  background-image: url("../img/menu-spread.png");
  background-size: 390% auto;
  background-position: var(--pos);
}

.product-info {
  padding: 18px 18px 20px;
}

.product-category {
  margin: 0 0 4px;
  color: var(--pink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-info h3 {
  font-size: 20px;
}

.product-info p:not(.product-category) {
  min-height: 56px;
  margin: 8px 0 14px;
  font-size: 15px;
}

.product-info strong {
  color: var(--pink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.menu-cta {
  background:
    radial-gradient(circle at 78% 30%, rgba(255, 217, 90, 0.28), transparent 28%),
    linear-gradient(135deg, #f30058, #ff4b91);
  color: var(--white);
}

.branch-search {
  width: 100%;
}

.branch-search label {
  display: block;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 8px;
}

.branch-search select,
.pink-form input,
.pink-form select,
.pink-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.branch-search select:focus,
.pink-form input:focus,
.pink-form select:focus,
.pink-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(243, 0, 88, 0.1);
}

.branch-layout {
  grid-template-columns: 1fr 1fr;
}

.map-panel {
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(243, 0, 88, 0.08), rgba(72, 191, 160, 0.08)),
    repeating-linear-gradient(45deg, rgba(243, 0, 88, 0.08) 0 2px, transparent 2px 28px),
    #fff7fb;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.map-panel::before {
  width: 72%;
  height: 42%;
  content: "";
  position: absolute;
  left: 14%;
  top: 29%;
  background: #ffd0e1;
  clip-path: polygon(4% 43%, 14% 34%, 27% 34%, 38% 25%, 54% 31%, 64% 24%, 76% 31%, 88% 28%, 98% 42%, 92% 57%, 77% 58%, 65% 70%, 49% 62%, 34% 68%, 21% 57%, 8% 59%);
}

.map-dot {
  width: 18px;
  height: 18px;
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 8px rgba(243, 0, 88, 0.16);
}

.dot-istanbul {
  left: 29%;
  top: 45%;
}

.dot-kocaeli {
  left: 32%;
  top: 48%;
}

.dot-ankara {
  left: 51%;
  top: 49%;
}

.dot-izmir {
  left: 22%;
  top: 60%;
}

.dot-bursa {
  left: 33%;
  top: 54%;
}

.branch-list {
  display: grid;
  gap: 14px;
}

.branch-card {
  padding: 22px;
}

.branch-card h2 {
  color: var(--pink);
  font-size: 24px;
}

.branch-card p {
  margin: 8px 0;
}

.branch-card a {
  color: var(--ink);
  font-weight: 700;
}

.branch-card.is-hidden {
  display: none;
}

.application-section {
  background: #fff7fb;
}

.application-grid {
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
}

.pink-form {
  display: grid;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pink-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
}

.pink-form textarea {
  resize: vertical;
}

.form-success {
  display: none;
  margin: 0;
  color: var(--mint);
  font-weight: 700;
}

.form-success.is-visible {
  display: block;
}

body[data-page="franchise"] {
  background: #ffffff;
}

.franchise-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 2%, rgba(243, 0, 88, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fff9fc 48%, #ffffff 100%);
}

.franchise-page .container {
  width: min(1280px, calc(100% - 80px));
}

.franchise-page h1,
.franchise-page h2,
.franchise-page h3 {
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0;
}

.franchise-landing {
  position: relative;
  padding: 74px 0 58px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(255, 241, 247, 0.58) 100%),
    radial-gradient(circle at 75% 10%, rgba(243, 0, 88, 0.18), transparent 30%);
}

.franchise-landing::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: #ffd8e6;
}

.franchise-landing-grid {
  display: grid;
  grid-template-columns: minmax(520px, 0.96fr) minmax(520px, 1.04fr);
  align-items: center;
  gap: 30px;
}

.franchise-copy h1 {
  margin: 0;
  color: var(--pink);
  font-size: 58px;
  font-weight: 700;
  line-height: 1.04;
  text-transform: none;
}

.franchise-copy h1 > span,
.franchise-copy h1 strong {
  display: block;
  white-space: nowrap;
}

.franchise-copy h1 strong {
  color: var(--ink);
  font-weight: 700;
}

.franchise-copy h1 strong span {
  color: var(--pink);
}

.franchise-copy p {
  max-width: 520px;
  margin: 24px 0 0;
  color: #463d47;
  font-size: 17px;
  line-height: 1.7;
}

.franchise-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 610px;
  margin: 34px 0 28px;
}

.franchise-proof-grid article {
  display: grid;
  justify-items: center;
  gap: 4px;
  min-height: 94px;
  padding: 0 14px;
  text-align: center;
  border-right: 1px solid #ffd3e2;
}

.franchise-proof-grid article:last-child {
  border-right: 0;
}

.franchise-line-icon,
.franchise-card-icon {
  color: var(--pink);
}

.franchise-line-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}

.franchise-line-icon svg,
.franchise-card-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.franchise-proof-grid b {
  color: #211720;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.franchise-proof-grid small {
  color: #6b626c;
  font-size: 12px;
  line-height: 1.25;
}

.franchise-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.franchise-actions .btn {
  min-height: 50px;
  padding-inline: 28px;
  text-transform: uppercase;
}

.franchise-actions .btn::after,
.franchise-text-link::after {
  content: "›";
  margin-left: 9px;
  font-size: 22px;
  line-height: 0;
}

.franchise-text-link {
  color: #3a303a;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.franchise-text-link:hover {
  color: var(--pink);
}

.franchise-showcase {
  position: relative;
  min-height: 518px;
}

.franchise-store-card {
  position: absolute;
  inset: 0 0 30px 42px;
  overflow: hidden;
  border: 1px solid #ffc5d9;
  border-radius: 30px;
  box-shadow: 0 34px 88px rgba(140, 28, 72, 0.2);
  background: #ffe0eb;
}

.franchise-store-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(180deg, transparent 60%, rgba(255, 255, 255, 0.72));
}

.franchise-store-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.1) brightness(1.04);
}

.franchise-sign {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(243, 0, 88, 0.82);
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(93, 0, 36, 0.18);
}

.franchise-product-card {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: min(430px, 62%);
  overflow: hidden;
  border: 1px solid #ffd1e2;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(93, 0, 36, 0.18);
}

.franchise-product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: 74% center;
}

.franchise-partner-card {
  position: absolute;
  right: 8px;
  bottom: 76px;
  z-index: 3;
  min-width: 202px;
  padding: 22px 24px;
  border: 1px solid #ffe0eb;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(93, 0, 36, 0.12);
}

.franchise-partner-card strong {
  display: block;
  color: var(--pink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.franchise-partner-card > span {
  display: block;
  margin-top: 6px;
  color: #4b414c;
  font-weight: 800;
}

.franchise-star-rating {
  display: flex;
  gap: 7px;
  margin-top: 13px;
}

.franchise-star-rating span {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  margin-top: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #f30058, #ff7eac);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(243, 0, 88, 0.18);
}

.franchise-win-section,
.franchise-training-section,
.franchise-info-section {
  padding: 36px 0;
  background: #ffffff;
}

.franchise-win-grid {
  display: grid;
  grid-template-columns: 1.05fr repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.franchise-win-grid h2 {
  margin: 0;
  align-self: center;
  color: #201821;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.12;
}

.franchise-win-grid article {
  min-height: 142px;
  padding: 22px 20px;
  border: 1px solid #ffdce8;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(243, 0, 88, 0.06);
}

.franchise-card-icon {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #ffc5d9;
  border-radius: 50%;
  color: var(--pink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.franchise-card-icon svg {
  width: 21px;
  height: 21px;
}

.franchise-win-grid h3 {
  margin: 13px 0 7px;
  color: #201821;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.franchise-win-grid p,
.franchise-concept-copy p,
.franchise-training-list p,
.franchise-support-card li,
.franchise-candidate-card p,
.franchise-faq-card p {
  color: #655d68;
}

.franchise-win-grid p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.franchise-concept-section {
  padding: 18px 0 34px;
  background: #ffffff;
}

.franchise-concept-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.22fr 0.76fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid #ffc9dc;
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 8%, rgba(243, 0, 88, 0.1), transparent 30%),
    linear-gradient(135deg, #fff5fa, #ffffff 56%, #fff0f6);
}

.franchise-concept-copy h2,
.franchise-info-grid h2 {
  margin: 0;
  color: #201821;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.08;
}

.franchise-concept-copy p {
  margin: 14px 0 18px;
  font-size: 15px;
}

.franchise-check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.franchise-check-list li {
  position: relative;
  padding-left: 28px;
  color: #2a222c;
  font-weight: 800;
}

.franchise-check-list li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
}

.franchise-concept-media {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 24px 50px rgba(93, 0, 36, 0.12);
}

.franchise-concept-media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
}

.franchise-metric-list {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid #ffe0eb;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.franchise-metric-list article {
  padding: 13px 0;
  border-bottom: 1px solid #ffe0eb;
}

.franchise-metric-list article:last-child {
  border-bottom: 0;
}

.franchise-metric-list strong {
  display: block;
  color: var(--pink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.franchise-metric-list span {
  display: block;
  margin-top: 5px;
  color: #403740;
  font-weight: 800;
}

.franchise-training-section {
  padding-top: 30px;
}

.franchise-training-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 42px;
  align-items: end;
}

.franchise-training-section .section-heading {
  margin-bottom: 24px;
}

.franchise-training-section .section-heading h2 {
  max-width: 520px;
  font-size: 31px;
  line-height: 1.12;
}

.franchise-training-section .section-heading p {
  max-width: 560px;
  margin-top: 12px;
  font-size: 15px;
}

.franchise-training-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.franchise-training-list article {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 16px 10px 0;
  text-align: center;
  border-right: 1px solid #ffdce8;
}

.franchise-training-list article:last-child {
  border-right: 0;
}

.franchise-training-list .franchise-line-icon {
  width: 36px;
  height: 36px;
}

.franchise-training-list h3 {
  margin: 0;
  color: #211720;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.franchise-training-list p {
  margin: 0;
  font-size: 12px;
  line-height: 1.38;
}

.franchise-support-card {
  padding: 28px;
  border: 1px solid #ffd1e2;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff6fa, #ffe3ee);
  box-shadow: 0 18px 44px rgba(243, 0, 88, 0.1);
}

.franchise-support-card img {
width: 82px;
    margin: -64px auto 16px;
    border: 8px solid #ffffff;
    border-radius: 10px;
    box-shadow: 0 14px 32px rgba(243, 0, 88, 0.18);
    background: #ffffff;
}

.franchise-support-card h3 {
  margin: 0 0 18px;
  color: #211720;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
}

.franchise-support-card .franchise-check-list {
  gap: 9px;
}

.franchise-support-card li {
  font-size: 14px;
}

.franchise-process-section {
  padding: 20px 0 26px;
  background: #ffffff;
}

.franchise-process-band {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 26px;
  align-items: center;
  padding: 32px 42px;
  border-radius: 10px;
  background: linear-gradient(110deg, #ff9fc1 0%, #f30058 48%, #ff6ea2 100%);
  color: #ffffff;
  box-shadow: 0 24px 56px rgba(243, 0, 88, 0.2);
}

.franchise-process-title h2 {
  margin: 0;
  color: #ffffff;
  font-size: 27px;
  font-weight: 700;
}

.franchise-process-title p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.franchise-process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.franchise-process-list::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 7%;
  left: 7%;
  border-top: 2px dashed rgba(255, 255, 255, 0.72);
}

.franchise-process-list li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 9px;
  text-align: center;
}

.franchise-process-list span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--pink);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(93, 0, 36, 0.14);
}

.franchise-process-list strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.franchise-process-list small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.35;
}

.franchise-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.franchise-candidate-card,
.franchise-faq-card {
  min-height: 292px;
  padding: 28px 32px;
  border: 1px solid #ffdce8;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(243, 0, 88, 0.06);
}

.franchise-candidate-card {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 22px;
  align-items: center;
}

.franchise-candidate-card p {
  margin: 12px 0 18px;
  max-width: 410px;
  font-size: 15px;
}

.franchise-mini-store {
  position: relative;
  min-height: 170px;
  border: 1px solid #ffc5d9;
  border-radius: 18px 18px 12px 12px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.5) 50%, transparent 51%) 0 82px / 56px 68px,
    linear-gradient(180deg, #ff7fab 0 50px, #ffffff 50px 56px, #ffd4e4 56px 100%);
  box-shadow: inset 0 -58px 0 #ffffff, 0 18px 34px rgba(243, 0, 88, 0.14);
}

.franchise-mini-store::before {
  content: "";
  position: absolute;
  top: -30px;
  right: 76px;
  width: 48px;
  height: 48px;
  border-radius: 50% 50% 50% 8px;
  background: radial-gradient(circle at 50% 44%, #ffffff 0 18%, transparent 19%), var(--pink);
  transform: rotate(-45deg);
  box-shadow: 0 12px 28px rgba(243, 0, 88, 0.26);
}

.franchise-mini-store span {
  position: absolute;
  top: 15px;
  left: 20px;
  right: 20px;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.franchise-faq-card h2 {
  margin-bottom: 18px;
}

.franchise-faq-card details {
  border-bottom: 1px solid #ffe0eb;
}

.franchise-faq-card details:last-child {
  border-bottom: 0;
}

.franchise-faq-card summary {
  cursor: pointer;
  padding: 13px 0;
  color: #2a222c;
  font-weight: 700;
  list-style: none;
}

.franchise-faq-card summary::-webkit-details-marker {
  display: none;
}

.franchise-faq-card summary::after {
  content: "+";
  float: right;
  color: var(--pink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
}

.franchise-faq-card details[open] summary::after {
  content: "−";
}

.franchise-faq-card p {
  margin: 0 0 14px;
  font-size: 14px;
}

.franchise-application {
  padding: 112px 0;
  background:
    radial-gradient(circle at 17% 12%, rgba(243, 0, 88, 0.08), transparent 26%),
    linear-gradient(180deg, #fff8fc, #fff1f7);
}

.franchise-form-heading {
  align-self: center;
  margin-bottom: 0;
}

.franchise-form-heading h2 {
  margin: 0;
  color: #171018;
  font-size: 56px;
  font-weight: 700;
  line-height: 0.96;
}

.franchise-form-heading h2::first-letter {
  color: inherit;
}

.franchise-form-heading h2 span {
  color: var(--pink);
}

.franchise-form-heading p {
  max-width: 430px;
  margin-top: 30px;
  font-size: 19px;
}

.franchise-application .pink-form {
  padding: 34px 34px 28px;
  border-color: #ffc5d9;
  box-shadow: 0 22px 64px rgba(243, 0, 88, 0.12);
}

.franchise-application .pink-form .btn {
  width: 100%;
}

body[data-page="kurumsal"] {
  background: #ffffff;
}

.corporate-page {
  overflow: hidden;
  padding: 28px 0 0;
  background:
    radial-gradient(circle at 10% 4%, rgba(243, 0, 88, 0.04), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fffafd 100%);
}

.corporate-page .container {
  width: min(1280px, calc(100% - 72px));
}

.corporate-page h1,
.corporate-page h2,
.corporate-page h3 {
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

.corporate-story-section {
  padding: 0 0 18px;
}

.corporate-story-card {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 58px;
  align-items: center;
  padding: 24px;
  border: 1px solid #ffd5e5;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 60px rgba(243, 0, 88, 0.07);
}

.corporate-story-image {
  position: relative;
  min-height: 342px;
  overflow: hidden;
  border-radius: 10px;
  background: #fff0f6;
}

.corporate-story-image img {
  width: 100%;
  height: 100%;
  min-height: 342px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) brightness(1.04);
}

.corporate-story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(243, 0, 88, 0.22), transparent 42%);
  pointer-events: none;
}

.corporate-story-image span {
  position: absolute;
  top: 84px;
  left: 62px;
  z-index: 1;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 0.95;
  text-shadow: 0 0 18px rgba(243, 0, 88, 0.92), 0 0 34px rgba(243, 0, 88, 0.5);
}

.corporate-story-copy {
  padding-right: 28px;
}

.corporate-kicker {
  display: inline-block;
  color: var(--pink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.corporate-story-copy h1 {
  margin: 20px 0 0;
  color: var(--pink);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
}

.corporate-story-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: #3e3640;
  font-size: 16px;
  line-height: 1.72;
}

.corporate-more-button {
  min-height: 40px;
  margin-top: 22px;
  padding-inline: 24px;
  font-size: 12px;
  text-transform: uppercase;
}

.corporate-more-button span {
  margin-right: 7px;
  font-size: 13px;
}

.corporate-section-title {
  display: grid;
  justify-items: center;
  margin: 0 auto 22px;
  text-align: center;
}

.corporate-section-title h2 {
  color: var(--pink);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
}

.corporate-section-title span {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 160px;
  margin-top: 6px;
  color: var(--pink);
  font-size: 16px;
}

.corporate-section-title span::before,
.corporate-section-title span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 62px;
  height: 1px;
  background: #ffd3e2;
}

.corporate-section-title span::before {
  left: 0;
}

.corporate-section-title span::after {
  right: 0;
}

.corporate-mission-section,
.corporate-values-section,
.corporate-why-section,
.corporate-sustain-section {
  padding: 12px 0;
  background: #ffffff;
}

.corporate-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.corporate-mission-grid article {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 138px;
  padding: 26px 34px;
  border: 1px solid #ffd5e5;
  border-radius: 12px;
  background: #fffefe;
  box-shadow: 0 16px 40px rgba(243, 0, 88, 0.05);
}

.corporate-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid #ffc8db;
  border-radius: 50%;
  background: #fff1f6;
  color: var(--pink);
}

.corporate-icon svg,
.corporate-badge-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.corporate-mission-grid h3,
.corporate-values-grid h3,
.corporate-why-grid h3 {
  margin: 0;
  color: var(--pink);
  font-size: 18px;
  font-weight: 700;
}

.corporate-mission-grid p,
.corporate-values-grid p,
.corporate-why-grid p,
.corporate-sustain-card p {
  margin: 10px 0 0;
  color: #655d68;
  font-size: 14px;
  line-height: 1.55;
}

.corporate-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.corporate-values-grid article {
  display: grid;
  justify-items: center;
  min-height: 168px;
  padding: 28px 18px 24px;
  text-align: center;
  border: 1px solid #ffdce8;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(243, 0, 88, 0.05);
}

.corporate-values-grid .corporate-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 16px;
}

.corporate-values-grid .corporate-icon svg {
  width: 31px;
  height: 31px;
}

.corporate-values-grid h3 {
  color: #19131b;
  font-size: 15px;
}

.corporate-values-grid p {
  max-width: 180px;
  font-size: 13px;
}

.corporate-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.corporate-why-grid article {
  position: relative;
  overflow: hidden;
  min-height: 258px;
  padding-bottom: 24px;
  text-align: center;
  border: 1px solid #ffdce8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(243, 0, 88, 0.06);
}

.corporate-why-grid img {
  width: 100%;
  height: 142px;
  object-fit: cover;
}

.corporate-why-grid article:nth-child(1) img {
  object-position: 10% 48%;
}

.corporate-why-grid article:nth-child(2) img {
  object-position: 70% 50%;
}

.corporate-why-grid article:nth-child(3) img {
  object-position: center;
}

.corporate-why-grid article:nth-child(4) img {
  object-position: 72% 42%;
}

.corporate-badge-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin: -25px auto 12px;
  position: relative;
  z-index: 1;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--pink);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(243, 0, 88, 0.24);
}

.corporate-badge-icon svg {
  width: 25px;
  height: 25px;
}

.corporate-why-grid p {
  max-width: 230px;
  margin-inline: auto;
  padding-inline: 14px;
}

.corporate-sustain-section {
  padding-bottom: 32px;
}

.corporate-sustain-card {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  align-items: center;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid #ffcddd;
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 42%, rgba(243, 0, 88, 0.07), transparent 28%),
    linear-gradient(100deg, #fff0f6 0%, #ffffff 48%, #ffe5ef 100%);
}

.corporate-sustain-card div {
  padding: 36px 70px;
}

.corporate-sustain-card h2 {
  margin: 0;
  color: var(--pink);
  font-size: 35px;
  font-weight: 700;
  line-height: 1.1;
}

.corporate-sustain-card h2::before {
  content: "♥";
  display: inline-block;
  margin-right: 9px;
  color: var(--pink);
  font-size: 18px;
  transform: translateY(-6px);
}

.corporate-sustain-card p {
  max-width: 610px;
  font-size: 15px;
}

.corporate-sustain-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: 74% center;
  align-self: stretch;
}

body[data-page="kariyer"] {
  background: #ffffff;
}

.career-page {
  overflow: hidden;
  background: #ffffff;
}

.career-page h1,
.career-page h2,
.career-page h3 {
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

.career-hero {
  min-height: 430px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ffe1eb;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 27%, rgba(255, 255, 255, 0.94) 42%, rgba(255, 255, 255, 0.64) 55%, rgba(255, 255, 255, 0) 76%),
    url("../img/career-hero-team.png") right center / auto 100% no-repeat,
    #fff2f7;
}

.career-hero-inner {
  display: grid;
  align-items: center;
  min-height: 430px;
}

.career-hero-copy {
  width: min(560px, 100%);
  padding: 54px 0;
}

.career-hero-copy h1 {
  margin: 0;
  color: var(--pink);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.05;
}

.career-hero-copy h1 span {
  color: var(--pink);
}

.career-hero-copy p {
  max-width: 500px;
  margin: 24px 0 0;
  color: #2a222c;
  font-size: 16px;
  line-height: 1.65;
}

.career-hero-copy p + p {
  margin-top: 14px;
}

.career-hero-copy .btn,
.career-join-copy .btn {
  min-width: 198px;
  min-height: 42px;
  margin-top: 24px;
  justify-content: center;
  text-transform: uppercase;
}

.career-benefits {
  padding: 26px 0 46px;
  background: #ffffff;
}

.career-title {
  display: grid;
  justify-items: center;
  margin-bottom: 25px;
  text-align: center;
}

.career-title h2 {
  margin: 0;
  color: var(--pink);
  font-size: 31px;
  font-weight: 700;
  line-height: 1.1;
}

.career-title span {
  position: relative;
  width: 152px;
  display: grid;
  place-items: center;
  margin-top: 7px;
  color: var(--pink);
  font-size: 15px;
}

.career-title span::before,
.career-title span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 58px;
  height: 1px;
  background: #ffd3e2;
}

.career-title span::before {
  left: 0;
}

.career-title span::after {
  right: 0;
}

.career-benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.career-benefit-grid article {
  min-height: 136px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  padding: 0 34px;
  text-align: center;
  border-right: 1px solid #ffe0eb;
}

.career-benefit-grid article:last-child {
  border-right: 0;
}

.career-icon,
.career-process-icon {
  display: grid;
  place-items: center;
  border: 1px solid #ffc8db;
  border-radius: 50%;
  background: rgba(255, 241, 246, 0.9);
  color: var(--pink);
}

.career-icon {
  width: 62px;
  height: 62px;
}

.career-icon svg,
.career-process-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.career-benefit-grid h3 {
  margin: 0;
  color: #171018;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.22;
}

.career-benefit-grid p {
  max-width: 210px;
  margin: 0;
  color: #4e4550;
  font-size: 13px;
  line-height: 1.45;
}

.career-join-section {
  padding: 52px 0 56px;
  border-bottom: 4px solid var(--pink);
  background:
    radial-gradient(circle at 38% 50%, rgba(255, 255, 255, 0.64), transparent 18%),
    linear-gradient(100deg, #ffe1ed 0%, #fff4f8 50%, #ffe7f0 100%);
}

.career-join-grid {
  display: grid;
  grid-template-columns: 0.75fr 0.58fr 1.22fr;
  gap: 46px;
  align-items: center;
}

.career-join-copy h2 {
  margin: 0;
  color: var(--pink);
  font-size: 27px;
  font-weight: 700;
}

.career-join-copy p {
  max-width: 340px;
  margin: 24px 0 0;
  color: #332b35;
  font-size: 16px;
  line-height: 1.55;
}

.career-envelope {
  position: relative;
  width: 214px;
  height: 154px;
  justify-self: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #f30058, #ff8bb4);
  box-shadow: 0 30px 70px rgba(243, 0, 88, 0.18);
  transform: rotate(-8deg);
}

.career-envelope::before,
.career-envelope::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 92px;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(145deg, #ff9fbe, #f30058);
  clip-path: polygon(0 0, 50% 72%, 100% 0, 100% 100%, 0 100%);
}

.career-envelope::after {
  inset: 0;
  height: auto;
  opacity: 0.9;
  clip-path: polygon(0 0, 50% 56%, 100% 0, 50% 44%);
}

.career-paper {
  position: absolute;
  left: 48px;
  top: -42px;
  z-index: 1;
  width: 118px;
  height: 110px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #ffffff;
  color: var(--pink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 29px;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(93, 0, 36, 0.12);
  transform: rotate(15deg);
}

.career-process .career-title {
  margin-bottom: 22px;
}

.career-process .career-title h2 {
  font-size: 27px;
}

.career-process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.career-process-list li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 9px;
  text-align: center;
}

.career-process-list li:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 25px;
  right: -18px;
  color: var(--pink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.career-process-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.72);
}

.career-process-icon svg {
  width: 29px;
  height: 29px;
}

.career-process-list b {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
}

.career-process-list strong {
  color: #19131b;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-card {
  justify-self: end;
  display: grid;
  gap: 12px;
  font-weight: 700;
}

.contact-card a {
  color: var(--pink);
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.contact-layout {
  grid-template-columns: 0.8fr 1.2fr;
}

.contact-info-panel {
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 217, 90, 0.24), transparent 30%),
    var(--pink);
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px;
}

.contact-info-panel img {
  width: 118px;
  height: 118px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
  margin-bottom: 24px;
}

.contact-info-panel h2,
.contact-info-panel p {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--pink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.social-links a[aria-label="Facebook"] svg,
.social-links a[aria-label="YouTube"] svg path:last-child {
  fill: currentColor;
  stroke: none;
}

.site-footer {
  background: #171018;
  color: var(--white);
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.footer-logo {
  width: 170px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  margin: 12px 0 0;
}

.site-footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--pink);
}

.footer-contact {
  display: grid;
  gap: 8px;
  justify-items: end;
}

body[data-page="home"] {
  background: #ffffff;
}

.home-page {
  background: #ffffff;
}

.home-hero-like {
  min-height: 468px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.05) 65%),
    url("../img/hero-waffle.png") center right / cover no-repeat;
}

.home-hero-like::before {
  width: 260px;
  height: 260px;
  content: "";
  position: absolute;
  left: -130px;
  bottom: -36px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 64% 42%, #f30058 0 18%, transparent 19%),
    radial-gradient(circle at 50% 50%, transparent 0 52%, rgba(243, 0, 88, 0.15) 53% 67%, transparent 68%);
  opacity: 0.55;
}

.home-hero-inner {
  min-height: 468px;
  display: flex;
  align-items: center;
}

.home-hero-copy {
  width: min(520px, 100%);
  margin-left: 76px;
  padding: 42px 0 54px;
}

.home-hero-copy h1 {
  color: var(--pink);
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 0.98;
  text-transform: none;
}

.home-hero-copy h1 span {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.78em;
  vertical-align: 0.08em;
}

.home-hero-copy p {
  max-width: 430px;
  margin: 24px 0 0;
  color: #211720;
  font-size: 16px;
  line-height: 1.55;
}

.hero-discover {
  min-height: 38px;
  margin-top: 20px;
  padding: 9px 22px;
  font-size: 12px;
  box-shadow: 0 12px 28px rgba(243, 0, 88, 0.22);
}

.hero-discover span {
  margin-right: 8px;
  font-size: 13px;
}

.slider-arrow {
  width: 46px;
  height: 46px;
  position: absolute;
  top: 50%;
  z-index: 2;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(243, 0, 88, 0.12);
  cursor: pointer;
}

.slider-arrow::before {
  width: 12px;
  height: 12px;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-top: 3px solid var(--pink);
  border-left: 3px solid var(--pink);
}

.slider-arrow-left {
  left: 46px;
}

.slider-arrow-left::before {
  transform: translate(-35%, -50%) rotate(-45deg);
}

.slider-arrow-right {
  right: 46px;
}

.slider-arrow-right::before {
  transform: translate(-65%, -50%) rotate(135deg);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  transform: translateX(-50%);
}

.hero-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffd3e3;
}

.hero-dots .is-active {
  background: var(--pink);
}

.home-benefits {
  min-height: 76px;
  border-bottom: 1px solid #ffe0eb;
  background: #ffffff;
}

.home-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 13px 0;
}

.home-benefit-grid article {
  min-height: 50px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 0 28px;
  border-right: 1px solid #ffe1eb;
}

.home-benefit-grid article:last-child {
  border-right: 0;
}

.home-benefit-grid h2,
.newsletter-card h2,
.follow-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.15;
  text-transform: none;
}

.home-benefit-grid p,
.newsletter-card p,
.follow-card p,
.service-highlights p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.24;
}

.home-icon,
.service-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #ffb6d0;
  border-radius: 50%;
  color: var(--pink);
  position: relative;
}

.leaf-icon::before {
  width: 17px;
  height: 20px;
  content: "";
  border-radius: 100% 0 100% 35%;
  background: currentColor;
  transform: rotate(42deg);
}

.heart-icon::before {
  content: "♥";
  font-size: 23px;
  line-height: 1;
}

.smile-icon::before {
  content: "☺";
  font-size: 24px;
  line-height: 1;
}

.cup-icon::before {
  width: 18px;
  height: 15px;
  content: "";
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.cup-icon::after {
  width: 7px;
  height: 8px;
  content: "";
  position: absolute;
  right: 9px;
  top: 17px;
  border: 2px solid currentColor;
  border-left: 0;
  border-radius: 0 9px 9px 0;
}

.home-section {
  padding: 32px 0;
}

.home-title {
  display: grid;
  justify-items: center;
  margin-bottom: 28px;
  text-align: center;
}

.home-title h2 {
  color: var(--pink);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.05;
  text-transform: uppercase;
}

.home-title span {
  margin-top: 6px;
  color: var(--pink);
  font-size: 20px;
  line-height: 1;
}

.home-category-slider {
  position: relative;
}

.home-category-viewport {
  overflow: hidden;
  padding: 4px 2px 16px;
}

.home-category-grid {
  display: flex;
  gap: 16px;
  transition: transform 480ms ease;
  will-change: transform;
}

.home-category-card {
  min-width: 0;
  flex: 0 0 calc((100% - 64px) / 5);
  overflow: hidden;
  border: 1px solid #ffd2e2;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(243, 0, 88, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-category-card:hover {
  transform: translateY(-5px);
  border-color: var(--pink);
  box-shadow: 0 22px 48px rgba(243, 0, 88, 0.14);
}

.category-photo {
  height: 190px;
  display: block;
  background-image: url("../img/menu-spread.png");
  background-size: 360% auto;
  background-position: var(--pos);
}

.category-meta {
  min-height: 74px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 8px;
  padding: 13px 15px 15px;
  color: #211720;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
}

.category-slider-arrow {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 43%;
  z-index: 3;
  border: 1px solid #ffd2e2;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(243, 0, 88, 0.13);
  cursor: pointer;
}

.category-slider-arrow::before {
  width: 11px;
  height: 11px;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-top: 3px solid var(--pink);
  border-left: 3px solid var(--pink);
}

.category-slider-prev {
  left: -22px;
}

.category-slider-prev::before {
  transform: translate(-35%, -50%) rotate(-45deg);
}

.category-slider-next {
  right: -22px;
}

.category-slider-next::before {
  transform: translate(-65%, -50%) rotate(135deg);
}

.category-meta i {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: var(--pink);
  position: relative;
}

.mini-waffle {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.mini-waffle::before,
.mini-waffle::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.mini-waffle::after {
  transform: rotate(90deg);
}

.mini-stack::before {
  width: 23px;
  height: 15px;
  content: "";
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 6px 0 -1px currentColor;
}

.mini-cloud::before {
  width: 25px;
  height: 15px;
  content: "";
  border: 2px solid currentColor;
  border-radius: 20px;
}

.mini-croissant::before {
  width: 24px;
  height: 17px;
  content: "";
  border: 3px solid currentColor;
  border-top-color: transparent;
  border-radius: 0 0 24px 24px;
}

.mini-icecream::before {
  width: 14px;
  height: 14px;
  content: "";
  border: 2px solid currentColor;
  border-radius: 50%;
}

.mini-icecream::after {
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: 2px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 14px solid currentColor;
}

.mini-drink::before,
.mini-cold::before {
  width: 14px;
  height: 21px;
  content: "";
  border: 2px solid currentColor;
  border-top-width: 3px;
  border-radius: 2px 2px 7px 7px;
}

.mini-hot::before {
  width: 19px;
  height: 14px;
  content: "";
  border: 2px solid currentColor;
  border-radius: 0 0 9px 9px;
}

.home-experience {
  height: 280px;
  display: grid;
  grid-template-columns: minmax(0, 1.46fr) minmax(360px, 1fr);
  margin-top: 2px;
  background: #fff5fa;
}

.home-experience-photo {
  min-height: 230px;
  overflow: hidden;
  position: relative;
}

.home-experience-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-experience-photo::after {
  content: "PINK\A WAFFLE";
  white-space: pre;
  position: absolute;
  left: 15%;
  top: 23%;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 700;
  line-height: 0.95;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.85), 0 8px 30px rgba(180, 0, 64, 0.32);
  letter-spacing: 0;
}

.home-experience-copy {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 34px 52px;
  background:
    radial-gradient(circle at 88% 72%, rgba(243, 0, 88, 0.12), transparent 34%),
    #ffffff;
}

.home-experience-copy h2 {
  max-width: 390px;
  color: var(--pink);
  font-size: clamp(34px, 4vw, 52px);
  text-transform: uppercase;
}

.home-experience-copy p {
  max-width: 430px;
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 16px;
}

.home-experience-copy .btn {
  width: fit-content;
  min-height: 40px;
  padding: 10px 22px;
  font-size: 12px;
}

.experience-dessert {
  display: none;
  width: 230px;
  height: 160px;
  position: absolute;
  right: 34px;
  bottom: 0;
  background-image: url("../img/menu-spread.png");
  background-size: 360% auto;
  background-position: 11% 57%;
  filter: drop-shadow(0 18px 20px rgba(90, 0, 30, 0.16));
  clip-path: inset(8% 4% 0 4% round 8px);
}

.home-favorites {
  padding-top: 28px;
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.home-product-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid #ffd3e2;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(243, 0, 88, 0.08);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(243, 0, 88, 0.14);
}

.home-product-shot {
  height: 185px;
  background-image: url("../img/menu-spread.png");
  background-size: 380% auto;
  background-position: var(--pos);
}

.home-product-card h3 {
  margin: 17px 12px 6px;
  color: #211720;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.2;
  text-transform: none;
}

.home-product-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--pink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  max-width: 112px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  padding: 8px 12px;
  text-transform: uppercase;
}

.favorite-button {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--pink);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.favorite-button.is-liked {
  background: var(--pink);
  color: var(--white);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.center-action .btn {
  min-height: 42px;
  min-width: 210px;
  padding-block: 10px;
  font-size: 12px;
}

.home-info-panel {
  padding: 18px 0 34px;
}

.home-info-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(360px, 1.35fr) minmax(240px, 0.75fr);
  overflow: hidden;
  border: 1px solid #ffc9dd;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(243, 0, 88, 0.08);
}

.newsletter-card,
.follow-card {
  padding: 30px 46px;
  background: linear-gradient(135deg, #fff1f7, #ffd8e7);
}

.newsletter-card h2,
.follow-card h2 {
  color: var(--pink);
  font-size: 22px;
  line-height: 1.08;
}

.newsletter-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 16px;
}

.newsletter-row input {
  min-width: 0;
  border: 1px solid #ffd2e2;
  border-radius: 999px;
  padding: 12px 16px;
  outline: none;
}

.newsletter-row .btn {
  min-height: 42px;
  padding: 10px 20px;
  font-size: 12px;
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  background: #ffffff;
}

.service-highlights article {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 26px 18px;
  text-align: center;
}

.service-highlights h3 {
  font-size: 14px;
  line-height: 1.2;
  text-transform: none;
}

.service-icon {
  width: 48px;
  height: 48px;
  border: 0;
}

.truck-icon::before {
  width: 28px;
  height: 18px;
  content: "";
  border: 3px solid currentColor;
  border-radius: 3px;
}

.truck-icon::after {
  width: 5px;
  height: 5px;
  content: "";
  position: absolute;
  left: 12px;
  bottom: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 20px 0 0 currentColor;
}

.secure-icon::before {
  width: 24px;
  height: 29px;
  content: "";
  border: 3px solid currentColor;
  border-radius: 14px 14px 16px 16px;
  clip-path: polygon(50% 0, 100% 18%, 88% 100%, 50% 84%, 12% 100%, 0 18%);
}

.fresh-icon::before {
  width: 27px;
  height: 20px;
  content: "";
  border: 3px solid currentColor;
  border-left-color: transparent;
  border-radius: 100% 0 100% 30%;
  transform: rotate(-34deg);
}

.pink-socials a {
  background: var(--pink);
  color: var(--white);
}

.home-footer {
  position: relative;
  background: #ffffff;
  color: #241821;
  border-top: 1px solid #ffe0eb;
  padding: 38px 0 30px;
}

.home-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.85fr 1.2fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.home-footer .footer-logo {
  width: 170px;
  filter: none;
}

.home-footer p,
.home-footer span,
.home-footer a {
  color: #746b76;
  font-size: 14px;
}

.home-footer nav,
.home-footer .footer-contact {
  display: grid;
  justify-items: start;
  gap: 7px;
}

.home-footer strong {
  color: #9b929d;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
  align-items: start;
  justify-content: flex-end;
}

.footer-social-icons a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #ffd3e2;
  border-radius: 50%;
  background: #ffffff;
  color: var(--pink);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-social-icons a:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-social-icons svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-social-icons a[aria-label="YouTube"] svg path:last-child {
  fill: currentColor;
  stroke: none;
}

.home-footer a:hover {
  color: var(--pink);
}

.home-footer .footer-social-icons a:hover {
  color: #ffffff;
}

@media (max-width: 1040px) {
  .header-inner {
    gap: 18px;
  }

  .brand-link img {
    width: 138px;
  }

  .primary-nav a {
    padding-inline: 10px;
  }

  .home-hero-copy {
    margin-left: 36px;
  }

  .home-benefit-grid,
  .home-category-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .home-category-card {
    flex-basis: calc((100% - 32px) / 3);
  }

  .category-photo {
    height: 176px;
  }

  .corporate-trust-grid,
  .corporate-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .corporate-about-grid {
    grid-template-columns: 1fr;
  }

  .home-benefit-grid article:nth-child(2) {
    border-right: 0;
  }

  .home-benefit-grid article:nth-child(n + 3) {
    border-top: 1px solid #ffe1eb;
    padding-top: 22px;
    margin-top: 22px;
  }

  .home-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-info-grid,
  .home-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-highlights {
    grid-column: 1 / -1;
    order: 3;
  }

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

  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-tiles {
    grid-template-columns: repeat(2, 1fr);
  }

  .franchise-landing-grid {
    grid-template-columns: 1fr;
  }

  .franchise-copy h1 {
    font-size: 58px;
  }

  .franchise-copy h1 > span,
  .franchise-copy h1 strong {
    white-space: normal;
  }

  .franchise-showcase {
    min-height: 470px;
  }

  .franchise-win-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .franchise-win-grid h2 {
    grid-column: 1 / -1;
  }

  .franchise-concept-panel,
  .franchise-training-grid,
  .franchise-process-band,
  .franchise-info-grid {
    grid-template-columns: 1fr;
  }

  .franchise-training-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .franchise-training-list article:nth-child(3) {
    border-right: 0;
  }

  .franchise-support-card img {
    margin-top: 0;
  }

  .franchise-process-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .franchise-process-list::before {
    display: none;
  }

  .corporate-page .container {
    width: min(100% - 44px, 1280px);
  }

  .corporate-story-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .corporate-story-copy {
    padding: 0 8px 8px;
  }

  .corporate-mission-grid,
  .corporate-sustain-card {
    grid-template-columns: 1fr;
  }

  .corporate-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .corporate-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .corporate-sustain-card div {
    padding: 34px 42px 10px;
  }

  .career-hero {
    background-position: 58% center;
  }

  .career-hero-copy {
    width: min(460px, 100%);
  }

  .career-hero-copy h1 {
    font-size: 48px;
  }

  .career-benefit-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .career-benefit-grid article {
    border: 1px solid #ffe0eb;
    border-radius: 12px;
    padding: 22px 18px;
  }

  .career-join-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .career-join-copy p {
    margin-inline: auto;
  }

  .career-process {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    background: var(--pink);
    border-bottom: 0;
  }

  .header-inner {
    width: calc(100% - 24px);
    min-height: 70px;
    display: grid;
    grid-template-columns: 54px 1fr 54px;
    gap: 12px;
  }

  .hamburger {
    display: flex;
    grid-column: 1;
    justify-self: start;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
  }

  .brand-link {
    grid-column: 2;
    justify-self: center;
  }

  .brand-link img {
    width: 152px;
    filter: brightness(0) invert(1);
  }

  .primary-nav {
    position: fixed;
    inset: 70px auto 0 0;
    width: min(82vw, 320px);
    max-width: calc(100vw - 56px);
    height: calc(100dvh - 70px);
    display: grid;
    align-content: start;
    gap: 6px;
    padding: 18px 14px;
    overflow-y: auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 0;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    box-shadow: 0 28px 80px rgba(95, 0, 36, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-104%);
    transition: opacity 180ms ease, transform 220ms ease;
  }

  body.menu-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .primary-nav a {
    border-radius: var(--radius);
    padding: 13px 14px;
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav a:hover,
  .primary-nav a.is-active {
    background: var(--pink);
    color: var(--white);
  }

  .home-hero-like {
    min-height: 710px;
    align-items: flex-start;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.36) 100%),
      url("../img/hero-waffle.png") 64% center / cover no-repeat;
  }

  .home-hero-inner {
    min-height: 710px;
  }

  .home-experience {
    height: auto;
  }

  .home-hero-copy {
    margin-left: 0;
    padding: 48px 0 82px;
  }

  .home-hero-copy h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .slider-arrow {
    display: none;
  }

  .home-benefit-grid,
  .home-category-grid,
  .home-experience,
  .home-info-grid,
  .home-footer-grid,
  .corporate-trust-grid,
  .corporate-feature-grid {
    grid-template-columns: 1fr;
  }

  .home-category-card {
    flex-basis: calc((100% - 14px) / 2);
  }

  .category-photo {
    height: 154px;
  }

  .category-slider-arrow {
    display: none;
  }

  .corporate-trust-grid article {
    min-height: 96px;
  }

  .corporate-about-copy {
    border-left: 0;
    border-top: 4px solid var(--pink);
    padding-left: 0;
    padding-top: 24px;
  }

  .home-benefit-grid article {
    border-right: 0;
    border-top: 1px solid #ffe1eb;
    padding: 18px 0;
    margin: 0;
  }

  .home-benefit-grid article:first-child {
    border-top: 0;
  }

  .home-experience-copy {
    min-height: 260px;
    padding: 34px 24px;
  }

  .experience-dessert {
    right: 16px;
  }

  .service-highlights {
    grid-template-columns: 1fr;
    order: initial;
  }

  .newsletter-card,
  .follow-card {
    padding: 26px 24px;
  }

  .footer-social-icons {
    justify-content: flex-start;
  }

  .home-footer nav {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 620px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.42) 100%),
      radial-gradient(circle at 20% 20%, rgba(243, 0, 88, 0.12), transparent 38%);
  }

  .hero-copy {
    padding-top: 46px;
  }

  h1 {
    font-size: clamp(38px, 13vw, 64px);
  }

  .hero-copy p,
  .page-hero p,
  .menu-hero p,
  .section-heading p {
    font-size: 17px;
  }

  .trust-grid,
  .page-hero-grid,
  .menu-hero-grid,
  .split-band,
  .story-grid,
  .visual-grid,
  .values-grid,
  .application-grid,
  .contact-layout,
  .branch-layout,
  .product-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    gap: 10px;
  }

  .split-band {
    gap: 28px;
  }

  .identity-card,
  .branch-search,
  .contact-card {
    justify-self: stretch;
  }

  .page-hero,
  .menu-hero,
  .section {
    padding: 62px 0;
  }

  .menu-filter {
    display: flex;
    overflow-x: auto;
  }

  .menu-sidebar {
    position: static;
  }

  .menu-filter-panel {
    position: sticky;
    top: 82px;
    z-index: 20;
    padding: 14px;
    border-radius: var(--radius);
    backdrop-filter: blur(16px);
  }

  .menu-filter-panel h2 {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
    border-radius: 999px;
    text-align: center;
  }

  .menu-note {
    position: static;
  }

  .map-panel {
    min-height: 360px;
  }

  .footer-contact,
  .footer-grid {
    justify-items: start;
  }

  .franchise-landing {
    padding: 52px 0 46px;
  }

  .franchise-page .container {
    width: min(100% - 28px, var(--container));
  }

  .franchise-copy h1 {
    font-size: 48px;
  }

  .franchise-proof-grid {
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid #ffd3e2;
    border-radius: 14px;
    overflow: hidden;
  }

  .franchise-proof-grid article {
    padding: 16px 12px;
    border-right: 1px solid #ffd3e2;
    border-bottom: 1px solid #ffd3e2;
  }

  .franchise-proof-grid article:nth-child(2n) {
    border-right: 0;
  }

  .franchise-proof-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .franchise-showcase {
    min-height: 420px;
  }

  .franchise-store-card {
    inset: 0;
  }

  .franchise-sign {
    top: 18px;
    right: 18px;
    min-height: 48px;
    font-size: 20px;
  }

  .franchise-product-card {
    width: 72%;
  }

  .franchise-product-card img {
    height: 190px;
  }

  .franchise-partner-card {
    right: 14px;
    bottom: 40px;
  }

  .franchise-win-grid,
  .franchise-training-list,
  .franchise-process-list {
    grid-template-columns: 1fr 1fr;
  }

  .franchise-concept-panel {
    padding: 22px;
  }

  .franchise-training-list article,
  .franchise-training-list article:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid #ffdce8;
    padding-bottom: 16px;
  }

  .franchise-training-list article:last-child {
    border-bottom: 0;
  }

  .franchise-process-band {
    padding: 28px 22px;
  }

  .franchise-candidate-card {
    grid-template-columns: 1fr;
  }

  .franchise-mini-store {
    max-width: 280px;
  }

  .franchise-form-heading h2 {
    font-size: 48px;
  }

  .corporate-page {
    padding-top: 18px;
  }

  .corporate-page .container {
    width: min(100% - 28px, 1280px);
  }

  .corporate-story-card {
    padding: 16px;
    border-radius: 12px;
  }

  .corporate-story-image,
  .corporate-story-image img {
    min-height: 260px;
  }

  .corporate-story-image span {
    top: 56px;
    left: 36px;
    font-size: 34px;
  }

  .corporate-story-copy h1 {
    font-size: 29px;
  }

  .corporate-mission-grid article {
    grid-template-columns: 76px 1fr;
    padding: 22px;
  }

  .corporate-icon {
    width: 62px;
    height: 62px;
  }

  .corporate-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .corporate-why-grid {
    gap: 18px;
  }

  .corporate-section-title h2 {
    font-size: 27px;
  }

  .corporate-sustain-card h2 {
    font-size: 29px;
  }

  .career-hero {
    min-height: auto;
    align-items: stretch;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.7) 42%, #ffffff 66%),
      url("../img/career-hero-team.png") center top / auto 330px no-repeat,
      #fff4f8;
  }

  .career-hero-inner {
    min-height: 0;
    padding-top: 265px;
  }

  .career-hero-copy {
    width: 100%;
    padding: 30px 0 42px;
  }

  .career-hero-copy h1 {
    font-size: 40px;
  }

  .career-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .career-join-section {
    padding: 42px 0 46px;
  }

  .career-envelope {
    margin: 16px 0 8px;
    transform: rotate(-6deg) scale(0.9);
  }

  .career-process-list {
    grid-template-columns: repeat(5, minmax(86px, 1fr));
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .career-process-list li:not(:last-child)::after {
    right: -13px;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .cta-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-grid,
  .favorite-grid,
  .product-grid,
  .category-tiles,
  .support-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .favorite-card {
    min-height: 220px;
  }

  .home-product-grid {
    grid-template-columns: 1fr;
  }

  .home-category-grid {
    gap: 12px;
  }

  .category-photo {
    height: 142px;
    background-size: 340% auto;
  }

  .newsletter-row {
    grid-template-columns: 1fr;
  }

  .newsletter-row .btn {
    width: 100%;
  }

  .product-shot {
    height: 214px;
    background-size: 330% auto;
  }

  .brand-link img {
    width: 138px;
  }

  .franchise-copy h1 {
    font-size: 38px;
  }

  .franchise-copy p {
    font-size: 16px;
  }

  .franchise-actions {
    align-items: stretch;
    gap: 12px;
    flex-direction: column;
  }

  .franchise-text-link {
    text-align: center;
  }

  .franchise-showcase {
    min-height: 360px;
  }

  .franchise-sign {
    left: 16px;
    right: 16px;
    justify-content: center;
    font-size: 18px;
  }

  .franchise-product-card {
    width: calc(100% - 28px);
  }

  .franchise-partner-card {
    display: none;
  }

  .franchise-win-grid,
  .franchise-training-list,
  .franchise-process-list {
    grid-template-columns: 1fr;
  }

  .franchise-concept-copy h2,
  .franchise-info-grid h2 {
    font-size: 27px;
  }

  .franchise-candidate-card,
  .franchise-faq-card,
  .franchise-application .pink-form {
    padding: 24px 20px;
  }

  .franchise-application {
    padding: 72px 0;
  }

  .franchise-form-heading h2 {
    font-size: 40px;
  }

  .corporate-story-card {
    padding: 12px;
  }

  .corporate-story-image,
  .corporate-story-image img {
    min-height: 210px;
  }

  .corporate-story-image span {
    top: 38px;
    left: 24px;
    font-size: 26px;
  }

  .corporate-kicker {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .corporate-story-copy h1 {
    font-size: 24px;
  }

  .corporate-story-copy p,
  .corporate-sustain-card p {
    font-size: 14px;
  }

  .corporate-mission-grid article,
  .corporate-values-grid,
  .corporate-why-grid {
    grid-template-columns: 1fr;
  }

  .corporate-mission-grid article {
    justify-items: center;
    text-align: center;
  }

  .corporate-values-grid article {
    min-height: 150px;
  }

  .corporate-why-grid article {
    min-height: 238px;
  }

  .corporate-sustain-card div {
    padding: 28px 22px 6px;
  }

  .corporate-sustain-card img {
    height: 180px;
  }

  .career-hero {
    background-size: auto 270px;
  }

  .career-hero-inner {
    padding-top: 218px;
  }

  .career-hero-copy h1 {
    font-size: 33px;
  }

  .career-hero-copy p {
    font-size: 15px;
  }

  .career-title h2 {
    font-size: 27px;
  }

  .career-benefit-grid {
    grid-template-columns: 1fr;
  }

  .career-benefit-grid article {
    min-height: 0;
  }

  .career-envelope {
    transform: rotate(-6deg) scale(0.78);
  }

  .career-process-list {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .career-process-list li:not(:last-child)::after {
    content: "";
    top: auto;
    right: auto;
    bottom: -18px;
    width: 1px;
    height: 18px;
    background: var(--pink);
  }
}

/* Home redesign from anax reference */
.home-redesign {
  background: #ffffff;
  overflow: hidden;
}

.home-modern-hero {
  min-height: 492px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
}

.home-modern-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 27%, rgba(255, 255, 255, 0.62) 48%, rgba(255, 255, 255, 0) 70%),
    radial-gradient(circle at 8% 48%, rgba(243, 0, 88, 0.08), transparent 25%);
  pointer-events: none;
}

.home-modern-hero::after {
  content: "♥";
  position: absolute;
  left: 41px;
  top: 196px;
  z-index: 2;
  color: rgba(243, 0, 88, 0.13);
  font-size: 20px;
  transform: rotate(-22deg);
}

.home-modern-hero-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 74%;
  background: url("../img/home-anax-hero-scene.jpg") center center / cover no-repeat;
}

.home-modern-hero-content {
  min-height: 492px;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
}

.home-modern-copy {
  width: min(540px, 100%);
  padding: 58px 0 54px 58px;
}

.home-modern-copy h1 {
  margin: 0;
  color: var(--pink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(40px, 4.3vw, 54px);
  font-weight: 700;
  line-height: 1.04;
  text-transform: none;
}

.home-modern-copy h1 span {
  display: inline-block;
  font-size: 0.74em;
  vertical-align: 0.05em;
}

.home-modern-copy p {
  width: min(365px, 100%);
  margin: 26px 0 0;
  color: #231923;
  font-size: 16px;
  line-height: 1.72;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.home-hero-actions .btn {
  min-height: 42px;
  min-width: 146px;
  padding: 10px 22px;
  font-size: 12px;
  text-transform: uppercase;
}

.btn-outline {
  border: 1px solid var(--pink);
  background: rgba(255, 255, 255, 0.72);
  color: var(--pink);
  box-shadow: none;
}

.home-carousel-arrow {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--pink);
  box-shadow: 0 12px 34px rgba(243, 0, 88, 0.12);
  cursor: pointer;
  transform: translateY(-50%);
}

.home-carousel-prev {
  left: 24px;
}

.home-carousel-next {
  right: 24px;
}

.home-carousel-arrow svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-brand-strip {
  border-bottom: 1px solid #ffe2ec;
  background: #ffffff;
}

.home-brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  min-height: 126px;
}

.home-brand-grid article {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  min-width: 0;
  padding: 12px 10px;
  text-align: center;
  border-right: 1px solid #ffe2ec;
}

.home-brand-grid article:last-child {
  border-right: 0;
}

.home-brand-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid #ffaccb;
  border-radius: 50%;
  color: var(--pink);
  background: #fff8fb;
}

.home-brand-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-brand-grid h2 {
  margin: 0;
  color: #1f1720;
  font-size: 12px;
  line-height: 1.15;
}

.home-brand-grid p {
  max-width: 126px;
  margin: 0;
  color: #4d4651;
  font-size: 10px;
  line-height: 1.34;
}

.home-flavor-section {
  padding: 22px 0 18px;
  background: #ffffff;
}

.home-modern-title {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin-bottom: 34px;
  text-align: center;
}

.home-modern-title h2 {
  margin: 0;
  color: var(--pink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(32px, 3.3vw, 44px);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
}

.home-modern-title span {
  display: block;
  color: var(--pink);
  font-size: 18px;
  line-height: 1;
}

.home-modern-title span::before,
.home-modern-title span::after {
  display: none;
}

.home-modern-slider {
  position: relative;
}

.home-flavor-viewport {
  overflow: hidden;
  padding: 0 0 14px;
}

.home-flavor-grid {
  gap: 16px;
}

.home-redesign .home-flavor-card {
  flex: 0 0 calc((100% - 64px) / 5);
  overflow: hidden;
  border: 1px solid #ffcde0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(243, 0, 88, 0.045);
}

.home-redesign .home-flavor-card:hover {
  transform: translateY(-5px);
  border-color: #ff9ec0;
  box-shadow: 0 22px 48px rgba(243, 0, 88, 0.13);
}

.home-flavor-card img {
  width: 100%;
  height: 192px;
  object-fit: cover;
  object-position: center;
}

.home-flavor-body {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  background: #ffffff;
}

.home-flavor-body strong {
  color: #261f27;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
}

.home-flavor-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-grid;
  place-items: center;
  color: var(--pink);
}

.home-flavor-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-modern-slider .category-slider-arrow {
  top: 57%;
  width: 42px;
  height: 42px;
  border: 1px solid #ffe0eb;
  box-shadow: 0 12px 30px rgba(243, 0, 88, 0.12);
}

.home-modern-slider .category-slider-arrow::before {
  width: 11px;
  height: 11px;
  border-top-width: 3px;
  border-left-width: 3px;
}

.home-modern-slider .category-slider-prev {
  left: -24px;
}

.home-modern-slider .category-slider-next {
  right: -24px;
}

.home-nearby-section {
  padding: 4px 0 26px;
  background: #fffafd;
}

.home-nearby-banner {
  min-height: 214px;
  position: relative;
  overflow: hidden;
  border: 1px solid #ffcadd;
  border-radius: 8px;
  background: #fff0f6;
  box-shadow: 0 16px 40px rgba(243, 0, 88, 0.09);
}

.home-nearby-banner::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 73%;
  background: url("../img/home-anax-branches.jpg") center center / cover no-repeat;
}

.home-nearby-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ffe3ee 0%, rgba(255, 235, 244, 0.96) 27%, rgba(255, 235, 244, 0.5) 48%, rgba(255, 235, 244, 0) 72%);
}

.home-nearby-copy {
  width: min(390px, 100%);
  position: relative;
  z-index: 2;
  padding: 34px 0 32px 34px;
}

.home-nearby-copy h2 {
  margin: 0;
  color: var(--pink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.08;
}

.home-nearby-copy p {
  max-width: 330px;
  margin: 15px 0 20px;
  color: #2a202b;
  font-size: 15px;
  line-height: 1.55;
}

.home-nearby-copy .btn {
  min-height: 40px;
  padding: 9px 21px;
  font-size: 12px;
  text-transform: uppercase;
}

.home-nearby-copy .btn svg {
  width: 16px;
  height: 16px;
  margin-right: 7px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.home-promo-section {
  padding: 0 0 34px;
  background: #ffffff;
}

.home-promo-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-promo-card-modern {
  min-height: 138px;
  display: grid;
  grid-template-columns: 44% 1fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #ffd7e5;
  border-radius: 8px;
  background: #fff5fa;
  box-shadow: 0 10px 26px rgba(243, 0, 88, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-promo-card-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(243, 0, 88, 0.13);
}

.home-promo-photo {
  min-height: 138px;
  background: center / cover no-repeat;
}

.home-promo-experience .home-promo-photo {
  background-image: url("../img/home-cafe-interior.png");
}

.home-promo-franchise {
  grid-template-columns: 1fr 43%;
}

.home-promo-franchise .home-promo-photo {
  min-height: 158px;
  background-image: url("../img/home-franchise-card-v2.png");
  background-position: center center;
}

.home-promo-copy {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px 24px;
}

.home-promo-copy strong {
  color: var(--pink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.home-promo-copy small {
  color: #3a303b;
  font-size: 12px;
  line-height: 1.38;
}

.home-promo-copy em {
  width: max-content;
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--pink);
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .home-modern-slider .category-slider-prev {
    left: -12px;
  }

  .home-modern-slider .category-slider-next {
    right: -12px;
  }
}

@media (max-width: 1040px) {
  .home-modern-hero,
  .home-modern-hero-content {
    min-height: 390px;
  }

  .home-modern-copy {
    padding-left: 58px;
  }
}

@media (max-width: 760px) {
  .home-modern-hero {
    min-height: 650px;
    align-items: end;
  }

  .home-modern-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.2) 28%, rgba(255, 255, 255, 0.96) 58%, #ffffff 100%),
      radial-gradient(circle at 12% 56%, rgba(243, 0, 88, 0.08), transparent 25%);
  }

  .home-modern-hero-image {
    left: 0;
    right: 0;
    width: 100%;
    height: 58%;
    bottom: auto;
    background-position: center top;
  }

  .home-modern-hero-content {
    min-height: 650px;
    align-items: end;
  }

  .home-modern-copy {
    width: 100%;
    padding: 300px 0 42px;
  }

  .home-modern-copy h1 {
    font-size: 37px;
  }

  .home-modern-copy p {
    font-size: 15px;
    line-height: 1.55;
  }

  .home-carousel-arrow {
    top: 29%;
  }

  .home-carousel-prev {
    left: 12px;
  }

  .home-carousel-next {
    right: 12px;
  }

  .home-brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-brand-grid article,
  .home-brand-grid article:nth-child(3n) {
    border-right: 1px solid #ffe2ec;
  }

  .home-brand-grid article:nth-child(2n) {
    border-right: 0;
  }

  .home-brand-grid article:nth-child(n + 3) {
    border-top: 1px solid #ffe2ec;
  }

  .home-redesign .home-flavor-card {
    flex-basis: calc((100% - 14px) / 2);
  }

  .home-flavor-grid {
    gap: 14px;
  }

  .home-flavor-card img {
    height: 132px;
  }

  .home-modern-slider .category-slider-arrow {
    top: 48%;
  }

  .home-nearby-banner {
    min-height: 420px;
  }

  .home-nearby-banner::before {
    width: 100%;
    height: 48%;
    top: auto;
    background-position: center;
  }

  .home-nearby-banner::after {
    background: linear-gradient(180deg, #ffe3ee 0%, rgba(255, 235, 244, 0.96) 48%, rgba(255, 235, 244, 0.16) 70%);
  }

  .home-nearby-copy {
    width: 100%;
    padding: 28px 24px 210px;
  }

  .home-promo-grid-modern {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .home-modern-hero,
  .home-modern-hero-content {
    min-height: 620px;
  }

  .home-modern-copy {
    padding-top: 292px;
  }

  .home-hero-actions {
    gap: 10px;
    flex-wrap: wrap;
  }

  .home-hero-actions .btn {
    min-width: 132px;
    padding-inline: 18px;
  }

  .home-brand-icon {
    width: 54px;
    height: 54px;
  }

  .home-brand-grid article {
    padding-inline: 14px;
  }

  .home-flavor-section {
    padding-top: 24px;
  }

  .home-flavor-body {
    padding: 14px;
  }

  .home-flavor-body strong {
    font-size: 15px;
  }

  .home-flavor-body small {
    font-size: 11px;
  }

  .home-promo-card-modern,
  .home-promo-franchise {
    grid-template-columns: 1fr;
  }

  .home-promo-franchise .home-promo-photo {
    order: -1;
  }
}

/* Products page redesign */
body[data-page="menu"] {
  background: #ffffff;
}

.products-page {
  background: #ffffff;
}

.products-hero {
  min-height: 318px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: #ffe4ee;
}

.products-hero-bg {
  position: absolute;
  inset: 0 0 0 auto;
  width: 70%;
  background: url("../img/products-hero-scene.jpg") center right / cover no-repeat;
}

.products-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 236, 244, 0.98) 0%, rgba(255, 237, 245, 0.95) 34%, rgba(255, 237, 245, 0.42) 54%, rgba(255, 237, 245, 0) 76%),
    radial-gradient(circle at 18% 17%, rgba(255, 255, 255, 0.9), transparent 20%);
}

.products-hero::after {
  content: "♥";
  position: absolute;
  left: 265px;
  top: 58px;
  z-index: 2;
  color: rgba(243, 0, 88, 0.45);
  font-size: 34px;
  transform: rotate(-20deg);
}

.products-hero-inner {
  position: relative;
  z-index: 2;
}

.products-hero-copy {
  width: min(650px, 100%);
  padding: 42px 0 44px;
}

.products-hero-badge {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--pink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.products-hero-badge span {
  font-size: 14px;
}

.products-hero h1 {
  margin: 20px 0 0;
  color: #371c2c;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.03;
  text-transform: none;
}

.products-hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08em;
  font-style: italic;
  font-weight: 400;
  line-height: 0.86;
}

.products-hero h1 em::after {
  content: "";
  position: absolute;
  left: 0.08em;
  right: 0.04em;
  bottom: -0.02em;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-2deg);
}

.products-hero p {
  width: min(390px, 100%);
  margin: 28px 0 0;
  color: #342a35;
  font-size: 14px;
  line-height: 1.6;
}

.products-category-section {
  padding: 28px 0 40px;
  background: #ffffff;
}

.products-section-title {
  display: grid;
  justify-items: center;
  margin-bottom: 24px;
  text-align: center;
}

.products-section-title > span {
  color: var(--pink);
  font-size: 24px;
  line-height: 1;
}

.products-section-title h2 {
  margin: 10px 0 0;
  color: var(--pink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.08;
}

.products-section-title p {
  margin: 10px 0 0;
  color: #8a7d88;
  font-size: 13px;
  line-height: 1.45;
}

.products-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 22px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.products-category-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid #ffd1e3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(243, 0, 88, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.products-category-card:hover {
  transform: translateY(-4px);
  border-color: #ff9ec0;
  box-shadow: 0 22px 48px rgba(243, 0, 88, 0.13);
}

.products-category-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
}

.products-card-icon {
  display: none;
}

.products-category-card strong {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  color: #1f1720;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.products-branch-section {
  padding: 0 0 34px;
  background: #ffffff;
}

.products-branch-banner {
  min-height: 174px;
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(280px, 1fr) minmax(230px, 0.9fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid #ffcfe1;
  border-radius: 8px;
  background: linear-gradient(90deg, #ffe8f1 0%, #fff1f7 48%, #ffe4ee 100%);
  box-shadow: 0 18px 44px rgba(243, 0, 88, 0.09);
}

.products-branch-media {
  align-self: stretch;
  min-height: 174px;
  background: url("../img/products-branch-store.jpg") center / cover no-repeat;
}

.products-branch-copy {
  padding: 26px 28px;
}

.products-branch-copy h2 {
  margin: 0;
  color: var(--pink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.08;
}

.products-branch-copy p {
  max-width: 390px;
  margin: 11px 0 18px;
  color: #554a56;
  font-size: 13px;
  line-height: 1.45;
}

.products-branch-copy .btn {
  min-height: 40px;
  padding: 9px 20px;
  font-size: 12px;
}

.products-branch-copy .btn svg {
  width: 16px;
  height: 16px;
  margin-right: 7px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.products-branch-map {
  min-height: 174px;
  position: relative;
  align-self: stretch;
  background:
    linear-gradient(90deg, rgba(255, 242, 247, 0.15), rgba(255, 242, 247, 0.88)),
    radial-gradient(circle at 28% 58%, rgba(243, 0, 88, 0.08), transparent 24%);
}

.products-branch-map::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 72px;
  width: 98px;
  height: 44px;
  border-top: 2px dashed rgba(243, 0, 88, 0.34);
  border-radius: 50%;
  transform: rotate(18deg);
}

.products-branch-map span {
  width: 78px;
  height: 78px;
  position: absolute;
  right: 58px;
  top: 45px;
  border-radius: 50% 50% 50% 0;
  background: var(--pink);
  box-shadow: 0 22px 40px rgba(243, 0, 88, 0.23);
  transform: rotate(-45deg);
}

.products-branch-map span::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  left: 24px;
  top: 24px;
  border-radius: 50%;
  background: #ffffff;
}

@media (max-width: 980px) {
  .products-hero-bg {
    width: 76%;
  }

  .products-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .products-branch-banner {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .products-branch-map {
    display: none;
  }
}

@media (max-width: 760px) {
  .products-hero {
    min-height: 520px;
    align-items: end;
  }

  .products-hero-bg {
    inset: 0 0 auto;
    width: 100%;
    height: 260px;
    background-position: center top;
  }

  .products-hero::before {
    background: linear-gradient(180deg, rgba(255, 237, 245, 0.08) 0%, rgba(255, 237, 245, 0.3) 34%, #ffeef5 54%, #ffffff 100%);
  }

  .products-hero::after {
    left: auto;
    right: 34px;
    top: 278px;
    font-size: 26px;
  }

  .products-hero-copy {
    padding: 280px 0 34px;
  }

  .products-hero h1 {
    font-size: 38px;
  }

  .products-category-section {
    padding-top: 22px;
  }

  .products-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .products-category-card img {
    height: 126px;
  }

  .products-category-card strong {
    min-height: 48px;
    font-size: 14px;
  }

  .products-branch-banner {
    grid-template-columns: 1fr;
  }

  .products-branch-media {
    min-height: 175px;
  }

  .products-branch-copy {
    padding: 24px;
  }
}

@media (max-width: 460px) {
  .products-hero h1 {
    font-size: 34px;
  }

  .products-hero p {
    font-size: 13px;
  }

  .products-category-card img {
    height: 112px;
  }
}
