/* CSS VARIABLES  */
:root {
  --primary-color: #EC205C;
  --border-light: #f0e8ea;
  --font-heading: "Marcellus", serif;
  --font-body: "Inter", sans-serif;
  --section-pad-y: 80px;
  --section-pad-x: 16px;
  --radius-card: 16px;
  --radius-btn: 6px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, .08);
  --shadow-btn: 0 4px 14px rgba(232, 52, 74, .35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: #444455;
  background: #fff;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  color: #111122;
  line-height: 1.2;
  font-weight: 700;
}

h2 em {
  font-style: normal;
}

h2 span {
  color: var(--primary-color);
}

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

img {
  max-width: 100%;
  display: block;
}
.primary-color{
  color: var(--primary-color);
}

/*  BUTTONS  */
.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: #fff;
  border-radius: var(--radius-btn);
  padding: 12px 28px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .3px;
  border: none;
  box-shadow: var(--shadow-btn);
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 52, 74, .42);
  color: #fff;
}

.btn-brand-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary-color);
  border: 1.5px solid var(--primary-color);
  border-radius: var(--radius-btn);
  padding: 11px 26px;
  font-weight: 600;
  font-size: 14px;
  transition: background .18s ease, color .18s ease;
}

.btn-brand-outline:hover {
  background: var(--primary-color);
  color: #fff;
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, .85);
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: var(--radius-btn);
  padding: 11px 24px;
  font-weight: 500;
  font-size: 13px;
  transition: border-color .18s ease, color .18s ease;
}

.btn-ghost-dark:hover {
  border-color: #fff;
  color: #fff;
}

/*  NAVBAR  */
.site-nav .navbar-toggler {
  border: 1.5px solid var(--border-light);
  border-radius: 6px;
  padding: 6px 10px;
  box-shadow: none !important;
  outline: none !important;
}

.site-nav .navbar-toggler:focus {
  box-shadow: none;
}

.site-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23444455' stroke-width='2.2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Nav links inside collapse */
.site-nav .navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  padding-top: 8px;
  padding-bottom: 8px;
  transition: color .15s;
}

.site-nav .navbar-nav .nav-link:hover,
.site-nav .navbar-nav .nav-link:focus {
  color: var(--brand-red);
}
.main-logo img{
  height: 52px;
  width: auto;
}

/* Mobile dropdown panel */
@media (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    background: #fff;
    border-top: 1px solid var(--border-light);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
    padding: 12px 20px 20px;
    margin-top: 10px;
  }

  .site-nav .navbar-nav .nav-link {
    border-bottom: 1px solid var(--border-light);
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-nav .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }

  .site-nav .nav-cta-mobile {
    display: block;
    margin-top: 16px;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .site-nav .nav-cta-mobile {
    display: none;
  }
}

/*  HERO  */
.hero-section {
  padding-top: 60px;
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
  background: #FFF7F9;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(232, 52, 74, .06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-img {
  display: flex;
  justify-content: flex-end;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.global-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 8px;
}

.hero-headline {
  font-size: clamp(46px, 6vw, 72px);
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-headline em {
  font-style: normal;
  color: var(--primary-color);
}

.hero-body {
  font-size: 16px;
  color: #333;
  max-width: 420px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid #f0e8ea;
}

.hero-stat-item strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #111122;
}

.hero-stat-item span {
  font-size: 12px;
  color: #333;
}

.hero-img-wrap {
  position: relative;
  text-align: center;
}

.hero-couple-img {
  width: 100%;
  max-width: 480px;
  border-radius: 24px 24px 0 0;
  object-fit: cover;
  height: 520px;
  margin: 0 auto;
}

.hero-phone-card {
  position: absolute;
  top: 40px;
  left: -20px;
  background: #fff;
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .14);
  width: 160px;
}

.hero-phone-card .card-label {
  font-size: 10px;
  color: #333;
  margin-bottom: 4px;
}

.hero-phone-card .card-value {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--primary-color);
}

.hero-rating-badge {
  position: absolute;
  top: 30px;
  right: 0;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .12);
  text-align: center;
}

.hero-rating-badge .rating-num {
  font-family: var(--font-heading);
  font-size: 24px;
  color: #111122;
}

.hero-rating-badge .stars {
  color: #f5a623;
  font-size: 12px;
}

