/* ═══════════════════════════════════════════════════════════
   RESTAURANT ADD-ON PAGE — restaurant-package.css
   ═══════════════════════════════════════════════════════════ */

/* ── Keyframes ── */
@keyframes restFloat1{0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(30px,-40px) scale(1.08)}}
@keyframes restFloat2{0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(-25px,35px) scale(.94)}}
@keyframes restFloat3{0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(40px,20px) scale(1.05)}}
@keyframes restShimmer{0%{transform:translateX(-100%)}100%{transform:translateX(200%)}}
@keyframes restCardShimmer{0%{left:-100%}100%{left:200%}}
@keyframes restStarTwinkle{0%,100%{opacity:.35}50%{opacity:.85}}
@keyframes restFloat{0%,100%{transform:translateY(0) rotate(0deg)}50%{transform:translateY(-14px) rotate(1deg)}}
@keyframes restFloatReverse{0%,100%{transform:translateY(0) rotate(0deg)}50%{transform:translateY(10px) rotate(-1deg)}}
@keyframes restCtaShimmer{0%{background-position:-200% 0}100%{background-position:200% 0}}
@keyframes restCtaGlowPulse{0%,100%{box-shadow:0 0 20px rgba(59,130,246,.15)}50%{box-shadow:0 0 40px rgba(59,130,246,.3),0 0 80px rgba(59,130,246,.1)}}
@keyframes restGentlePulse{0%,100%{box-shadow:0 20px 60px rgba(10,31,63,.14),0 4px 16px rgba(29,92,181,.08)}50%{box-shadow:0 24px 70px rgba(10,31,63,.18),0 6px 20px rgba(29,92,181,.12)}}

/* ── 1. HERO ── */
.rest-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 7rem);
  background: linear-gradient(135deg, #f8faff 0%, #eef4ff 40%, #f0f4fb 100%);
}
.rest-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.rest-hero__orb--1 {
  width: 500px; height: 500px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(29,92,181,.18), transparent 70%);
  animation: restFloat1 18s ease-in-out infinite;
}
.rest-hero__orb--2 {
  width: 350px; height: 350px;
  bottom: -60px; left: -40px;
  background: radial-gradient(circle, rgba(59,130,246,.15), transparent 70%);
  animation: restFloat2 22s ease-in-out infinite;
}
.rest-hero__orb--3 {
  width: 280px; height: 280px;
  top: 40%; left: 50%;
  background: radial-gradient(circle, rgba(29,92,181,.1), transparent 70%);
  animation: restFloat3 20s ease-in-out infinite;
}
.rest-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
}
.rest-hero__content { position: relative; z-index: 2; }
.rest-hero__eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #1D5CB5;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(29,92,181,.08), rgba(59,130,246,.06));
  padding: .35rem .9rem;
  border-radius: 20px;
  border: 1px solid rgba(29,92,181,.12);
}
.rest-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.12;
  color: #0A1F3F;
  margin-bottom: 1.2rem;
}
.rest-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, #1D5CB5, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rest-hero__subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #3a4a5e;
  max-width: 520px;
  margin-bottom: 1.2rem;
}
/* Hero checklist */
.rest-hero__checks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
}
.rest-hero__checks li {
  position: relative;
  padding-left: 1.6rem;
  font-size: .92rem;
  color: #3a4a5e;
  margin-bottom: .4rem;
  line-height: 1.5;
}
.rest-hero__checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1D5CB5;
  font-weight: 700;
}
.rest-hero__price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #0A1F3F;
  margin-bottom: 1.5rem;
}
.rest-hero__price strong {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #1D5CB5, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rest-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}
.rest-hero__note {
  font-size: .82rem;
  color: #6882a0;
  margin-top: .8rem;
}
.rest-hero__note a {
  color: #1D5CB5;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.rest-hero__visual {
  position: relative;
  z-index: 1;
}
.rest-hero__img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(10,31,63,.14), 0 4px 16px rgba(29,92,181,.08);
  transition: transform .6s cubic-bezier(.16,1,.3,1), box-shadow .6s ease;
  animation: restGentlePulse 6s ease-in-out infinite;
}
.rest-hero__visual:hover .rest-hero__img {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 28px 80px rgba(10,31,63,.18), 0 8px 24px rgba(29,92,181,.12);
}

