/* =========================================================
   MUNCHIES WITH MADI
   Muted Pink + Dusty Blue Glassmorphism Theme Yes
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}



:root {
  /* Cream / champagne */
  --cream: #fffaf8;
  --warm-cream: #f7eeea;
  --champagne: #eadbd4;

  /* Muted pink family */
  --blush: #efd5d8;
  --soft-pink: #e6bdc4;
  --dusty-pink: #cf9ca8;
  --rose: #b87e8c;
  --deep-rose: #956372;

  /* Muted blue family */
  --mist-blue: #d9e1e8;
  --powder-blue: #bdcbd8;
  --dusty-blue: #9bafc0;
  --slate-blue: #7f94a7;
  --deep-blue: #677b8d;

  /* Neutrals */
  --taupe: #98827f;
  --cocoa: #6e5b59;
  --dark-cocoa: #4c3f3e;

  /* Glass */
  --glass-white: rgba(255, 253, 252, 0.62);
  --glass-edge: rgba(255, 255, 255, 0.74);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;

  font-family: "DM Sans", sans-serif;
  color: var(--dark-cocoa);

  background:
    radial-gradient(
      circle at 5% 7%,
      rgba(239, 213, 216, 0.95),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(189, 203, 216, 0.72),
      transparent 34%
    ),
    radial-gradient(
      circle at 83% 52%,
      rgba(207, 156, 168, 0.52),
      transparent 33%
    ),
    radial-gradient(
      circle at 18% 67%,
      rgba(217, 225, 232, 0.76),
      transparent 34%
    ),
    radial-gradient(
      circle at 52% 94%,
      rgba(230, 189, 196, 0.60),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      #fff9f7 0%,
      #f7e6e6 24%,
      #eadfe4 43%,
      #dce4eb 61%,
      #f0dfe3 79%,
      #fff8f5 100%
    );

  background-attachment: fixed;
}

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

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

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

/* =========================================================
   AMBIENT BACKGROUND
   ========================================================= */

.ambient {
  position: fixed;
  z-index: -1;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(120px);
}

.ambient-one {
  width: 620px;
  height: 620px;

  top: -240px;
  left: -210px;

  opacity: 0.58;

  background:
    linear-gradient(
      135deg,
      #f0d3d7,
      #cf98a5
    );
}

.ambient-two {
  width: 700px;
  height: 700px;

  top: 160px;
  right: -300px;

  opacity: 0.47;

  background:
    linear-gradient(
      135deg,
      #d6e0e8,
      #95aabd
    );
}

.ambient-three {
  width: 590px;
  height: 590px;

  bottom: -300px;
  left: 28%;

  opacity: 0.45;

  background:
    linear-gradient(
      135deg,
      #e5bac3,
      #b9c8d5
    );
}

.ambient-four {
  width: 370px;
  height: 370px;

  top: 48%;
  left: 12%;

  opacity: 0.22;

  background: #bd8995;
}

/* =========================================================
   GLASS SYSTEM
   ========================================================= */

.glass {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.72),
      rgba(250, 240, 242, 0.38) 48%,
      rgba(237, 243, 248, 0.31)
    );

  border: 1px solid var(--glass-edge);

  backdrop-filter: blur(30px) saturate(145%);
  -webkit-backdrop-filter: blur(30px) saturate(145%);

  box-shadow:
    0 24px 70px rgba(86, 61, 68, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.93),
    inset 0 -1px 0 rgba(255, 255, 255, 0.25);
}

.glass-pill {
  display: inline-flex;
  align-items: center;

  padding: 9px 16px;

  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.66),
      rgba(245, 229, 233, 0.39),
      rgba(227, 237, 244, 0.36)
    );

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.90),
    0 10px 30px rgba(89, 65, 70, 0.06);
}

/* =========================================================
   NAV
   ========================================================= */

.site-header {
  position: fixed;
  z-index: 1000;

  top: 0;
  left: 0;

  width: 100%;

  padding: 18px 5%;
}

.navbar {
  width: 100%;
  max-width: 1260px;
  min-height: 72px;

  margin: 0 auto;
  padding: 10px 14px 10px 25px;

  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  white-space: nowrap;
}

.brand-main {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.6px;
}

.brand-script {
  font-family: "Pacifico", cursive;
  font-size: 19px;
  font-weight: 400;

  background:
    linear-gradient(
      90deg,
      var(--rose),
      var(--slate-blue)
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;

  gap: 34px;
}

.nav-links a {
  position: relative;

  font-size: 14px;
  font-weight: 600;

  color: var(--cocoa);

  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--deep-rose);
}

.nav-links a::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -7px;

  width: 0;
  height: 2px;

  border-radius: 999px;

  transform: translateX(-50%);

  background:
    linear-gradient(
      90deg,
      var(--dusty-pink),
      var(--dusty-blue)
    );

  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta,