.hero-rating-badge .rating-sub {
  font-size: 10px;
  color: #333;
}
.phone-frame-wrapper {
    position: absolute;
    max-width: 200px;
    left: 90px;
    bottom: 0;
}
.frame-img {
    position: absolute;
    z-index: 1;
    bottom: 0;
}
.phone-countdown-img {
    border-radius: 40px 40px 0 0;
    overflow: hidden;
}

/*  TRUST BAR  */
.trust-bar {
  background: #fff5f6;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid #f0e8ea;
  border-bottom: 1px solid #f0e8ea;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #f0e8ea;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 15px;
}

.trust-stat-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #111122;
}

.trust-stat-text span {
  font-size: 11px;
  color: #333;
}
.language-strip {
  background: #fff;
  border-bottom: 1px solid #f0e8ea;
  padding-top: 16px;
  padding-bottom: 16px;
}
.language-strip .flag img {
    height: 16px;
    width: auto;
    border-radius: 2px;
}
.language-strip-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.language-strip-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  color: #333;
  text-transform: uppercase;
  white-space: nowrap;
  margin-right: 6px;
  flex-shrink: 0;
}
.language-strip-divider {
  width: 1px;
  height: 20px;
  background: #f0e8ea;
  flex-shrink: 0;
  margin-right: 6px;
}
.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff5f6;
  border: 1px solid #f0e8ea;
  border-radius: 50px;
  padding: 5px 14px 5px 8px;
  font-size: 13px;
  font-weight: 500;
  color: #111122;
  transition: border-color .18s, box-shadow .18s, transform .18s;
  cursor: default;
  white-space: nowrap;
}
.lang-pill:hover {
  border-color: #e8344a;
  box-shadow: 0 2px 10px rgba(232,52,74,.12);
  transform: translateY(-1px);
}
.lang-pill .flag {
  font-size: 18px;
  line-height: 1;
}
.lang-pill.coming-soon {
  background: #f7f7fa;
  border-style: dashed;
  color: #333;
  font-style: italic;
  font-size: 12px;
}
.lang-pill.coming-soon:hover {
  border-color: #333;
  box-shadow: none;
  transform: none;
}

/*  PILL SCROLLBAR  */
.pill-scroll-bar {
  background: #fff;
  border-bottom: 1px solid #f0e8ea;
  padding-top: 10px;
  padding-bottom: 10px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.pill-scroll-bar::-webkit-scrollbar {
  display: none;
}

.pill-scroll-bar span {
  display: inline-block;
  font-size: 13px;
  color: #333;
  padding: 6px 20px;
  border-right: 1px solid #f0e8ea;
  cursor: pointer;
  transition: color .15s;
}

.pill-scroll-bar span:hover {
  color: var(--primary-color);
}

.pill-scroll-bar span:last-child {
  border-right: none;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee {
  display: flex;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

/* Pause on hover */
.marquee-wrapper:hover .marquee {
  animation-play-state: paused;
}

.marquee span {
  white-space: nowrap;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* FEATURES SECTION */
.fs-wrap {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}


.fs-wrap::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, rgba(236, 32, 92, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.fs-wrap::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 32, 92, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}


.fs-header {
  position: relative;
  z-index: 1;
}

.ft-count {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
}

.ft-top-cap {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666
}

.ft-border {
  width: 1px;
  height: 48px;
  background: rgba(0, 0, 0, 0.07)
}

.fs-h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 60px);
  line-height: 1.1;
  color: #0a0a0a;
  margin-bottom: 20px;
}

.fs-h2 em {
  color: var(--primary-color);
}

.fs-sub {
  font-size: 16px;
  color: #666;
  max-width: 480px;
  line-height: 1.75;
}


.fs-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}


.fs-wrap .span-4 {
  grid-column: span 4;
}

.fs-wrap .span-5 {
  grid-column: span 5;
}

.fs-wrap .span-7 {
  grid-column: span 7;
}

.fs-wrap .span-6 {
  grid-column: span 6;
}

.fs-wrap .span-8 {
  grid-column: span 8;
}

.fs-wrap .span-7 {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.fs-wrap .span-7 .fc-brand,
.fs-wrap .fc-temp {
  flex: 1
}

.fs-wrap .fs-grid {
  margin-bottom: 22px
}

@media (max-width: 991px) {

  .fs-wrap .span-4,
  .fs-wrap .span-5,
  .fs-wrap .span-7,
  .fs-wrap .span-6,
  .fs-wrap .span-8 {
    grid-column: span 6;
  }
}

@media (max-width: 599px) {

  .fs-wrap .span-4,
  .fs-wrap .span-5,
  .fs-wrap .span-7,
  .fs-wrap .span-6,
  .fs-wrap .span-8 {
    grid-column: span 12;
  }
}


.fs-wrap .fc {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position: relative;
}

.fs-wrap .fc:hover {
  transform: translateY(-10px) rotate(-0.4deg);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.10), 0 4px 16px rgba(236, 32, 92, 0.12);
  border-color: rgba(236, 32, 92, 0.4);
}

/* ACCENT variant — dark card */
.fs-wrap .fc.fc-dark {
  background: #1a1a1a;
  border-color: transparent;
}

.fs-wrap .fc.fc-dark .fc-title {
  color: #fff;
}

.fs-wrap .fc.fc-dark .fc-desc {
  color: rgba(255, 255, 255, 0.6);
}

.fs-wrap .fc.fc-dark .fc-num {
  color: rgba(255, 255, 255, 0.15);
}

.fs-wrap .fc.fc-dark:hover {
  border-color: rgba(236, 32, 92, 0.5);
}


.fs-wrap .fc.fc-brand {
  background: var(--primary-color);
  border-color: transparent;
}

.fs-wrap .fc.fc-brand .fc-body {
  background: transparent;
}

.fs-wrap .fc.fc-brand .fc-title {
  color: #fff;
}

.fs-wrap .fc.fc-brand .fc-desc {
  color: rgba(255, 255, 255, 0.75);
}

.fs-wrap .fc.fc-brand .fc-num {
  color: rgba(255, 255, 255, 0.15);
}

.fs-wrap .fc.fc-brand:hover {
  box-shadow: 0 32px 64px rgba(236, 32, 92, 0.35);
}

.fs-wrap .fc-img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.fs-wrap .fc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}