/* ── SHARED SECTION HEADER ── */
.rest-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.rest-section-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #1D5CB5;
  margin-bottom: .75rem;
}
.rest-section-eyebrow--light { color: rgba(255,255,255,.7); }
.rest-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  color: #0A1F3F;
  margin-bottom: .8rem;
}
.rest-section-title em {
  font-style: normal;
  background: linear-gradient(135deg, #1D5CB5, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rest-section-title--light { color: #fff; }
.rest-section-title--light em {
  background: linear-gradient(135deg, #60a5fa, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rest-section-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5a6a7e;
}

/* ── 2. TABLE BOOKING SYSTEM ── */
.rest-booking {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #fff;
}
.rest-booking__block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}
.rest-booking__block:nth-child(2){--reveal-delay:0ms}
.rest-booking__block:nth-child(3){--reveal-delay:80ms}
.rest-booking__block:nth-child(4){--reveal-delay:80ms}
.rest-booking__block:nth-child(5){--reveal-delay:80ms}
.rest-booking__block:last-child { margin-bottom: 0; }
.rest-booking__block--reverse {
  grid-template-columns: 1.2fr 1fr;
}
.rest-booking__block--reverse .rest-booking__text { order: 2; }
.rest-booking__block--reverse .rest-booking__img-wrap { order: 1; }
.rest-booking__icon-wrap {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef4ff, #dbeafe);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease;
}
.rest-booking__block:hover .rest-booking__icon-wrap {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 20px rgba(29,92,181,.15);
}
.rest-booking__icon-wrap svg {
  width: 24px; height: 24px;
  color: #1D5CB5;
}
.rest-booking__text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #0A1F3F;
  margin-bottom: .7rem;
  line-height: 1.2;
}
.rest-booking__text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5a6e;
  margin-bottom: 1.2rem;
}
.rest-booking__features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rest-booking__features li {
  position: relative;
  padding-left: 1.6rem;
  font-size: .92rem;
  color: #3a4a5e;
  margin-bottom: .55rem;
  line-height: 1.5;
}
.rest-booking__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1D5CB5, #3b82f6);
}
.rest-booking__img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(10,31,63,.12), 0 2px 12px rgba(29,92,181,.06);
  transition: transform .6s cubic-bezier(.16,1,.3,1), box-shadow .6s ease;
}
.rest-booking__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid rgba(29,92,181,.08);
  pointer-events: none;
}
.rest-booking__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.rest-booking__img-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(10,31,63,.16), 0 4px 16px rgba(29,92,181,.1);
}
.rest-booking__img-wrap:hover img {
  transform: scale(1.02);
}
/* Hover overlay image (reveals on hover) */
.rest-booking__hover-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity .5s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
  border-radius: inherit;
  overflow: hidden;
}
.rest-booking__hover-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rest-booking__img-wrap:hover .rest-booking__hover-overlay {
  opacity: 1;
}

/* ── 3. DYNAMIC MENU ── */
.rest-menu {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(135deg, #f8faff 0%, #eef4ff 50%, #f5f8ff 100%);
}
.rest-menu__bg-img {
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.rest-menu__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: .15;
}
.rest-menu__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.rest-menu__text {
  padding-top: 1rem;
}
.rest-menu__text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5a6e;
  margin-bottom: 1.5rem;
  max-width: 480px;
}
.rest-menu__highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.rest-menu__highlights li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .95rem;
  color: #3a4a5e;
  margin-bottom: .75rem;
}
.rest-menu__highlights svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: #1D5CB5;
}