.primary-button {
  color: white;

  background:
    linear-gradient(
      125deg,
      #d4a0aa 0%,
      #bf8794 37%,
      #a58da6 64%,
      #8098ad 100%
    );

  box-shadow:
    0 13px 32px rgba(122, 80, 92, 0.24);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.nav-cta {
  min-height: 45px;

  padding: 0 21px;

  border-radius: 15px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 700;
}

.nav-cta:hover,
.primary-button:hover {
  transform: translateY(-3px);

  filter: brightness(1.035);

  box-shadow:
    0 19px 42px rgba(118, 76, 89, 0.30);
}

/* =========================================================
   SHARED LAYOUT
   ========================================================= */

.section {
  width: 90%;
  max-width: 1260px;

  margin: 0 auto;
  padding: 105px 0;
}

.section-kicker,
.card-kicker,
.small-label {
  color: var(--rose);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.4px;
}

.section-kicker {
  margin-bottom: 12px;
}

.section-kicker.light {
  color: rgba(255, 255, 255, 0.74);
}

.section-heading {
  max-width: 680px;

  margin: 0 auto 60px;

  text-align: center;
}

.section-heading h2 {
  margin-bottom: 16px;

  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -2.3px;
}

.section-heading h2 span {
  background:
    linear-gradient(
      90deg,
      var(--rose),
      var(--slate-blue)
    );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-heading > p:not(.section-kicker) {
  color: var(--cocoa);

  font-size: 15px;
  line-height: 1.75;
}

.button {
  min-height: 54px;

  padding: 0 26px;

  border-radius: 17px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 700;
}

.secondary-button {
  color: var(--dark-cocoa);

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.secondary-button:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.76);
}

/* =========================================================
   HOME HERO
   ========================================================= */

.hero {
  min-height: 100vh;

  padding-top: 145px;

  display: flex;
  align-items: center;
}

.hero-grid {
  width: 100%;

  display: grid;
  grid-template-columns: 1.08fr 0.92fr;

  gap: 64px;

  align-items: center;
}

.eyebrow {
  margin-bottom: 24px;

  font-size: 13px;
  font-weight: 600;

  color: var(--cocoa);
}

.hero-copy h1 {
  max-width: 730px;

  font-size: clamp(54px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -4px;
}

.hero-copy h1 span {
  display: block;

  margin-top: 10px;

  font-family: "Pacifico", cursive;
  font-size: 0.75em;
  font-weight: 400;
  letter-spacing: -2px;

  background:
    linear-gradient(
      90deg,
      #d3a0aa 0%,
      #bd7f8f 42%,
      #9c8fa8 68%,
      #758ea4 100%
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.hero-description {
  max-width: 620px;

  margin-top: 30px;

  font-size: 17px;
  line-height: 1.8;

  color: var(--cocoa);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;

  margin-top: 34px;
}

.hero-details {
  display: flex;
  align-items: center;

  gap: 18px;

  margin-top: 44px;
}

.hero-details > div {
  display: flex;
  flex-direction: column;

  gap: 4px;
}

.hero-details strong {
  font-size: 13px;
}

.hero-details span {
  font-size: 10px;
  color: var(--taupe);
}

.detail-divider {
  width: 1px;
  height: 36px;

  background: rgba(81, 63, 63, 0.13);
}

/* =========================================================
   HERO SHOWCASE
   ========================================================= */

.hero-showcase {
  position: relative;

  min-height: 525px;

  padding: 26px;

  overflow: hidden;

  border-radius: 38px;

  transform: rotate(0.7deg);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.hero-showcase:hover {
  transform: rotate(0deg) translateY(-7px);

  box-shadow:
    0 35px 90px rgba(89, 61, 72, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.90);
}

.hero-showcase-glow {
  position: absolute;

  width: 370px;
  height: 370px;

  top: -190px;
  right: -110px;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      rgba(226, 168, 181, 0.42),
      rgba(160, 181, 199, 0.46)
    );

  filter: blur(40px);
}

.hero-showcase-header {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 20px;

  padding: 10px 8px 27px;
}

.hero-showcase-header h2 {
  max-width: 360px;

  margin-top: 7px;

  font-size: 29px;
  line-height: 1.1;
  letter-spacing: -1.3px;
}

.showcase-heart {
  font-size: 45px;

  background:
    linear-gradient(
      135deg,
      var(--dusty-pink),
      var(--slate-blue)
    );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.floating-treats {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;

  gap: 12px;
}

.floating-treat {
  min-height: 91px;

  padding: 16px;

  border: 1px solid rgba(255, 255, 255, 0.67);
  border-radius: 22px;

  display: flex;
  align-items: center;

  gap: 15px;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.70),
    0 12px 30px rgba(81, 59, 66, 0.06);
}

.treat-pink {
  background:
    linear-gradient(
      110deg,
      rgba(255,255,255,0.59),
      rgba(236,199,207,0.46)
    );
}

.treat-blue {
  margin-left: 28px;

  background:
    linear-gradient(
      110deg,
      rgba(255,255,255,0.58),
      rgba(195,210,222,0.48)
    );
}

.treat-cream {
  margin-right: 26px;

  background:
    linear-gradient(
      110deg,
      rgba(255,255,255,0.63),
      rgba(236,218,210,0.42),
      rgba(204,215,224,0.27)
    );
}

.treat-icon {
  width: 52px;
  height: 52px;

  flex: 0 0 52px;

  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 27px;

  background: rgba(255, 255, 255, 0.63);
}

.floating-treat strong {
  font-size: 15px;
}

.floating-treat p {
  margin-top: 4px;

  font-size: 11px;
  color: var(--taupe);
}

.showcase-note {
  position: relative;
  z-index: 2;

  margin-top: 18px;
  padding: 15px 16px;

  border-top: 1px solid rgba(255,255,255,0.63);

  display: flex;
  align-items: center;

  gap: 10px;

  font-size: 11px;

  color: var(--cocoa);
}

.showcase-note span {
  color: var(--rose);
}

/* =========================================================
   HOME MENU CARDS
   ========================================================= */

.home-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 24px;
}

.home-menu-card {
  position: relative;

  min-height: 390px;

  padding: 30px;

  overflow: hidden;

  border-radius: 31px;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.home-menu-card:hover {
  transform: translateY(-9px);

  box-shadow:
    0 35px 80px rgba(87, 60, 70, 0.14);
}

.home-menu-icon,
.menu-category-icon {
  width: 67px;
  height: 67px;

  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 32px;

  border: 1px solid rgba(255,255,255,0.70);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.73),
    0 10px 26px rgba(77, 59, 62, 0.07);
}

.home-menu-icon {
  margin-bottom: 29px;
}

.pink-icon {
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.66),
      rgba(235,194,202,0.62)
    );
}

.blue-icon {
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.68),
      rgba(190,207,220,0.66)
    );
}