.fs-wrap .fc:hover .fc-img img {
  transform: scale(1.07);
}

.fs-wrap .fc-img::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.fs-wrap .img-sm {
  height: 180px;
}

.fs-wrap .img-md {
  height: 220px;
}

.fs-wrap .img-lg {
  height: 280px;
}

.fs-wrap .img-xl {
  height: 340px;
}


.fs-wrap .fc-body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  position: relative;
}

.fs-wrap .fc-dark .fc-body {
  background: #1a1a1a;
}

.fs-wrap .fc-brand .fc-body {
  background: var(--primary-color);
}


.fs-wrap .fc-num {
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.fs-wrap .fc-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--primary-color);
  background: #fff0f5;
  border: 1px solid rgba(236, 32, 92, 0.2);
  border-radius: 50px;
  padding: 3px 12px;
  margin-bottom: 12px;
  width: fit-content;
}

.fs-wrap .fc-dark .fc-tag {
  background: rgba(236, 32, 92, 0.15);
  border-color: rgba(236, 32, 92, 0.3);
  color: #ff7aaa;
}

.fs-wrap .fc-brand .fc-tag {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.fs-wrap .fc-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.25;
  color: #0a0a0a;
  margin-bottom: 10px;
  transition: color .3s;
}

.fs-wrap .fc:not(.fc-dark):not(.fc-brand):hover .fc-title {
  color: var(--primary-color);
}

.fs-wrap .fc-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  flex: 1;
}

/* inline horizontal card layout */
.fs-wrap .fc-horiz {
  flex-direction: row;
}

.fs-wrap .fc-horiz .fc-img {
  width: 42%;
  flex-shrink: 0;
}

.fs-wrap .fc-horiz .fc-img img {
  height: 100%;
}

.fs-wrap .fc-horiz .fc-img::after {
  height: 100%;
  width: 60px;
  inset: 0 0 0 auto;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.1), transparent);
}

@media (max-width: 767px) {
  .fs-wrap .fc-horiz {
    flex-direction: column;
  }

  .fs-wrap .fc-horiz .fc-img {
    width: 100%;
    height: 200px;
  }
}

.fs-wrap .fs-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
  position: relative;
  z-index: 1;
}