/* Carousel area */
.rest-menu__carousel {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 50px rgba(10,31,63,.1), 0 2px 12px rgba(29,92,181,.05);
  border: 1px solid rgba(29,92,181,.08);
  overflow: hidden;
  transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s ease;
}
.rest-menu__carousel:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(10,31,63,.14), 0 4px 16px rgba(29,92,181,.08);
}
.rest-menu__steps {
  display: flex;
  border-bottom: 1px solid #eef2f7;
  background: #fafcff;
}
.rest-menu__step {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .85rem .5rem;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  color: #8896a8;
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  cursor: pointer;
  transition: color .3s, border-color .3s;
  white-space: nowrap;
}
.rest-menu__step--active {
  color: #1D5CB5;
  border-bottom-color: #1D5CB5;
  font-weight: 600;
}
.rest-menu__step-num {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 700;
  background: #e8eef6;
  color: #6882a0;
  transition: background .3s, color .3s;
}
.rest-menu__step--active .rest-menu__step-num {
  background: #1D5CB5;
  color: #fff;
}
.rest-menu__viewport {
  position: relative;
  aspect-ratio: 1188 / 653;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem 1.5rem 1.5rem;
  overflow: hidden;
}
.rest-menu__card {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
}
.rest-menu__card--active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
  left: auto;
  right: auto;
  top: auto;
}
.rest-menu__card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(10,31,63,.1);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.rest-menu__card--active img:hover {
  transform: scale(1.02);
}

/* Nav dots and arrows */
.rest-menu__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: .8rem 1rem 1.2rem;
  border-top: 1px solid #eef2f7;
}
.rest-menu__dots {
  display: flex;
  gap: .4rem;
}
.rest-menu__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #d0d9e6;
  transition: background .3s, transform .3s;
}
.rest-menu__dot--active {
  background: #1D5CB5;
  transform: scale(1.25);
}
.rest-menu__arrow {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #d0d9e6;
  border-radius: 50%;
  background: #fff;
  color: #6882a0;
  cursor: pointer;
  transition: border-color .3s, color .3s;
}
.rest-menu__arrow:hover {
  border-color: #1D5CB5;
  color: #1D5CB5;
}
.rest-menu__arrow svg {
  width: 16px; height: 16px;
}

/* ── 4. SIMPLE PROCESS ── */
.rest-process {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #fff;
}
.rest-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.rest-process__card {
  background: #fafcff;
  border: 1px solid rgba(29,92,181,.08);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s ease, border-color .4s ease;
}
.rest-process__card:nth-child(1){--reveal-delay:0ms}
.rest-process__card:nth-child(2){--reveal-delay:100ms}
.rest-process__card:nth-child(3){--reveal-delay:200ms}
.rest-process__card:nth-child(4){--reveal-delay:300ms}
.rest-process__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(10,31,63,.12), 0 4px 16px rgba(29,92,181,.08);
  border-color: rgba(29,92,181,.18);
}
.rest-process__img-wrap {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.rest-process__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.rest-process__card:hover .rest-process__img-wrap img {
  transform: scale(1.05);
}
.rest-process__num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .08em;
  color: #1D5CB5;
  padding: 1.2rem 1.3rem 0;
}
.rest-process__card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #0A1F3F;
  padding: .4rem 1.3rem 0;
  line-height: 1.2;
}
.rest-process__card p {
  font-size: .88rem;
  line-height: 1.6;
  color: #5a6a7e;
  padding: .4rem 1.3rem 1.3rem;
}

