:root {
  --green: #8f1024;
  --green-2: #a8142b;
  --orange: #e3263f;
  --orange-dark: #bd1530;
  --cream: #fff1f3;
  --paper: #fffafa;
  --ink: #2d171b;
  --muted: #756368;
  --line: #f0dfe3;
  --white: #fff;
  --shadow: 0 22px 60px rgba(117, 17, 37, 0.12);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Vazirmatn", Tahoma, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.announcement {
  height: 34px;
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--green);
  color: #fff;
  font-size: 12px;
}
.announcement p {
  margin: 0;
}
.announcement span {
  color: #f5d9df;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 250, 0.94);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(240, 223, 227, 0.8);
}
.nav-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 13px 13px 13px 3px;
  background: var(--orange);
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  transform: rotate(-5deg);
}
.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand strong {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 1.4px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: #4c3035;
}
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 5px;
  background: var(--orange);
  transition: 0.25s;
}
.main-nav a:hover::after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}
.icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.icon-btn svg,
.cart-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-button {
  min-height: 44px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: var(--green);
  border: 0;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
}
.cart-button b {
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: #fff;
  font-size: 11px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 4px;
  transition: 0.25s;
}
.search-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 22px 0;
}
.search-panel.open {
  display: block;
}
.search-panel label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--muted);
}
.search-panel .container > div {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--green);
}
.search-panel input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 8px 0 10px;
  font-size: 18px;
  background: transparent;
}
.search-close {
  border: 0;
  background: transparent;
  font-size: 28px;
  color: var(--muted);
}

.hero {
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  background: #f9ecef;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  background: url("assets/hero-finger-food.webp") center/cover no-repeat;
  transform: scaleX(1);
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 249, 250, 0) 25%,
    rgba(255, 249, 250, 0.76) 58%,
    #fff9fa 78%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 50px;
}
.hero-content > * {
  max-width: 530px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}
.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(48px, 5.3vw, 78px);
  line-height: 1.18;
  letter-spacing: -3px;
  color: var(--green);
  font-weight: 900;
}
.hero h1 em {
  color: var(--orange);
  font-style: normal;
  position: relative;
  white-space: nowrap;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  height: 8px;
  right: 8px;
  left: 8px;
  bottom: -3px;
  border-bottom: 3px solid var(--orange);
  border-radius: 50%;
  opacity: 0.55;
}
.hero-content > p {
  margin: 0;
  max-width: 480px;
  color: #6b5156;
  font-size: 17px;
  line-height: 2;
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.btn {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-radius: 9px;
  border: 0;
  font-weight: 800;
  font-size: 13px;
  transition:
    transform 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(227, 38, 63, 0.24);
}
.btn-primary:hover {
  background: var(--orange-dark);
}
.btn-outline {
  color: var(--green);
  background: transparent;
  border: 1px solid #d5aeb7;
}
.btn-cream {
  color: var(--green);
  background: #fff;
}
.play-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
}
.play-link i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-style: normal;
  font-size: 10px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 8px 22px rgba(143, 16, 36, 0.22);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}
.avatars {
  display: flex;
  direction: ltr;
}
.avatars span {
  width: 34px;
  height: 34px;
  margin-left: -8px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  background: #b34b5d;
}
.avatars span:nth-child(2) {
  background: #d56b7d;
}
.avatars span:nth-child(3) {
  background: #8f1024;
}
.avatars span:nth-child(4) {
  background: #ef8d9d;
}
.hero-trust p {
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
  color: var(--muted);
}
.hero-trust p b {
  color: var(--ink);
  font-size: 12px;
}
.hero-trust p span {
  color: var(--orange);
  letter-spacing: 1px;
}
.hero-card {
  position: absolute;
  z-index: 3;
  left: 5%;
  bottom: 58px;
  width: 260px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.hero-card > span {
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 800;
}
.hero-card strong {
  margin-top: 6px;
  color: var(--green);
  font-size: 16px;
}
.hero-card small {
  color: var(--muted);
  font-size: 10px;
}
.hero-card b {
  margin-top: 9px;
  font-size: 13px;
}
.scroll-hint {
  position: absolute;
  z-index: 3;
  bottom: 18px;
  right: 50%;
  transform: translateX(50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--muted);
}
.scroll-hint span {
  width: 18px;
  height: 28px;
  border: 1px solid #aa7c85;
  border-radius: 12px;
  position: relative;
}
.scroll-hint span::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 6px;
  top: 5px;
  right: 6px;
  background: var(--green);
  border-radius: 3px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  50% {
    transform: translateY(9px);
    opacity: 0.25;
  }
}

