:root {
  --rose: #c84662;
  --rose-dark: #8f223b;
  --leaf: #21785d;
  --leaf-dark: #154b3b;
  --sun: #f2b84b;
  --ink: #18211f;
  --muted: #65716f;
  --paper: #fffdf9;
  --soft: #f5f7f2;
  --line: rgba(24, 33, 31, 0.12);
  --shadow: 0 22px 70px rgba(34, 26, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  background: linear-gradient(145deg, #fffdf9 0%, #f8f2f3 44%, #edf5ee 100%);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 10px 40px rgba(33, 18, 22, 0.08);
  backdrop-filter: blur(18px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-elevated {
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 16px 55px rgba(33, 18, 22, 0.14);
}

.brand {
  display: grid;
  place-items: center;
  width: 124px;
  height: 56px;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.brand img {
  width: 112px;
  height: auto;
}

.brand-mobile-copy,
.mobile-header-actions,
.mobile-menu-card {
  display: none;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-links a {
  padding: 11px 14px;
  border-radius: 999px;
  color: #3b4744;
  font-size: 14px;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--leaf-dark);
  background: rgba(33, 120, 93, 0.1);
  transform: translateY(-1px);
}

.header-call {
  display: grid;
  gap: 2px;
  padding: 10px 16px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--leaf) 0%, var(--leaf-dark) 100%);
  box-shadow: 0 14px 28px rgba(21, 75, 59, 0.24);
}

.header-call span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.82;
}

.header-call strong {
  font-size: 15px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: white;
  transition: transform 0.25s ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 34px;
  width: min(1180px, calc(100% - 28px));
  min-height: calc(100vh - 86px);
  margin: 0 auto;
  padding: 82px 0 52px;
  align-items: center;
}

.petal-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: var(--sun);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 620px;
  margin-bottom: 30px;
  color: #3f4d4a;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.72;
}

.hero-actions,
.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-btn,
.ghost-btn,
.phone-pill,
.whatsapp-pill {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-btn,
.phone-pill {
  color: white;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  box-shadow: 0 18px 42px rgba(200, 70, 98, 0.28);
}

.ghost-btn,
.whatsapp-pill {
  border: 1px solid rgba(33, 120, 93, 0.22);
  color: var(--leaf-dark);
  background: rgba(255, 255, 255, 0.72);
}

.primary-btn:hover,
.ghost-btn:hover,
.phone-pill:hover,
.whatsapp-pill:hover {
  transform: translateY(-2px);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span,
.feature-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(24, 33, 31, 0.1);
  border-radius: 999px;
  color: #35413e;
  background: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.hero-stage {
  position: relative;
  min-height: 640px;
  perspective: 1200px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

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

.hero-card-main {
  inset: 46px 48px 38px 12px;
  transform: rotate(-2deg);
}

.hero-card-main img {
  filter: saturate(1.08) contrast(1.02);
}

.hero-card-side {
  width: 178px;
  height: 236px;
}

.hero-card-side.one {
  top: 0;
  right: 0;
  transform: rotate(6deg);
}

.hero-card-side.two {
  left: 0;
  bottom: 0;
  transform: rotate(5deg);
}

.card-glow {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(to top, rgba(24, 33, 31, 0.38), transparent);
}

.floating-note {
  position: absolute;
  right: 8px;
  bottom: 94px;
  display: grid;
  gap: 4px;
  width: min(260px, 52%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  color: white;
  background: rgba(24, 33, 31, 0.66);
  box-shadow: 0 20px 45px rgba(24, 33, 31, 0.18);
  backdrop-filter: blur(16px);
}

.floating-note span {
  color: #ffd681;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-note strong {
  font-size: 18px;
  line-height: 1.25;
}

.quick-order,
.showcase,
.instagram-gifts,
.gift-band,
.experience,
.site-footer {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.quick-order {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 58px rgba(34, 26, 24, 0.09);
}

.quick-order h2,
.section-heading h2,
.gift-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.quick-order h2 {
  max-width: 720px;
  font-size: clamp(15px, 2vw, 27px);
  line-height: 1.25;
}

.showcase {
  padding: 92px 0 72px;
}

.section-heading {
  display: grid;
  max-width: 760px;
  gap: 14px;
  margin-bottom: 24px;
}

.section-heading p,
.gift-copy p,
.experience p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-btn {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: #34403d;
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-weight: 900;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: white;
  background: var(--leaf);
  transform: translateY(-1px);
}

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

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 44px rgba(34, 26, 24, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(34, 26, 24, 0.17);
}

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

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eef3ef;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: white;
  background: rgba(143, 34, 59, 0.9);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.product-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.product-body h3 {
  margin: 0;
  font-size: 18px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-meta span {
  padding: 6px 9px;
  border-radius: 999px;
  color: #42504d;
  background: #eef5ef;
  font-size: 12px;
  font-weight: 800;
}

.product-action {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.product-action span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.product-action a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--leaf) 0%, var(--leaf-dark) 100%);
  font-size: 13px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-action a:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(21, 75, 59, 0.2);
}

.instagram-gifts {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) 1fr;
  gap: 28px;
  align-items: start;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(239, 247, 240, 0.84)),
    linear-gradient(145deg, rgba(200, 70, 98, 0.08), rgba(33, 120, 93, 0.1));
  box-shadow: 0 18px 58px rgba(34, 26, 24, 0.09);
}

.instagram-copy {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 18px;
}

.instagram-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  text-wrap: balance;
}

.instagram-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.instagram-profile {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  border-radius: 8px;
  padding: 0 18px;
  color: white;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(200, 70, 98, 0.22);
}

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

.instagram-card {
  position: relative;
  display: grid;
  min-height: 360px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  color: white;
  background: var(--ink);
  box-shadow: 0 18px 46px rgba(34, 26, 24, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.instagram-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(34, 26, 24, 0.18);
}

.instagram-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.instagram-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.instagram-card::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(to top, rgba(24, 33, 31, 0.78), transparent);
}

.instagram-card span,
.instagram-card strong {
  position: relative;
  z-index: 1;
  align-self: end;
  margin: 0 18px;
}

.instagram-card span {
  width: fit-content;
  align-self: start;
  margin-top: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.instagram-card strong {
  align-self: end;
  margin-bottom: 18px;
  font-size: 19px;
  line-height: 1.25;
}

.gift-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) 1fr;
  gap: 46px;
  align-items: center;
  padding: 48px;
  border-radius: 8px;
  color: white;
  background:
    linear-gradient(135deg, rgba(21, 75, 59, 0.96), rgba(24, 33, 31, 0.96)),
    url("assets/hero.jpg") center / cover;
  box-shadow: var(--shadow);
}

.gift-media {
  position: relative;
  min-height: 430px;
}

.gift-media img {
  position: absolute;
  width: 54%;
  height: 78%;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}

.gift-media img:first-child {
  left: 0;
  top: 4%;
  transform: rotate(-4deg);
}

.gift-media img:last-child {
  right: 2%;
  bottom: 2%;
  transform: rotate(5deg);
}

.gift-copy .eyebrow {
  color: #ffd681;
}

.gift-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.feature-list span {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

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

.experience article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.experience strong {
  color: var(--rose);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.experience h3 {
  margin: 18px 0 10px;
  font-size: 24px;
}

.site-footer {
  padding: 70px 0 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 24px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 58px rgba(34, 26, 24, 0.08);
}

.footer-brand img {
  width: 136px;
  margin-bottom: 16px;
  border-radius: 6px;
  background: white;
}

.footer-brand p {
  max-width: 360px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a,
.footer-cta a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 14px;
  color: white;
  background: var(--leaf);
  font-size: 13px;
  font-weight: 900;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.footer-column a,
.footer-column span {
  color: #40504c;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.footer-column a:hover {
  color: var(--rose-dark);
}

.footer-cta {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 22px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--leaf-dark), var(--ink));
}

.footer-cta span {
  color: #ffd681;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-cta strong {
  font-size: 22px;
  line-height: 1.2;
}

.footer-cta a {
  width: fit-content;
  background: var(--rose);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--rose-dark);
  font-weight: 900;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: grid;
  gap: 2px;
  min-width: 210px;
  padding: 14px 16px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  box-shadow: 0 18px 44px rgba(143, 34, 59, 0.36);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.floating-call.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-call span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.78;
}

.floating-call strong {
  font-size: 17px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    position: fixed;
    top: 92px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    background:
      linear-gradient(145deg, rgba(255, 253, 249, 0.98), rgba(245, 250, 245, 0.97));
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 60px;
  }

  .hero-stage {
    min-height: 560px;
  }

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

  .instagram-gifts {
    grid-template-columns: 1fr;
  }

  .instagram-copy {
    position: static;
  }

  .gift-band {
    grid-template-columns: 1fr;
  }

  .quick-order {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    margin-top: 8px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 6px;
    padding: 8px;
    border-color: rgba(255, 255, 255, 0.92);
    background:
      linear-gradient(135deg, rgba(255, 253, 249, 0.96), rgba(241, 249, 243, 0.92));
    box-shadow: 0 14px 42px rgba(33, 18, 22, 0.14);
  }

  .brand {
    display: flex;
    width: auto;
    min-width: 0;
    height: 50px;
    justify-content: flex-start;
    gap: 0;
    padding: 5px 6px;
    background: rgba(255, 255, 255, 0.86);
  }

  .brand img {
    width: 60px;
    flex: 0 0 auto;
  }

  .brand-mobile-copy {
    display: none;
  }

  .brand-mobile-copy strong {
    color: var(--rose-dark);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
  }

  .brand-mobile-copy small {
    color: var(--leaf-dark);
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
  }

  .mobile-header-actions {
    display: flex;
    gap: 6px;
    justify-self: end;
    min-width: 0;
  }

  .mobile-action {
    display: inline-flex;
    width: auto;
    min-width: 42px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0 12px;
    color: white;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 12px 26px rgba(24, 33, 31, 0.14);
  }

  .mobile-action.call {
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  }

  .mobile-action.whatsapp {
    min-width: 90px;
    background: linear-gradient(135deg, #2fb96f, var(--leaf-dark));
  }

  .header-call {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    box-shadow: 0 12px 26px rgba(24, 33, 31, 0.16);
  }

  .menu-toggle span {
    grid-area: 1 / 1;
    margin: 0;
  }

  .menu-toggle span:first-child {
    transform: translateY(-4px);
  }

  .menu-toggle span:last-child {
    transform: translateY(4px);
  }

  .menu-toggle.is-open span:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: rotate(-45deg);
  }

  .nav-links {
    top: 78px;
    left: 8px;
    right: 8px;
    padding: 10px;
  }

  .nav-links a {
    display: flex;
    min-height: 44px;
    align-items: center;
    border-radius: 8px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.72);
  }

  .mobile-menu-card {
    display: grid;
    gap: 6px;
    padding: 16px;
    border-radius: 8px;
    color: white;
    background:
      linear-gradient(135deg, rgba(143, 34, 59, 0.94), rgba(21, 75, 59, 0.94)),
      url("assets/instagram-gift-2.jpg") center / cover;
    box-shadow: 0 18px 40px rgba(143, 34, 59, 0.2);
  }

  .mobile-menu-card span {
    color: #ffd681;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-menu-card strong {
    font-size: 18px;
    line-height: 1.2;
  }

  .mobile-menu-card a {
    width: fit-content;
    min-height: 36px;
    margin-top: 4px;
    color: var(--rose-dark);
    background: white;
    font-size: 13px;
  }

  .hero,
  .quick-order,
  .showcase,
  .instagram-gifts,
  .gift-band,
  .experience,
  .site-footer {
    width: calc(100% - 20px);
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(43px, 14vw, 60px);
  }

  .hero-actions,
  .order-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 460px;
  }

  .hero-card {
    border-width: 7px;
  }

  .hero-card-main {
    inset: 48px 18px 50px 18px;
  }

  .hero-card-side {
    width: 126px;
    height: 166px;
  }

  .floating-note {
    left: 24px;
    right: 24px;
    bottom: 24px;
    width: auto;
  }

  .quick-order,
  .instagram-gifts,
  .gift-band {
    padding: 22px;
  }

  .instagram-grid,
  .experience {
    grid-template-columns: 1fr;
  }

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

  .product-card {
    min-height: 0;
  }

  .product-body {
    gap: 8px;
    padding: 10px;
  }

  .product-body h3 {
    font-size: 15px;
    line-height: 1.2;
  }

  .product-body p {
    font-size: 12px;
    line-height: 1.45;
  }

  .product-meta {
    gap: 5px;
  }

  .product-meta span,
  .badge {
    font-size: 10px;
  }

  .product-action {
    gap: 8px;
  }

  .product-action span {
    font-size: 11px;
    line-height: 1.35;
  }

  .product-action a {
    min-height: 36px;
    padding: 0 8px;
    font-size: 11px;
  }

  .instagram-card {
    min-height: 320px;
  }

  .gift-media {
    min-height: 330px;
  }

  .gift-media img {
    width: 62%;
  }

  .site-footer {
    padding-bottom: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .footer-bottom {
    display: grid;
  }

  .floating-call {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .petal-canvas {
    display: none;
  }
}