/* ── 5. PRICING ── */
.rest-pricing {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.rest-pricing--starry {
  background:
    radial-gradient(92% 100% at 10% 10%, rgba(52,121,255,.24) 0%, rgba(10,24,59,0) 60%),
    radial-gradient(90% 120% at 90% 86%, rgba(25,92,255,.2) 0%, rgba(10,24,59,0) 58%),
    linear-gradient(145deg, #030916 0%, #06112a 36%, #08193d 62%, #030914 100%);
  border-top: 1px solid rgba(115,167,255,.12);
  border-bottom: 1px solid rgba(115,167,255,.12);
}
.rest-pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 30% 50%, rgba(29,92,181,.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 70% 40%, rgba(59,130,246,.1) 0%, transparent 55%);
  pointer-events: none;
}
/* Starry dots layer */
.rest-pricing__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 15% 25%, rgba(180,210,255,.5) 50%, transparent 100%),
    radial-gradient(1px 1px at 38% 12%, rgba(180,210,255,.35) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 68%, rgba(180,210,255,.45) 50%, transparent 100%),
    radial-gradient(1px 1px at 72% 35%, rgba(180,210,255,.3) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 88% 78%, rgba(180,210,255,.5) 50%, transparent 100%),
    radial-gradient(1px 1px at 25% 85%, rgba(180,210,255,.35) 50%, transparent 100%),
    radial-gradient(1px 1px at 62% 15%, rgba(180,210,255,.3) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 8% 55%, rgba(180,210,255,.4) 50%, transparent 100%),
    radial-gradient(1px 1px at 45% 92%, rgba(180,210,255,.35) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 92% 48%, rgba(180,210,255,.45) 50%, transparent 100%);
  animation: restStarTwinkle 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.rest-pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 820px;
  margin: 0 auto;
}
.rest-pricing__card {
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(111,168,255,.15);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease, border-color .45s ease;
}
.rest-pricing__card:hover {
  transform: translateY(-6px);
  border-color: rgba(111,168,255,.35);
  box-shadow: 0 24px 60px rgba(0,0,0,.3), 0 0 40px rgba(29,92,181,.1);
}
/* Shimmer sweep on hover */
.rest-pricing__shimmer {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.08) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transition: left 0s;
}
.rest-pricing__card:hover .rest-pricing__shimmer {
  animation: restCardShimmer 1.2s ease-out forwards;
}
/* Top border shimmer line */
.rest-pricing__card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111,168,255,.5), transparent);
  animation: restCardShimmer 5s ease-in-out infinite;
  pointer-events: none;
}
.rest-pricing__card--featured {
  background: linear-gradient(145deg, rgba(29,92,181,.2), rgba(59,130,246,.08));
  border-color: rgba(59,130,246,.35);
  box-shadow: 0 8px 32px rgba(29,92,181,.2);
}
.rest-pricing__card--featured:hover {
  border-color: rgba(59,130,246,.5);
  box-shadow: 0 28px 70px rgba(0,0,0,.35), 0 0 50px rgba(29,92,181,.15);
}
.rest-pricing__badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
  padding: .3rem .8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.rest-pricing__badge--featured {
  color: #93c5fd;
  background: rgba(59,130,246,.15);
}
.rest-pricing__name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: .4rem;
}
.rest-pricing__desc {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.rest-pricing__price {
  margin-bottom: .3rem;
}
.rest-pricing__amount {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: #fff;
}
.rest-pricing__period {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  margin-left: .3rem;
}
.rest-pricing__monthly {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.rest-pricing__monthly-label {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .15rem;
}
.rest-pricing__monthly-amount {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: rgba(255,255,255,.7);
}
.rest-pricing__monthly-period {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.rest-pricing__monthly--total .rest-pricing__monthly-amount {
  color: #93c5fd;
  font-size: 1.6rem;
}
.rest-pricing__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
}
.rest-pricing__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  margin-bottom: .55rem;
  line-height: 1.45;
}
.rest-pricing__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-weight: 700;
  font-size: .8rem;
}
.rest-pricing__card .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.rest-pricing__card .btn-outline {
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.2);
}
.rest-pricing__card .btn-outline:hover {
  color: #fff;
  border-color: rgba(255,255,255,.5);
}