.feature-strip {
  background: var(--green);
  color: #fff;
}
.feature-strip .container {
  min-height: 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.feature-strip article {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.feature-strip article:last-child {
  border-left: 0;
}
.feature-strip article > span {
  font-size: 26px;
  filter: grayscale(0.3);
}
.feature-strip article div {
  display: flex;
  flex-direction: column;
}
.feature-strip b {
  font-size: 13px;
}
.feature-strip small {
  color: #f2cbd2;
  font-size: 10px;
}

.section {
  padding: 105px 0;
}
.menu-section {
  background: var(--paper);
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 38px;
}
.section-heading h2,
.story-content h2,
.faq-grid h2,
.newsletter h2 {
  margin: 10px 0 0;
  color: var(--green);
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.3;
  letter-spacing: -1.5px;
}
.section-heading > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.section-heading.centered {
  justify-content: center;
  text-align: center;
}
.section-heading.centered .eyebrow {
  justify-content: center;
}
.filter-row {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-row::-webkit-scrollbar {
  display: none;
}
.filter-btn {
  flex-shrink: 0;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 25px;
  color: var(--muted);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}
.filter-btn.active {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid #f0dfe3;
  border-radius: 15px;
  background: #fff;
  transition: 0.25s;
  animation: cardIn 0.35s both;
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
}
.product-image {
  height: 205px;
  position: relative;
  overflow: hidden;
  background: #eee;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover img {
  transform: scale(1.06);
}
.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  border-radius: 6px;
  color: #fff;
  background: var(--orange);
  font-size: 9px;
  font-weight: 800;
}
.favorite {
  position: absolute;
  top: 11px;
  left: 11px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  color: #a58389;
  font-size: 18px;
  transition: 0.2s;
}
.favorite.active {
  color: #e15454;
}
.product-body {
  padding: 17px;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  color: #a84a5b;
  font-size: 9px;
}
.product-body h3 {
  margin: 5px 0 3px;
  color: var(--green);
  font-size: 16px;
}
.product-body > p {
  min-height: 42px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}
.product-foot {
  margin-top: 14px;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f5e8eb;
}
.product-price {
  display: flex;
  flex-direction: column;
}
.product-price b {
  font-size: 13px;
}
.product-price small {
  color: var(--muted);
  font-size: 9px;
}
.add-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 9px;
  color: #fff;
  background: var(--green);
  font-size: 20px;
  line-height: 1;
  transition: 0.2s;
}
.add-btn:hover {
  background: var(--orange);
  transform: rotate(90deg);
}
.center-action {
  margin-top: 38px;
  text-align: center;
}
.empty-state {
  display: none;
  padding: 60px 20px;
  text-align: center;
}
.empty-state span {
  font-size: 42px;
}
.empty-state h3 {
  margin-bottom: 0;
}
.empty-state p {
  color: var(--muted);
}

.occasion-section {
  padding: 85px 0;
  color: #fff;
  background: var(--green);
  position: relative;
  overflow: hidden;
}
.occasion-section::before,
.occasion-section::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.occasion-section::before {
  width: 400px;
  height: 400px;
  right: -180px;
  top: -230px;
}
.occasion-section::after {
  width: 300px;
  height: 300px;
  left: -150px;
  bottom: -170px;
}
.occasion-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow.light {
  color: #ffbdc8;
}
.occasion-content h2 {
  margin: 12px 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.2;
  letter-spacing: -2px;
}
.occasion-content > p {
  color: #f3d9de;
  max-width: 440px;
  font-size: 13px;
}
.guest-picker {
  display: flex;
  gap: 10px;
  margin: 28px 0;
}
.guest-option {
  width: 66px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  color: #fff;
  background: transparent;
}
.guest-option b {
  font-size: 20px;
}
.guest-option span {
  font-size: 9px;
  color: #f1d1d7;
}
.guest-option.active {
  color: var(--green);
  background: #fff;
  border-color: #fff;
  transform: translateY(-5px);
}
.guest-option.active span {
  color: var(--green);
}
.package-card {
  min-height: 350px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 26px 70px rgba(73, 5, 17, 0.2);
}
.package-label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 6px;
  color: #fff;
  background: var(--orange);
  font-size: 9px;
  font-weight: 800;
}
.package-visual {
  min-height: 350px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 8px;
  padding: 40px;
  background:
    radial-gradient(circle at center, #fff 0 36%, transparent 37%),
    repeating-radial-gradient(
      circle at center,
      #f4dbe0 0 1px,
      transparent 2px 15px
    );
}
.package-visual span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  font-size: 37px;
  box-shadow: 0 9px 25px rgba(117, 17, 37, 0.1);
}
.package-visual b {
  position: absolute;
  top: 46%;
  right: 50%;
  transform: translate(50%, -50%);
  color: var(--green);
  font-size: 38px;
}
.package-visual small {
  position: absolute;
  top: 58%;
  right: 50%;
  transform: translateX(50%);
  font-size: 9px;
}
.package-details {
  padding: 65px 30px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.package-details > span {
  color: var(--green);
  font-size: 23px;
  font-weight: 900;
}
.package-details p {
  color: var(--muted);
  font-size: 11px;
}
.package-details div {
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  border-top: 1px solid #f0dfe3;
}
.package-details strong {
  color: var(--orange-dark);
  font-size: 22px;
}
.package-details small {
  font-size: 10px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  align-items: center;
}
.story-media {
  position: relative;
  padding: 25px 0 25px 25px;
}
.story-media::before {
  content: "";
  position: absolute;
  inset: 0 55px 0 0;
  border-radius: 180px 180px 18px 18px;
  background: #f6dce1;
}
.story-media img {
  width: 100%;
  height: 570px;
  position: relative;
  object-fit: cover;
  object-position: 28% center;
  border-radius: 180px 180px 18px 18px;
}
.experience-badge {
  position: absolute;
  left: -25px;
  bottom: 70px;
  width: 135px;
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 8px solid var(--paper);
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  box-shadow: var(--shadow);
}
.experience-badge b {
  font-size: 40px;
  line-height: 1;
}
.experience-badge span {
  font-size: 10px;
  line-height: 1.6;
}
.leaf-doodle {
  position: absolute;
  top: 5px;
  left: -15px;
  color: var(--orange);
  font-size: 45px;
}
.story-content > p {
  color: var(--muted);
  font-size: 13px;
}
.story-stats {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}
.story-stats div {
  padding: 18px 4px;
  display: flex;
  flex-direction: column;
}
.story-stats b {
  color: var(--green);
  font-size: 22px;
}
.story-stats span {
  color: var(--muted);
  font-size: 9px;
}
.text-link {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  border-bottom: 1px solid #e9a4b0;
  padding-bottom: 5px;
}

.reviews-section {
  background: var(--cream);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: center;
}
.review-card {
  padding: 30px;
  border: 1px solid #efdde1;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
}
.review-card.featured {
  padding-block: 42px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}
.quote {
  height: 28px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 55px;
  line-height: 1;
}
.stars {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 2px;
}
.review-card > p {
  min-height: 100px;
  color: #654a50;
  font-size: 12px;
  line-height: 2;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.reviewer > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #b34b5d;
  font-weight: 800;
}
.reviewer div {
  display: flex;
  flex-direction: column;
}
.reviewer b {
  font-size: 11px;
}
.reviewer small {
  color: var(--muted);
  font-size: 9px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}
.faq-grid > div:first-child > p {
  max-width: 340px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 12px;
}
.accordion-item {
  border-bottom: 1px solid var(--line);
}
.accordion-item button {
  width: 100%;
  padding: 21px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: right;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
}
.accordion-item button b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--green);
  background: #fbe9ec;
}
.accordion-item > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s;
}
.accordion-item > div p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.accordion-item.open > div {
  grid-template-rows: 1fr;
}
.accordion-item.open > div p {
  padding: 0 0 20px;
}