.fs-wrap .fs-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.07);
}

.fs-wrap .fs-divider-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-color);
  opacity: .7;
  white-space: nowrap;
}

.fs-wrap .fs-cta {
  position: relative;
  z-index: 1;
}

.fs-wrap .btn-primary-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 40px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  transition: background .3s, transform .3s, box-shadow .3s;
  box-shadow: 0 8px 28px rgba(236, 32, 92, .35);
}

.fs-wrap .btn-primary-brand:hover {
  background: #b8153f;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(236, 32, 92, .45);
  color: #fff;
}

.fs-wrap .btn-arrow {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: transform .3s;
}

.fs-wrap .btn-primary-brand:hover .btn-arrow {
  transform: translateX(3px);
}

/* BENTO SHOWCASE SECTIONS  */
.showcase-section {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
}

.showcase-section.tinted {
  background: #fdf8f9;
}

.showcase-section.tinted-purple {
  background: #f4f1fb;
}

.showcase-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-color);
  background: rgba(232, 52, 74, .08);
  border-radius: 50px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.showcase-headline {
  font-size: clamp(28px, 3.5vw, 38px);
}

.showcase-body {
  color: #333;
  font-size: 15px;
  margin-top: 12px;
  margin-bottom: 24px;
}

.showcase-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #444455;
  margin-bottom: 10px;
}

.showcase-list li .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

.phone-mockup {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}

.phone-mockup img {
  width: 100%;
}

/* Countdown phone mockup */
.countdown-phone {
  background: linear-gradient(135deg, #fff5f7, #ffe8ed);
  border-radius: 28px;
  padding: 24px 18px;
  box-shadow: 0 20px 60px rgba(232, 52, 74, .15);
  max-width: 260px;
}

.countdown-phone .phone-header {
  background: var(--primary-color);
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
}

.countdown-phone .phone-header .names {
  font-family: var(--font-heading);
  font-size: 20px;
}

.countdown-phone .phone-header .days-num {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  margin: 8px 0 4px;
}

.countdown-phone .phone-header .days-label {
  font-size: 12px;
  opacity: .8;
}

/* Guest list mockup */
.guest-mockup-wrap {
  background: #fff5f6;
  border-radius: 24px;
  padding: 20px;
  max-width: 300px;
}

.guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f0e8ea;
  font-size: 13px;
}

.guest-row:last-child {
  border-bottom: none;
}

.guest-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb3bc, var(--primary-color));
  font-size: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.guest-status {
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 50px;
  font-weight: 600;
}

.status-confirmed {
  background: #e6f9f0;
  color: #18a46a;
}

.status-pending {
  background: #fff8e6;
  color: #d48a00;
}

.status-declined {
  background: #ffeaea;
  color: var(--primary-color);
}

/* Invitation card mockup */
.invitation-card-mockup {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .16);
  max-width: 220px;
  background: #1a0a0f;
}

.invitation-card-mockup .inv-header {
  height: 180px;
  background: linear-gradient(160deg, #2d1018 0%, #5a1c28 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  font-family: var(--font-heading);
  padding: 20px;
  text-align: center;
}

.invitation-card-mockup .inv-header .inv-names {
  font-size: 22px;
  color: #f7d5dc;
}

.invitation-card-mockup .inv-header .inv-date {
  font-size: 12px;
  color: rgba(247, 213, 220, .7);
  margin-top: 8px;
}

.invitation-card-mockup .inv-body {
  padding: 16px;
  background: #fff;
}

.invitation-card-mockup .inv-body p {
  font-size: 11px;
  color: #333;
  margin: 0;
  text-align: center;
}

/*Steps section    */
section.steps-section {
  background: #FFF7F9;
}

.step1 .steps-img-wrapper {
  background: #D6EFEB;
}

.step2 .steps-img-wrapper {
  background: #EFD6E6;
}

.step3 .steps-img-wrapper {
  background: #EFE7D6;
}

.steps-section .step1,
.steps-section .step2 {
  align-items: center;
  margin-bottom: 100px;
}

.steps-section .step3 {
  align-items: center;
}

section.steps-section {
  background: #FFF7F9;
  padding: 100px 0;
}

.steps-section .steps-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 15px;
}

.steps-section ul {
  padding-left: 0;
  margin-left: 0;
}