/* ── 7. FINAL CTA (Video + Glass Card) ── */
.rest-final-cta {
  position: relative;
  background: #000;
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
  isolation: isolate;
}
.rest-final-cta__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .55;
  filter: brightness(.7) saturate(1.2);
  pointer-events: none;
}
.rest-final-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(2,6,16,.75) 0%,
      rgba(7,19,51,.55) 30%,
      rgba(10,31,74,.5) 50%,
      rgba(7,19,51,.55) 70%,
      rgba(2,6,16,.8) 100%),
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(29,92,181,.15) 0%, transparent 70%);
  pointer-events: none;
}
.rest-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 70% at 30% 50%, rgba(29,92,181,.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 70% 40%, rgba(59,130,246,.12) 0%, transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(29,92,181,.08) 0%, transparent 40%);
  pointer-events: none;
}
.rest-final-cta::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(111,168,255,.3) 50%, transparent 90%);
  z-index: 2;
}
/* Floating orbs */
.rest-final-cta__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  filter: blur(60px);
}
.rest-final-cta__orb--1 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(29,92,181,.2) 0%, transparent 70%);
  top: -80px; left: -60px;
  animation: restFloat 12s ease-in-out infinite;
}
.rest-final-cta__orb--2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(59,130,246,.15) 0%, transparent 70%);
  bottom: -60px; right: -60px;
  animation: restFloatReverse 14s ease-in-out infinite;
}
.rest-final-cta .container {
  position: relative;
  z-index: 3;
}
/* Glass card */
.rest-final-cta__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding: clamp(3rem, 5vw, 4.5rem) clamp(2rem, 4vw, 4rem);
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid rgba(111,168,255,.15);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: border-color .5s ease, box-shadow .5s ease;
}
.rest-final-cta__inner:hover {
  border-color: rgba(111,168,255,.3);
  box-shadow: 0 24px 72px rgba(0,0,0,.25), 0 0 60px rgba(29,92,181,.12);
}
.rest-final-cta__glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}
/* Shimmer border lines */
.rest-final-cta__inner::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111,168,255,.5), transparent);
  animation: restCtaShimmer 5s ease-in-out infinite;
}
.rest-final-cta__inner::after {
  content: '';
  position: absolute;
  bottom: 0; right: -100%;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111,168,255,.3), transparent);
  animation: restCtaShimmer 5s ease-in-out infinite 2.5s;
}
/* Badge */
.rest-final-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, rgba(29,92,181,.3), rgba(59,130,246,.15));
  border: 1px solid rgba(111,168,255,.25);
  border-radius: 999px;
  padding: .4rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #93bbf5;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.rest-final-cta__badge svg {
  width: 16px; height: 16px;
  color: #6da3f5;
}
.rest-final-cta__inner h2 {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4.2vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.rest-final-cta__inner h2 em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  background: linear-gradient(135deg, #93bbf5 0%, #6da3f5 50%, #4c8bf5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: .08em;
}
.rest-final-cta__desc {
  color: rgba(255,255,255,.55);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin: 0 0 .4rem;
  line-height: 1.7;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.rest-final-cta__sub {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  color: rgba(255,255,255,.3);
  margin-top: .3rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.rest-final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.rest-final-cta__primary {
  box-shadow: 0 8px 30px rgba(29,92,181,.45), 0 0 60px rgba(59,130,246,.15);
  position: relative;
  overflow: hidden;
  animation: restCtaGlowPulse 4s ease-in-out infinite;
}
.rest-final-cta__primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transition: left .6s ease;
}
.rest-final-cta__primary:hover::after {
  left: 100%;
}
.rest-final-cta__outline {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all .4s cubic-bezier(.16,1,.3,1);
}
.rest-final-cta__outline:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,.2);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .rest-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .rest-hero__subtitle { margin-left: auto; margin-right: auto; }
  .rest-hero__actions { justify-content: center; }
  .rest-booking__block,
  .rest-booking__block--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .rest-booking__block--reverse .rest-booking__text,
  .rest-booking__block--reverse .rest-booking__img-wrap { order: unset; }
  .rest-menu__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .rest-menu__bg-img { display: none; }
  .rest-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rest-pricing__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
  .rest-final-cta__orb { display: none; }
}
@media (max-width: 640px) {
  .rest-process__grid {
    grid-template-columns: 1fr;
  }
  .rest-menu__steps {
    flex-wrap: wrap;
  }
  .rest-menu__step {
    flex: 0 0 50%;
    font-size: .7rem;
    padding: .7rem .3rem;
  }
  .rest-hero__title {
    font-size: 2rem;
  }
  .rest-final-cta__inner {
    padding: 2rem 1.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .rest-pricing__stars,
  .rest-final-cta__orb,
  .rest-pricing__shimmer {
    animation: none;
  }
  .rest-final-cta__video {
    display: none;
  }
}