.cream-icon {
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.70),
      rgba(232,213,206,0.54),
      rgba(202,216,227,0.34)
    );
}

.card-kicker {
  margin-bottom: 7px;
}

.home-menu-card h3 {
  margin-bottom: 11px;

  font-size: 30px;
  letter-spacing: -1.3px;
}

.home-menu-card > p:not(.card-kicker) {
  min-height: 72px;

  color: var(--cocoa);

  font-size: 13px;
  line-height: 1.7;
}

.starting-price {
  margin: 25px 0 23px;

  display: flex;
  flex-direction: column;

  gap: 2px;
}

.starting-price span {
  font-size: 10px;
  color: var(--taupe);
}

.starting-price strong {
  font-size: 29px;

  background:
    linear-gradient(
      90deg,
      var(--deep-rose),
      var(--slate-blue)
    );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.soft-link {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  font-size: 12px;
  font-weight: 700;

  color: var(--deep-rose);
}

.soft-link span {
  transition: transform 0.25s ease;
}

.soft-link:hover span {
  transform: translateX(4px);
}

.featured-home-card {
  border-color: rgba(212, 164, 176, 0.54);
}

.home-badge {
  position: absolute;

  top: 22px;
  right: 22px;

  padding: 7px 11px;

  border-radius: 999px;

  color: white;

  font-size: 9px;
  font-weight: 700;

  background:
    linear-gradient(
      120deg,
      var(--dusty-pink),
      var(--slate-blue)
    );
}

/* =========================================================
   CUSTOM CARD
   ========================================================= */

.custom-card {
  min-height: 420px;

  padding: 62px;

  border-radius: 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 55px;

  overflow: hidden;
}

.custom-copy {
  max-width: 650px;
}

.custom-copy h2,
.about-copy h2 {
  margin-bottom: 18px;

  font-size: clamp(39px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -2.2px;
}

.custom-copy h2 span,
.about-copy h2 span {
  background:
    linear-gradient(
      90deg,
      var(--rose),
      var(--slate-blue)
    );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.custom-copy > p:not(.section-kicker) {
  max-width: 560px;

  margin-bottom: 28px;

  color: var(--cocoa);

  font-size: 15px;
  line-height: 1.8;
}

.love-medallion {
  width: 270px;
  height: 270px;

  flex: 0 0 270px;

  border-radius: 50%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: white;

  background:
    linear-gradient(
      145deg,
      #d09ca8 0%,
      #b9869b 42%,
      #869eb2 100%
    );

  box-shadow:
    0 25px 60px rgba(92, 63, 75, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.26);

  transform: rotate(4deg);
}

.love-medallion span {
  font-size: 66px;
  line-height: 1;
}

.love-medallion p {
  font-family: "Pacifico", cursive;

  font-size: 30px;
  line-height: 1.3;

  text-align: center;
}

/* =========================================================
   ABOUT
   ========================================================= */

.about-card {
  padding: 25px;

  border-radius: 40px;

  display: grid;
  grid-template-columns: 0.86fr 1.14fr;

  gap: 58px;

  align-items: center;
}

.about-art {
  position: relative;

  min-height: 520px;

  overflow: hidden;

  border-radius: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(255,255,255,0.61),
      transparent 24%
    ),
    linear-gradient(
      135deg,
      rgba(236, 196, 205, 0.78),
      rgba(219, 203, 215, 0.72) 48%,
      rgba(173, 194, 211, 0.80)
    );
}

.about-art-orb {
  position: absolute;

  width: 330px;
  height: 330px;

  border-radius: 50%;

  background:
    rgba(255,255,255,0.30);

  filter: blur(5px);
}

.about-monogram {
  position: relative;
  z-index: 2;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;

  border: 1px solid rgba(255,255,255,0.54);

  background: rgba(255,255,255,0.18);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.50);

  font-family: "Pacifico", cursive;
  font-size: 92px;
}

.about-floating-label {
  position: absolute;
  z-index: 3;

  padding: 10px 13px;

  border-radius: 15px;

  color: white;

  font-size: 10px;
  font-weight: 700;

  background: rgba(255,255,255,0.18);

  border: 1px solid rgba(255,255,255,0.40);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.label-one {
  top: 32px;
  right: 26px;
}

.label-two {
  left: 25px;
  bottom: 30px;
}

.about-copy {
  padding: 30px 45px 30px 0;
}

.about-copy > p:not(.section-kicker) {
  margin-bottom: 17px;

  color: var(--cocoa);

  font-size: 15px;
  line-height: 1.8;
}

.signature {
  margin-top: 24px;

  font-family: "Pacifico", cursive;
  font-size: 34px;

  background:
    linear-gradient(
      90deg,
      var(--rose),
      var(--slate-blue)
    );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
  position: relative;

  min-height: 430px;

  padding: 70px 30px;

  overflow: hidden;

  border-radius: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  color: white;

  background:
    radial-gradient(
      circle at 15% 0%,
      rgba(255, 232, 237, 0.25),
      transparent 34%
    ),
    radial-gradient(
      circle at 90% 100%,
      rgba(211, 227, 239, 0.24),
      transparent 34%
    ),
    linear-gradient(
      125deg,
      #895b69 0%,
      #b5798b 27%,
      #a784a0 51%,
      #8195aa 74%,
      #657b8e 100%
    );

  box-shadow:
    0 38px 88px rgba(85, 57, 70, 0.24);
}

.cta-shine {
  position: absolute;

  width: 570px;
  height: 570px;

  top: -410px;
  left: 50%;

  border-radius: 50%;

  transform: translateX(-50%);

  background: rgba(255, 255, 255, 0.27);

  filter: blur(75px);
}

.final-cta-content {
  position: relative;
  z-index: 2;

  max-width: 700px;
}

.final-cta h2 {
  margin-bottom: 18px;

  font-size: clamp(43px, 6vw, 65px);
  line-height: 1.04;
  letter-spacing: -3px;
}

.final-cta h2 span {
  font-family: "Pacifico", cursive;
  font-weight: 400;
}

.final-cta-content > p:not(.section-kicker) {
  margin-bottom: 29px;

  color: rgba(255,255,255,0.80);

  font-size: 15px;
}

.white-button {
  color: var(--deep-rose);

  background: rgba(255,255,255,0.94);

  box-shadow:
    0 15px 32px rgba(67, 49, 58, 0.18);

  transition: transform 0.25s ease;
}

.white-button:hover {
  transform: translateY(-3px);
}

/* =========================================================
   ORDER PAGE HERO
   ========================================================= */

.order-hero {
  min-height: 72vh;

  padding-top: 170px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.order-hero-content {
  max-width: 850px;
}

.order-hero h1 {
  font-size: clamp(58px, 8vw, 99px);
  line-height: 0.95;
  letter-spacing: -5px;
}

.order-hero h1 span {
  display: block;

  margin-top: 10px;

  font-family: "Pacifico", cursive;
  font-size: 0.74em;
  font-weight: 400;
  letter-spacing: -2px;

  background:
    linear-gradient(
      90deg,
      var(--dusty-pink),
      #b9849a 42%,
      var(--dusty-blue) 100%
    );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.order-hero-content > p {
  max-width: 690px;

  margin: 30px auto;

  color: var(--cocoa);

  font-size: 16px;
  line-height: 1.8;
}

/* =========================================================
   FEATURED REAL PRODUCT
   ========================================================= */

.featured-product {
  padding: 20px;

  border-radius: 40px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 55px;

  align-items: center;
}

.featured-photo-shell {
  position: relative;

  height: 520px;

  overflow: hidden;

  border-radius: 30px;

  background:
    linear-gradient(
      135deg,
      var(--blush),
      #dac9d5 48%,
      var(--powder-blue)
    );
}

.featured-photo-shell img {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.photo-fallback {
  position: absolute;
  inset: 0;

  z-index: 1;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 30px;

  text-align: center;

  color: white;
}

.photo-fallback span {
  font-size: 66px;
}

.photo-fallback strong {
  margin-top: 14px;

  font-size: 22px;
}

.photo-fallback p {
  margin-top: 7px;

  font-size: 11px;

  color: rgba(255,255,255,0.78);
}

.photo-badge {
  position: absolute;
  z-index: 4;

  top: 18px;
  left: 18px;

  padding: 9px 14px;

  border-radius: 999px;

  color: var(--deep-rose);

  font-size: 10px;
  font-weight: 700;

  background: rgba(255, 252, 250, 0.83);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.featured-product-copy {
  padding-right: 48px;
}

.featured-product-copy h2 {
  margin-bottom: 20px;

  font-size: clamp(42px, 5vw, 63px);
  line-height: 1;
  letter-spacing: -2.5px;
}

.featured-product-copy h2 span {
  display: block;

  margin-top: 8px;

  font-family: "Pacifico", cursive;
  font-weight: 400;

  background:
    linear-gradient(
      90deg,
      var(--rose),
      var(--slate-blue)
    );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.featured-product-copy > p:not(.section-kicker) {
  max-width: 500px;

  color: var(--cocoa);

  font-size: 15px;
  line-height: 1.8;
}

.featured-price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 12px;

  margin: 26px 0;
}

.featured-price-row > div {
  padding: 15px;

  border: 1px solid rgba(255,255,255,0.68);
  border-radius: 17px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.58),
      rgba(235,210,216,0.34),
      rgba(211,223,232,0.31)
    );
}

.featured-price-row span {
  display: block;

  margin-bottom: 3px;

  font-size: 10px;
  color: var(--taupe);
}

.featured-price-row strong {
  font-size: 22px;

  color: var(--deep-rose);
}

/* =========================================================
   ORDER MENU
   ========================================================= */

.order-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 24px;

  align-items: start;
}

.order-menu-card {
  position: relative;

  padding: 31px;

  border-radius: 32px;

  overflow: hidden;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.order-menu-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 35px 82px rgba(91, 62, 72, 0.14);
}

.menu-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 29px;
}

.menu-card-number {
  color: var(--taupe);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.order-menu-card h3 {
  margin: 7px 0 10px;

  font-size: 30px;
  letter-spacing: -1.3px;
}

.menu-card-description {
  min-height: 66px;

  margin-bottom: 24px;

  color: var(--cocoa);

  font-size: 13px;
  line-height: 1.65;
}

.special-badge {
  display: inline-flex;

  margin-bottom: 20px;
  padding: 7px 11px;

  border-radius: 999px;

  color: white;

  font-size: 9px;
  font-weight: 700;

  background:
    linear-gradient(
      110deg,
      var(--dusty-pink),
      var(--slate-blue)
    );
}

.highlighted-menu {
  border-color: rgba(196, 162, 183, 0.56);

  box-shadow:
    0 26px 66px rgba(92, 62, 75, 0.11),
    inset 0 1px 0 rgba(255,255,255,0.90);
}

.price-list {
  display: flex;
  flex-direction: column;

  gap: 10px;

  margin-bottom: 23px;
}

.price-item {
  min-height: 82px;

  padding: 15px;

  border-radius: 17px;

  border: 1px solid rgba(255,255,255,0.63);

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  background:
    linear-gradient(
      125deg,
      rgba(255,255,255,0.58),
      rgba(241,216,221,0.35) 48%,
      rgba(218,229,237,0.30)
    );

  transition:
    transform 0.22s ease,
    background 0.22s ease;
}

.price-item:hover {
  transform: translateX(3px);

  background:
    linear-gradient(
      125deg,
      rgba(255,255,255,0.76),
      rgba(240,207,214,0.44),
      rgba(209,225,237,0.40)
    );
}

.price-item h4 {
  margin-bottom: 4px;

  font-size: 13px;
}

.price-item p {
  color: var(--taupe);

  font-size: 9px;
  line-height: 1.4;
}

.price-stack {
  flex-shrink: 0;

  display: flex;
  flex-direction: column;

  gap: 5px;

  text-align: right;
}

.price-stack span {
  color: var(--taupe);

  font-size: 10px;
}

.price-stack strong {
  display: inline-block;

  min-width: 31px;

  margin-left: 4px;

  color: var(--deep-rose);

  font-size: 14px;
}

.single-price {
  flex-shrink: 0;
}

.single-price strong {
  font-size: 19px;

  color: var(--deep-rose);
}

.custom-note {
  margin-bottom: 20px;
  padding: 14px;

  border: 1px solid rgba(189, 151, 175, 0.20);
  border-radius: 15px;

  display: flex;

  gap: 11px;

  background:
    linear-gradient(
      120deg,
      rgba(210,158,170,0.11),
      rgba(156,178,195,0.11)
    );
}

.custom-note span {
  font-size: 18px;

  color: var(--rose);
}

.custom-note p {
  color: var(--cocoa);

  font-size: 9px;
  line-height: 1.55;
}

.custom-note strong {
  color: var(--deep-rose);
}

.menu-action {
  min-height: 50px;

  padding: 0 17px;

  border-radius: 15px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: white;

  font-size: 12px;
  font-weight: 700;

  background:
    linear-gradient(
      120deg,
      #cb96a2,
      #b17f96 50%,
      #8097aa
    );

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.menu-action:hover {
  transform: translateY(-2px);

  box-shadow:
    0 13px 30px rgba(103, 70, 85, 0.21);
}

.menu-disclaimer {
  max-width: 680px;

  margin: 28px auto 0;

  text-align: center;

  color: var(--taupe);

  font-size: 10px;
  line-height: 1.55;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */

.process-card {
  padding: 58px;

  border-radius: 40px;
}

.process-heading {
  max-width: 620px;

  margin-bottom: 50px;
}

.process-heading h2 {
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -2.3px;
}

.process-heading h2 span {
  background:
    linear-gradient(
      90deg,
      var(--rose),
      var(--slate-blue)
    );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;

  gap: 24px;

  align-items: center;
}

.step-number {
  width: 48px;
  height: 48px;

  margin-bottom: 15px;

  border-radius: 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;

  font-size: 10px;
  font-weight: 700;

  background:
    linear-gradient(
      130deg,
      var(--dusty-pink),
      var(--slate-blue)
    );
}

.step h3 {
  margin-bottom: 7px;

  font-size: 15px;
}

.step p {
  max-width: 245px;

  color: var(--taupe);

  font-size: 11px;
  line-height: 1.6;
}

.step-divider {
  width: 52px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(170,125,151,0.45),
      rgba(127,148,167,0.42),
      transparent
    );
}

/* =========================================================
   ORDER FORM
   ========================================================= */

.request-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;

  gap: 70px;

  align-items: start;
}

.request-intro {
  position: sticky;
  top: 130px;
}

.request-intro h2 {
  margin-bottom: 20px;

  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -2.5px;
}

.request-intro h2 span {
  display: block;

  margin-top: 7px;

  font-family: "Pacifico", cursive;
  font-weight: 400;

  background:
    linear-gradient(
      90deg,
      var(--rose),
      var(--slate-blue)
    );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.request-intro > p:not(.section-kicker) {
  max-width: 470px;

  color: var(--cocoa);

  font-size: 14px;
  line-height: 1.8;
}

.support-note {
  max-width: 420px;

  margin-top: 30px;
  padding: 17px;

  border-radius: 20px;

  display: flex;
  align-items: center;

  gap: 13px;
}

.support-note span {
  font-size: 27px;

  color: var(--rose);
}

.support-note p {
  color: var(--cocoa);

  font-size: 11px;
  line-height: 1.5;
}

.order-form {
  padding: 37px;

  border-radius: 35px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;

  gap: 8px;

  margin-bottom: 20px;
}

.field label {
  padding-left: 3px;

  color: var(--cocoa);

  font-size: 11px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;

  outline: none;

  border: 1px solid rgba(119, 84, 97, 0.11);
  border-radius: 15px;

  padding: 15px 16px;

  color: var(--dark-cocoa);

  font-size: 13px;

  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,0.66),
      rgba(249,232,235,0.34),
      rgba(232,240,246,0.28)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.58);

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.field input,
.field select {
  min-height: 52px;
}

.field textarea {
  min-height: 145px;

  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(173, 128, 155, 0.48);

  background: rgba(255,255,255,0.78);

  box-shadow:
    0 0 0 4px rgba(177, 138, 166, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.80);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a99094;
}

.submit-button {
  width: 100%;
  min-height: 57px;

  border: none;
  border-radius: 17px;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  color: white;

  font-size: 13px;
  font-weight: 700;

  background:
    linear-gradient(
      120deg,
      #d09aa6 0%,
      #b97e92 42%,
      #9d8ca5 64%,
      #7d94a8 100%
    );

  box-shadow:
    0 14px 32px rgba(104, 69, 85, 0.23);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.submit-button:hover {
  transform: translateY(-3px);

  box-shadow:
    0 20px 42px rgba(104, 69, 85, 0.29);
}

.submit-button span {
  font-size: 18px;
}

.form-note {
  margin-top: 14px;

  text-align: center;

  color: var(--taupe);

  font-size: 9px;
  line-height: 1.5;
}

/* =========================================================
   FOOTER
   ========================================================= */

footer {
  width: 90%;
  max-width: 1260px;

  margin: 20px auto 40px;
}

.footer-card {
  padding: 35px 40px;

  border-radius: 28px;

  display: grid;
  grid-template-columns: 1fr auto;

  gap: 30px;

  align-items: center;
}

.footer-brand p {
  margin-top: 9px;

  color: var(--taupe);

  font-size: 12px;
}

.footer-links {
  display: flex;

  gap: 24px;
}

.footer-links a {
  color: var(--cocoa);

  font-size: 12px;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--deep-rose);
}

.copyright {
  grid-column: 1 / -1;

  padding-top: 19px;

  border-top: 1px solid rgba(91, 69, 74, 0.08);

  color: var(--taupe);

  font-size: 10px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1020px) {
  .hero-grid,
  .featured-product,
  .about-card,
  .request-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-details {
    justify-content: center;
  }

  .hero-showcase {
    width: 100%;
    max-width: 650px;

    margin: 0 auto;
  }

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

  .featured-product-copy {
    padding: 20px 24px 34px;
  }

  .about-copy {
    padding: 20px;
  }

  .request-intro {
    position: static;

    text-align: center;
  }

  .request-intro > p:not(.section-kicker) {
    margin-left: auto;
    margin-right: auto;
  }

  .support-note {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 800px) {
  .custom-card {
    flex-direction: column;

    padding: 44px 28px;

    text-align: center;
  }

  .custom-copy > p:not(.section-kicker) {
    margin-left: auto;
    margin-right: auto;
  }

  .love-medallion {
    width: 200px;
    height: 200px;

    flex-basis: 200px;
  }

  .love-medallion span {
    font-size: 48px;
  }

  .love-medallion p {
    font-size: 24px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-divider {
    width: 1px;
    height: 28px;

    margin-left: 24px;

    background:
      linear-gradient(
        transparent,
        rgba(180,125,154,0.43),
        rgba(122,150,170,0.42),
        transparent
      );
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 12px;
  }

  .navbar {
    padding: 11px 14px;

    border-radius: 20px;
  }

  .nav-links {
    display: none;
  }

  .brand-main {
    font-size: 17px;
  }

  .brand-script {
    font-size: 15px;
  }

  .nav-cta {
    min-height: 40px;

    padding: 0 14px;

    font-size: 11px;
  }

  .section {
    width: 92%;
    padding: 76px 0;
  }

  .hero {
    min-height: auto;

    padding-top: 135px;
  }

  .hero-copy h1,
  .order-hero h1 {
    letter-spacing: -2.8px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-details {
    gap: 11px;
  }

  .hero-details span {
    font-size: 9px;
  }

  .hero-showcase {
    min-height: 480px;

    padding: 20px;
  }

  .treat-blue {
    margin-left: 14px;
  }

  .treat-cream {
    margin-right: 14px;
  }

  .home-menu-grid,
  .order-menu-grid {
    grid-template-columns: 1fr;
  }

  .home-menu-card {
    min-height: auto;
  }

  .about-art {
    min-height: 410px;
  }

  .about-monogram {
    width: 145px;
    height: 145px;

    font-size: 72px;
  }

  .order-hero {
    min-height: auto;

    padding-top: 150px;
  }

  .featured-photo-shell {
    height: 370px;
  }

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

  .process-card {
    padding: 40px 24px;
  }

  .order-form {
    padding: 25px 20px;

    border-radius: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .footer-card {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .footer-brand .brand {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-details {
    display: none;
  }

  .hero-showcase-header h2 {
    font-size: 25px;
  }

  .floating-treat {
    padding: 13px;
  }

  .treat-blue,
  .treat-cream {
    margin-left: 0;
    margin-right: 0;
  }

  .love-medallion {
    width: 170px;
    height: 170px;

    flex-basis: 170px;
  }

  .featured-photo-shell {
    height: 310px;
  }

  .featured-product-copy {
    padding: 18px 12px 28px;
  }
}


/* =========================================================
   STRIPE CHECKOUT
   ========================================================= */

.checkout-shell {
  padding: 30px;

  border-radius: 42px;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  gap: 60px;

  align-items: center;
}

.checkout-copy {
  padding: 35px 18px 35px 32px;
}

.checkout-copy h2 {
  margin-bottom: 19px;

  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -2.7px;
}

.checkout-copy h2 span {
  display: block;

  margin-top: 6px;

  font-family: "Pacifico", cursive;
  font-weight: 400;

  background:
    linear-gradient(
      90deg,
      var(--rose),
      #a986a1,
      var(--slate-blue)
    );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.checkout-copy > p:not(.section-kicker) {
  max-width: 510px;

  color: var(--cocoa);

  font-size: 14px;
  line-height: 1.8;
}

.stripe-trust {
  max-width: 510px;

  margin-top: 28px;
  padding: 17px;

  border-radius: 20px;

  display: flex;
  align-items: center;

  gap: 14px;
}

.stripe-lock {
  width: 46px;
  height: 46px;

  flex: 0 0 46px;

  border-radius: 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;

  font-size: 22px;

  background:
    linear-gradient(
      135deg,
      var(--dusty-pink),
      var(--slate-blue)
    );
}

.stripe-trust strong {
  display: block;

  margin-bottom: 4px;

  font-size: 12px;
}

.stripe-trust p {
  color: var(--taupe);

  font-size: 9px;
  line-height: 1.5;
}

.checkout-card {
  padding: 32px;

  border-radius: 31px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.76),
      rgba(247,226,232,0.45) 45%,
      rgba(220,232,241,0.41)
    );
}

.checkout-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 27px;
}

.checkout-card-top h3 {
  margin-top: 5px;

  font-size: 28px;
  letter-spacing: -1.2px;
}

.checkout-heart {
  font-size: 40px;

  background:
    linear-gradient(
      135deg,
      var(--dusty-pink),
      var(--slate-blue)
    );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.checkout-summary {
  margin: 3px 0 20px;
  padding: 17px;

  border: 1px solid rgba(255,255,255,0.68);
  border-radius: 17px;

  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,0.58),
      rgba(239,213,220,0.32),
      rgba(214,228,238,0.30)
    );
}

.checkout-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.checkout-summary span {
  color: var(--cocoa);

  font-size: 11px;
  font-weight: 600;
}

.checkout-summary strong {
  font-size: 25px;

  background:
    linear-gradient(
      90deg,
      var(--deep-rose),
      var(--slate-blue)
    );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.checkout-summary p {
  margin-top: 7px;

  color: var(--taupe);

  font-size: 9px;
}

.stripe-checkout-button {
  width: 100%;
  min-height: 58px;

  border: 0;
  border-radius: 17px;

  padding: 0 20px;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: white;

  font-size: 13px;
  font-weight: 700;

  background:
    linear-gradient(
      120deg,
      #d09aa6 0%,
      #b97e92 39%,
      #9c8ca7 65%,
      #7d95a9 100%
    );

  box-shadow:
    0 14px 32px rgba(104, 69, 85, 0.22);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

.stripe-checkout-button:hover:not(:disabled) {
  transform: translateY(-3px);

  box-shadow:
    0 20px 42px rgba(104, 69, 85, 0.29);
}

.stripe-checkout-button:disabled {
  cursor: not-allowed;

  opacity: 0.48;

  box-shadow: none;
}

.checkout-status {
  min-height: 20px;

  margin-top: 12px;

  text-align: center;

  color: var(--deep-rose);

  font-size: 10px;
  font-weight: 600;
}

.checkout-smallprint {
  margin-top: 6px;

  text-align: center;

  color: var(--taupe);

  font-size: 9px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .checkout-shell {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .checkout-copy {
    padding: 25px 15px;

    text-align: center;
  }

  .checkout-copy > p:not(.section-kicker),
  .stripe-trust {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .checkout-shell {
    padding: 18px;

    border-radius: 32px;
  }

  .checkout-card {
    padding: 23px 18px;
  }
}


/* =========================================================
   PAYMENT RESULT PAGE
   ========================================================= */

.payment-result-page {
  width: 92%;
  max-width: 900px;

  min-height: 100vh;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 80px 0;
}

.payment-result-card {
  width: 100%;

  padding: 70px 35px;

  border-radius: 40px;

  text-align: center;
}

.result-heart {
  width: 82px;
  height: 82px;

  margin: 0 auto 22px;

  border-radius: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;

  font-size: 43px;

  background:
    linear-gradient(
      135deg,
      var(--dusty-pink),
      var(--slate-blue)
    );

  box-shadow:
    0 18px 42px rgba(96, 67, 82, 0.20);
}

.payment-result-card h1 {
  margin-bottom: 18px;

  font-size: clamp(42px, 7vw, 70px);
  line-height: 1.04;
  letter-spacing: -3px;
}

.payment-result-card h1 span {
  font-family: "Pacifico", cursive;
  font-weight: 400;

  background:
    linear-gradient(
      90deg,
      var(--rose),
      var(--slate-blue)
    );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.payment-result-card > p:not(.section-kicker) {
  max-width: 610px;

  margin: 0 auto;

  color: var(--cocoa);

  font-size: 14px;
  line-height: 1.8;
}

.result-actions {
  margin-top: 30px;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 12px;
}


/* =========================================================
   LIVE STRIPE API MENU
   ========================================================= */

.api-menu-toolbar {
  margin-bottom: 24px;
  padding: 15px 18px;

  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.api-live-indicator {
  display: flex;
  align-items: center;

  gap: 12px;
}

.live-dot {
  width: 11px;
  height: 11px;

  flex: 0 0 11px;

  border-radius: 50%;

  background: #9e7e93;

  box-shadow:
    0 0 0 6px rgba(158,126,147,0.11);
}

.api-live-indicator strong {
  display: block;

  margin-bottom: 3px;

  font-size: 12px;
}

.api-live-indicator p {
  color: var(--taupe);

  font-size: 9px;
}

.menu-refresh-button {
  min-height: 42px;

  padding: 0 15px;

  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 13px;

  cursor: pointer;

  color: var(--cocoa);

  font-size: 10px;
  font-weight: 700;

  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,0.62),
      rgba(239,217,224,0.33),
      rgba(218,230,239,0.33)
    );

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.menu-refresh-button:hover:not(:disabled) {
  transform: translateY(-2px);

  background: rgba(255,255,255,0.76);
}

.menu-refresh-button:disabled {
  opacity: 0.52;
  cursor: wait;
}

.api-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 24px;

  align-items: start;
}

.api-product-card {
  position: relative;

  min-width: 0;

  padding: 30px;

  border-radius: 31px;

  overflow: hidden;

  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease;
}

.api-product-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 34px 78px rgba(91,62,72,0.14);
}

.api-product-top {
  min-height: 72px;

  margin-bottom: 27px;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 15px;
}

.api-product-symbol {
  width: 67px;
  height: 67px;

  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 31px;

  border: 1px solid rgba(255,255,255,0.70);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.78),
    0 10px 26px rgba(77,59,62,0.07);
}

.api-product-photo {
  width: 78px;
  height: 78px;

  overflow: hidden;

  border-radius: 21px;

  border: 1px solid rgba(255,255,255,0.75);

  box-shadow:
    0 10px 26px rgba(77,59,62,0.08);
}

.api-product-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.api-product-badge {
  position: absolute;

  top: 21px;
  right: 21px;

  max-width: 145px;

  padding: 7px 10px;

  border-radius: 999px;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  color: white;

  font-size: 8px;
  font-weight: 700;

  background:
    linear-gradient(
      115deg,
      var(--dusty-pink),
      var(--slate-blue)
    );
}

.api-product-card h3 {
  margin: 6px 0 10px;

  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -1.2px;
}

.api-product-description {
  min-height: 64px;

  margin-bottom: 22px;

  color: var(--cocoa);

  font-size: 12px;
  line-height: 1.65;
}

.api-price-list {
  display: flex;
  flex-direction: column;

  gap: 9px;
}

.api-price-option {
  width: 100%;
  min-height: 58px;

  padding: 11px 13px;

  border: 1px solid rgba(255,255,255,0.67);
  border-radius: 15px;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 16px;

  color: var(--cocoa);

  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,0.57),
      rgba(240,215,221,0.31),
      rgba(215,228,238,0.31)
    );

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.api-price-option:hover {
  transform: translateX(3px);

  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,0.79),
      rgba(239,207,216,0.43),
      rgba(206,224,237,0.42)
    );
}

.api-price-option.selected {
  border-color: rgba(180,124,149,0.48);

  background:
    linear-gradient(
      120deg,
      rgba(246,217,224,0.67),
      rgba(220,221,236,0.58)
    );

  box-shadow:
    0 0 0 4px rgba(180,124,149,0.09);
}

.api-price-option span {
  text-align: left;

  font-size: 10px;
  font-weight: 600;
}

.api-price-option strong {
  flex-shrink: 0;

  font-size: 15px;

  color: var(--deep-rose);
}

.menu-loading-card,
.menu-empty-card,
.menu-error-card {
  grid-column: 1 / -1;

  min-height: 250px;

  padding: 40px;

  border-radius: 31px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 8px;

  text-align: center;
}

.menu-loading-card strong,
.menu-empty-card strong,
.menu-error-card strong {
  margin-top: 10px;

  font-size: 16px;
}

.menu-loading-card p,
.menu-empty-card p,
.menu-error-card p {
  color: var(--taupe);

  font-size: 10px;
  line-height: 1.6;
}

.menu-empty-card > span,
.menu-error-card > span {
  width: 55px;
  height: 55px;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;

  font-size: 27px;

  background:
    linear-gradient(
      135deg,
      var(--dusty-pink),
      var(--slate-blue)
    );
}

.menu-loader {
  width: 42px;
  height: 42px;

  border: 3px solid rgba(165,131,153,0.16);
  border-top-color: var(--rose);

  border-radius: 50%;

  animation: menuSpin 0.8s linear infinite;
}

@keyframes menuSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Selected product / API checkout */

.selected-product-empty {
  min-height: 145px;

  padding: 22px;

  border: 1px dashed rgba(159,124,147,0.27);
  border-radius: 18px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 8px;

  text-align: center;

  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,0.36),
      rgba(238,215,222,0.18),
      rgba(213,228,238,0.18)
    );
}

.selected-product-empty span {
  font-size: 32px;
}

.selected-product-empty p {
  max-width: 300px;

  color: var(--taupe);

  font-size: 10px;
  line-height: 1.55;
}

.selected-price-line {
  margin-bottom: 18px;
  padding: 16px;

  border: 1px solid rgba(255,255,255,0.68);
  border-radius: 17px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,0.61),
      rgba(239,214,221,0.33),
      rgba(214,228,238,0.31)
    );
}

.selected-price-line span {
  display: block;

  margin-bottom: 3px;

  color: var(--taupe);

  font-size: 9px;
}

.selected-price-line strong {
  font-size: 21px;

  color: var(--deep-rose);
}

.selected-check {
  width: 38px;
  height: 38px;

  border-radius: 13px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;

  font-size: 14px;

  background:
    linear-gradient(
      135deg,
      var(--dusty-pink),
      var(--slate-blue)
    );
}

@media (max-width: 1000px) {
  .api-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .api-menu-grid {
    grid-template-columns: 1fr;
  }

  .api-menu-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .menu-refresh-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-loader {
    animation: none;
  }

  .api-product-card,
  .api-price-option {
    transition: none;
  }
}