.steps-section ul li {
  list-style: none;
  position: relative;
  padding-left: 30px;
}

.steps-section ul li:before {
  position: absolute;
  left: 0;
  top: 11px;
  width: 20px;
  height: 2px;
  background: #000;
  content: " ";
  display: block;
}

.steps-section h3 {
  font-size: clamp(26px, 4vw, 38px);
}

.steps-section h3 span {
  display: block;
  color: var(--primary-color);
}

/* COUNTDOWN DESIGNS  */
.designs-section {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
  background: #fff;
}

.designs-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.designs-section-header h2 {
  font-size: clamp(30px, 4vw, 60px);
  max-width: 510px;
  line-height: 1.1;
}

.designs-section-header p {
  font-size: 14px;
  color: #333;
  max-width: 320px;
}

.design-card-grid {
  /*display: flex;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;*/
  padding-bottom: 8px;
}

.design-card-grid::-webkit-scrollbar {
  display: none;
}

.design-tile {
  flex-shrink: 0;
  width: 160px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s ease;
}

.design-tile:hover {
  transform: scale(1.03);
}

.design-tile .tile-bg {
  position: absolute;
  inset: 0;
}

.design-tile .tile-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.design-tile .tile-emoji {
  font-size: 28px;
  margin-bottom: 8px;
}

.design-tile .tile-num {
  font-family: var(--font-heading);
  font-size: 64px;
  line-height: 1;
}

.design-tile .tile-label {
  font-size: 11px;
  opacity: .7;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.design-tile .tile-name {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}

.theme-carousel .owl-nav button,
.testimonial-carousel .owl-nav button {
  position: absolute;
  width: 20px;
  height: 34px;
  background: rgba(255, 255, 255, .5) !important;
  margin: 0 !important;
  top: calc(50% - 15px);

}

.theme-carousel .owl-nav button span,
.testimonial-carousel .owl-nav button span {
  font-size: 20px;
}

.theme-carousel .owl-nav button.owl-next,
.testimonial-carousel .owl-nav button.owl-next {
  right: 0;
  border-radius: 5px 0 0 5px !important;
}

.theme-carousel .owl-nav button.owl-prev,
.testimonial-carousel .owl-nav button.owl-prev {
  left: 0;
  border-radius: 0 5px 5px 0 !important;
}

.theme-carousel .owl-nav button.owl-next:after,
.testimonial-carousel .owl-nav button.owl-next:after {
  content: "\f285";
  font-family: bootstrap-icons;
  width: 20px;
  height: 34px;
  display: block;
  line-height: 36px;
  color: #000;
  font-weight: 600;
}

.theme-carousel .owl-nav,
.testimonial-carousel .owl-nav {
  padding: 0 !important;
  margin: 0 !important;
}

.theme-carousel .owl-nav button.owl-prev:after,
.testimonial-carousel .owl-nav button.owl-prev:after {
  content: "\f284";
  font-family: bootstrap-icons;
  width: 20px;
  height: 34px;
  display: block;
  line-height: 36px;
  color: #000;
  font-weight: 600;
}

.theme-carousel .owl-nav button span,
.testimonial-carousel .owl-nav button span {
  display: none;
}


/*  TESTIMONIALS  */
.testimonials-section {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
  background: #FFF7F9;
}

.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.testimonials-header h2 {
  font-size: clamp(30px, 4vw, 60px);
  max-width: 380px;
  line-height: 1.1;
}

.testimonials-header p {
  font-size: 14px;
  color: #333;
  max-width: 300px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 28px 24px;
  height: 100%;
  border: 1px solid #f0e8ea;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 14px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 14px;
  color: #444455;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb3bc, var(--primary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}

.author-name {
  font-weight: 600;
  font-size: 14px;
}

.author-handle {
  font-size: 12px;
  color: #333;
}

/* FAQ  */
.faq-section {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
  background: #fff;
}

.faq-left h2 {
  font-size: clamp(30px, 4vw, 60px);
  line-height: 1.1;
  margin-bottom: 8px;
}

.faq-left p {
  font-size: 14px;
  color: #333;
  margin-bottom: 0;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #f0e8ea;
  border-radius: 0 !important;
}

.accordion-item:last-child {
  border-bottom: 0;
}

.accordion-button {
  font-size: 14px;
  font-weight: 500;
  color: #111122;
  background: transparent;
  padding-left: 0;
  padding-right: 0;
  box-shadow: none !important;
  font-family: var(--font-body);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background: transparent;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23000000' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: transform .2s;
  border: 1px solid #C2C2C2;
  border-radius: 15px;
  width: 22px;
  height: 21px;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23e8344a' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
  transform: none;
  border-color: #e8344a;
}

.accordion-body {
  font-size: 14px;
  color: #333;
  padding-left: 0;
}

.faq-cta-card {
  background: #0A0A0A;
  border-radius: 12px;
  padding: 36px 32px;
}

.faq-cta-card h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
}

.faq-cta-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 24px;
}