.newsletter {
  padding: 50px 0;
  background: #ffe9ed;
}
.newsletter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.newsletter-inner > div > span {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
}
.newsletter h2 {
  font-size: 25px;
  margin-top: 3px;
}
.newsletter form {
  width: min(470px, 100%);
  display: flex;
  padding: 5px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(117, 17, 37, 0.08);
}
.newsletter input {
  width: 100%;
  padding: 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 12px;
}
.newsletter .btn {
  flex-shrink: 0;
}

footer {
  padding: 70px 0 20px;
  color: #fff;
  background: #690d1c;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
}
.light-brand small {
  color: #efc8cf;
}
.light-brand .brand-mark {
  color: var(--green);
  background: #fff;
}
.footer-brand > p {
  max-width: 280px;
  color: #efc8cf;
  font-size: 11px;
}
.socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}
.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
.footer-grid h3 {
  margin: 0 0 12px;
  font-size: 13px;
}
.footer-grid > div:not(:first-child) a,
.footer-grid > div:not(:first-child) p,
.footer-grid > div:not(:first-child) small {
  margin: 0;
  color: #efc8cf;
  font-size: 10px;
}
.footer-grid a:hover {
  color: #fff !important;
}
.contact-info a:first-of-type {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 800;
}
.footer-bottom {
  margin-top: 55px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: #d99aa6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 9px;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom div {
  display: flex;
  gap: 20px;
}