.faq-cta-card .contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  margin-top: 16px;
}

.faq-contact {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #BBBBBB;
  padding: 20px 32px;
  margin-top: 15px;
}

.faq-cta-card .contact-row a {
  color: #fff;
  text-decoration: underline;
}

/*  FINAL CTA  */
.final-cta {
  background: #141414;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

section.final-cta .container {
  background: #202020;
  padding-top: 30px;
  padding-bottom: 50px;
}

.final-cta h2 {
  font-size: clamp(36px, 5vw, 56px);
  color: #fff;
  margin-bottom: 16px;
}

.final-cta h2 em {
  color: var(--primary-color);
  font-style: unset;
}

.final-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, .6);
  max-width: 400px;
  margin: 0 auto 32px;
}

.final-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/*  FOOTER  */
.site-footer {
  background: #141414;
  padding-top: 56px;
  padding-bottom: 36px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 18px;
  color: #fff;
  margin-bottom: 12px;
}

.footer-logo img{
  height: 52px;
  width: auto;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  max-width: 200px;
  line-height: 1.6;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  transition: color .15s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
  transition: background .15s, color .15s;
}

.footer-social a:hover {
  background: var(--primary-color);
  color: #fff;
}
/* ── Cookie Banner ── */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -16px 48px rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  padding: 20px 24px;
  transform: translateY(0);
  animation: slideUp 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

#cookieBanner.hide {
  animation: slideDown 0.35s cubic-bezier(0.55, 0, 1, 0.45) both;
}

@keyframes slideDown {
  from { transform: translateY(0);    opacity: 1; }
  to   { transform: translateY(100%); opacity: 0; }
}

#cookieBanner .banner-title {
  font-size: 15px;
  font-weight: 600;
  color: #e8eaed;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#cookieBanner .banner-title .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #EC205C;
  flex-shrink: 0;
  box-shadow: 0 0 8px #EC205C;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

#cookieBanner .banner-text {
  font-size: 13px;
  color: #7a8494;
  line-height: 1.55;
  margin-bottom: 0;
}
#cookieBanner .banner-text strong{ color:#e8eaed }

#cookieBanner .banner-text a {
  color: #EC205C;
  text-decoration: none;
}

#cookieBanner .banner-text a:hover { text-decoration: underline; }

/* Buttons */
#cookieBanner .btn-accept-all, .cookie-modal .btn-accept-all{
  background: #EC205C;
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 6px;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(236,32,92,0.35);
}

#cookieBanner .btn-accept-all:hover, .cookie-modal .btn-accept-all:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #fff;
  box-shadow: 0 6px 24px rgba(236,32,92,0.35);
}

#cookieBanner .btn-reject-all, .cookie-modal .btn-reject-all {
  background: transparent;
  color: #7a8494;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}

#cookieBanner .btn-reject-all:hover, .cookie-modal .btn-reject-all:hover{
  border-color: rgba(255,255,255,0.28);
  color: #e8eaed;
  transform: translateY(-1px);
}

#cookieBanner .btn-customize {
  background: transparent;
  color: #7a8494;
  border: none;
  font-size: 14px;
  padding: 14px 12px;
  border-radius: 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  white-space: nowrap;
}

#cookieBanner .btn-customize:hover { color: #e8eaed; }

/* ── Customize Modal ── */
.cookie-modal .modal-content {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  color: #e8eaed;
}
div#customizeModal{
  z-index: 9992;
}

.cookie-modal .modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
}

.cookie-modal .modal-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px;
}

.cookie-modal .modal-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-body);
}

.cookie-modal .btn-close {
  filter: invert(1) brightness(0.6);
}