.cart-drawer,
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}
.cart-drawer.open,
.modal.open {
  pointer-events: auto;
  visibility: visible;
}
.drawer-backdrop,
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(55, 4, 13, 0.52);
  opacity: 0;
  transition: 0.3s;
  backdrop-filter: blur(2px);
}
.cart-drawer.open .drawer-backdrop,
.modal.open .modal-backdrop {
  opacity: 1;
}
.cart-drawer aside {
  width: min(430px, 92vw);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  transform: translateX(-105%);
  transition: 0.35s ease;
}
.cart-drawer.open aside {
  transform: translateX(0);
}
.drawer-head {
  padding: 23px 25px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
}
.drawer-head div {
  display: flex;
  flex-direction: column;
}
.drawer-head span {
  font-weight: 900;
}
.drawer-head small {
  color: var(--muted);
  font-size: 10px;
}
.drawer-close,
.modal-close {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 28px;
  line-height: 1;
}
.cart-items {
  padding: 8px 24px;
  overflow-y: auto;
}
.cart-item {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.cart-item img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 10px;
}
.cart-item-info {
  display: flex;
  flex-direction: column;
}
.cart-item-info b {
  font-size: 12px;
}
.cart-item-info small {
  color: var(--muted);
  font-size: 9px;
}
.qty-control {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-control button {
  width: 23px;
  height: 23px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  line-height: 1;
}
.qty-control span {
  min-width: 12px;
  text-align: center;
  font-size: 10px;
}
.remove-item {
  border: 0;
  background: transparent;
  color: #b25d5d;
  font-size: 10px;
}
.cart-empty {
  margin: auto;
  padding: 30px;
  text-align: center;
}
.cart-empty > span {
  font-size: 48px;
}
.cart-empty h3 {
  margin-bottom: 5px;
}
.cart-empty p {
  margin-top: 0;
  color: var(--muted);
  font-size: 11px;
}
.cart-summary {
  margin-top: auto;
  padding: 20px 25px;
  background: var(--cream);
}
.cart-summary > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 11px;
}
.cart-total {
  margin-top: 13px;
  padding-top: 14px;
  border-top: 1px solid #ebcfd5;
  font-size: 13px !important;
}
.checkout-btn,
.full-btn {
  width: 100%;
  margin-top: 12px;
}
.modal {
  display: grid;
  place-items: center;
}
.modal-card {
  width: min(650px, calc(100% - 30px));
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  padding: 35px;
  border-radius: 18px;
  background: #fff;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: 0.3s;
}
.modal.open .modal-card {
  opacity: 1;
  transform: none;
}
.modal-close {
  position: absolute;
  top: 20px;
  left: 20px;
}
.modal-card h2 {
  margin: 5px 0 25px;
  color: var(--green);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.modal-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 13px;
  color: #654a50;
  font-size: 11px;
  font-weight: 700;
}
.modal-card input,
.modal-card textarea,
.modal-card select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  background: #fff;
  font-size: 12px;
  resize: vertical;
}
.modal-card input:focus,
.modal-card textarea:focus,
.modal-card select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(227, 38, 63, 0.1);
}
.toast {
  position: fixed;
  z-index: 150;
  right: 50%;
  bottom: 30px;
  transform: translate(50%, 120px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  color: #fff;
  background: var(--green);
  box-shadow: var(--shadow);
  transition: 0.3s;
}
.toast.show {
  transform: translate(50%, 0);
}
.toast span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: #fff;
  font-size: 11px;
}
.toast p {
  margin: 0;
  font-size: 11px;
}
.back-to-top {
  position: fixed;
  z-index: 40;
  left: 25px;
  bottom: 25px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 8px 20px rgba(227, 38, 63, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.25s;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

@media (max-width: 1000px) {
  .main-nav {
    position: fixed;
    top: 114px;
    right: 0;
    left: 0;
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-150%);
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
  }
  .main-nav.open {
    transform: none;
    opacity: 1;
  }
  .main-nav a {
    padding: 12px 0;
  }
  .menu-toggle {
    display: block;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-card {
    display: none;
  }
  .occasion-grid {
    gap: 40px;
  }
  .package-card {
    grid-template-columns: 1fr;
  }
  .package-visual {
    min-height: 250px;
  }
  .package-details {
    padding: 25px;
  }
  .story-grid {
    gap: 45px;
  }
  .footer-grid {
    grid-template-columns: 1.3fr repeat(2, 1fr);
  }
  .contact-info {
    grid-column: 2 / 4;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 600px);
  }
  .announcement {
    justify-content: center;
  }
  .announcement span {
    display: none;
  }
  .nav-wrap {
    height: 68px;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .brand strong {
    font-size: 18px;
  }
  .main-nav {
    top: 102px;
  }
  .icon-btn {
    display: none;
  }
  .cart-button span {
    display: none;
  }
  .cart-button {
    min-width: 43px;
    padding: 0 9px;
  }
  .hero {
    min-height: 650px;
    align-items: flex-end;
  }
  .hero-image {
    background-position: 34% center;
  }
  .hero-image::after {
    background: linear-gradient(
      0deg,
      #fff9fa 10%,
      rgba(255, 249, 250, 0.92) 43%,
      rgba(255, 249, 250, 0.12) 80%
    );
  }
  .hero-content {
    padding-bottom: 65px;
    text-align: center;
  }
  .hero-content > * {
    margin-inline: auto;
  }
  .hero h1 {
    margin-block: 10px;
    font-size: 46px;
    letter-spacing: -2px;
  }
  .hero-content > p {
    font-size: 14px;
  }
  .hero-actions {
    justify-content: center;
    margin-top: 22px;
  }
  .hero-trust,
  .scroll-hint {
    display: none;
  }
  .feature-strip .container {
    padding: 18px 0;
    grid-template-columns: 1fr 1fr;
    gap: 18px 0;
  }
  .feature-strip article {
    justify-content: flex-start;
    border: 0;
  }
  .feature-strip article > span {
    font-size: 20px;
  }
  .section {
    padding: 75px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading > p {
    margin-top: 15px;
  }
  .section-heading h2,
  .story-content h2,
  .faq-grid h2 {
    font-size: 34px;
  }
  .products-grid {
    gap: 12px;
  }
  .product-image {
    height: 160px;
  }
  .product-body {
    padding: 13px;
  }
  .product-body h3 {
    font-size: 14px;
  }
  .product-body > p {
    display: none;
  }
  .product-meta span:last-child {
    display: none;
  }
  .occasion-grid,
  .story-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .occasion-grid {
    gap: 45px;
  }
  .occasion-content {
    text-align: center;
  }
  .occasion-content .eyebrow {
    justify-content: center;
  }
  .occasion-content > p {
    margin-inline: auto;
  }
  .guest-picker {
    justify-content: center;
  }
  .package-card {
    width: min(100%, 500px);
    margin-inline: auto;
  }
  .story-grid {
    gap: 55px;
  }
  .story-media {
    width: min(90%, 440px);
    margin: auto;
  }
  .story-media img {
    height: 450px;
  }
  .experience-badge {
    left: -20px;
    width: 110px;
    height: 110px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-card.featured {
    transform: none;
  }
  .review-card > p {
    min-height: auto;
  }
  .faq-grid {
    gap: 35px;
  }
  .newsletter-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    text-align: center;
  }
  .newsletter form {
    margin-inline: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .contact-info {
    grid-column: 1 / -1;
  }
}

@media (max-width: 470px) {
  .hero h1 {
    font-size: 39px;
  }
  .hero-actions {
    gap: 14px;
  }
  .play-link {
    font-size: 11px;
  }
  .play-link i {
    width: 38px;
    height: 38px;
  }
  .btn {
    min-height: 46px;
    padding-inline: 17px;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-image {
    height: 135px;
  }
  .product-body h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .product-price b {
    font-size: 11px;
  }
  .add-btn {
    width: 34px;
    height: 34px;
  }
  .guest-picker {
    gap: 6px;
  }
  .guest-option {
    width: 58px;
  }
  .package-visual span {
    width: 62px;
    height: 62px;
    font-size: 29px;
  }
  .newsletter form {
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    gap: 8px;
  }
  .newsletter input {
    height: 48px;
    border-radius: 9px;
    background: #fff;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .modal-card {
    padding: 28px 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