/* Toggle cards */
.cookie-modal .pref-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}
#customizeModal .modal-body{
  padding: 20px 24px;
}
.cookie-modal .pref-card:hover { border-color: rgba(255,255,255,0.15); }

.cookie-modal .pref-card-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cookie-modal .pref-card-desc {
  font-size: 13px;
  color: #7a8494;
  margin: 0;
  line-height: 1.5;
}

.cookie-modal .pref-badge {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: 500;
}

.cookie-modal .pref-badge.always {
  background: rgba(236,32,92,0.12);
  color: #EC205C;
}
.cookie-modal .form-check.form-switch{
  flex-shrink: 0;
}

/* Custom toggle switch */
.cookie-modal .form-check-input:checked {
  background-color: #EC205C;
  border-color: #EC205C;
}

.cookie-modal .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(236,32,92,0.25);
}

.cookie-modal .modal-top-p {
  font-size: 14px; 
  color:#7a8494; 
  margin-bottom:20px;
}
#switchNecessary{
  opacity:0.5; 
  cursor:not-allowed;
}

/* Toast */
#consentToast {
  background: #000;
  border: 1px solid rgba(255,255,255,0.08);
  color: #e8eaed;
  font-size: 14px;
}
.toast-container{
  z-index:11000;
}

/* ── Restored banner ── */
#restoredBar {
  display: none;
  position: fixed;
  bottom: 16px;
  right: 20px;
  z-index: 9998;
}

#restoredBar .btn-reopen {
  background: #000;
  border: 1px solid rgba(255,255,255,0.08);
  color: #7a8494;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

#restoredBar .btn-reopen:hover {
  color: #e8eaed;
  border-color: rgba(255,255,255,0.2);
}

/*  RESPONSIVE  */
@media (max-width: 1199.98px){
  .phone-frame-wrapper {
    left: -30px;
  }
  .phone-countdown-img img {
      max-width: calc(100% - -4px);
  }
}
@media (min-width: 992px) {
  .hero-rating-badge {
    right: -30px;
  }
}

@media (max-width: 640px) {
  .trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 50px;
  }

  .hero-couple-img {
    height: 380px;
  }

  .hero-phone-card {
    left: 0;
    top: 20px;
  }

  .hero-img {
    justify-content: center;
    margin-top: 15px;
  }

  section.steps-section {
    padding: 50px 0;
  }

  .steps-section .step1,
  .steps-section .step2 {
    margin-bottom: 40px
  }

  .steps-section .gy-5 {
    --bs-gutter-y: 1rem;
  }

  .step2 .col-lg-6:first-child {
    order: 2;
  }

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

  .hero-cta-row {
    justify-content: center;
  }

  p.hero-body {
    margin: 0 auto 15px;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-rating-badge {
    right: 20px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --section-pad-y: 56px;
  }

  .designs-section-header,
  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-img-wrap {
    margin-top: 48px;
  }

  .hero-section {
    padding-top: 40px;
  }

  .footer-links li {
    line-height: normal;
  }

  .footer-bottom {
    margin-top: 24px;
  }

  .fs-wrap {
    padding: 40px 0;
  }
}
@media (max-width: 640px){
    .phone-frame-wrapper {
        left: 20px;
    }
}

@media (max-width: 599px) {
  .testimonial-carousel .owl-item.active {
    margin-right: 0 !important;
  }

  .testimonial-carousel .owl-nav button.owl-next {
    right: -20px;
  }

  .testimonial-carousel .owl-nav button.owl-prev {
    left: -4px;
  }

  .testimonial-carousel .owl-nav button {
    top: 40%;
  }
}

@media (max-width: 478.98px) {
  .nav-logo {
    max-width: 160px;
  }

  .site-nav .btn-brand {
    padding: 8px 18px;
  }

  .hero-eyebrow {
    margin-bottom: 5px;
  }

  .site-nav {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .final-cta {
    padding-top: 40px;
    padding-bottom: 0;
  }
  .phone-frame-wrapper {
    max-width: 150px;
  }
  .hero-stats {
    gap: 15px;
  }
  .hero-stats .hero-stat-item {
      flex-basis: 43%;
  }
  .lang-pill{
      gap: 5px;
  }
  .language-strip .flag img {
      height: 12px;
      width: auto;
  }
}