@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&display=swap');

:root {
  --font-ivy: 'Bodoni Moda', serif;
}
/* ============ TOKENS ============ */
@font-face {
  font-family: "CoFo Raffine";
  src: url("../fonts/CoFo Raffine/CoFoRaffine-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Melody Southern";
  src: url("../fonts/melody_southern/MelodySouthern.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "D-DIN Condensed";
  src: url("../fonts/din/D-DINCondensed.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --maroon-950: #2D0A0E;
  --maroon-900: #2a070d;
  --maroon-800: #3b0c14;
  --maroon-700: #4d0f19;
  --maroon: #671F09;
  --gold-light: #000000;
  --cream: #fff;
  --cream-dim: #d9c9b3;
  --line: rgba(200, 166, 104, 0.35);

  --font-display: 'Playfair Display', serif;
  --font-script: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --font-raffine: 'CoFo Raffine', serif;
  --font-nunito: 'Nunito', sans-serif;
  --font-oswald: 'Oswald', sans-serif;
  --font-melody: 'Melody Southern', cursive;
  --font-ivy: 'Literata", serif', serif;
  --font-cerebri: 'Plus Jakarta Sans', sans-serif;
   --font-din: 'D-DIN Condensed', sans-serif;
  --container: 1920px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--maroon-950);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
li{list-style: none;}
img { max-width: 100%; display: block; }
.relative{position:relative}
.absolute{position:absolute}
.site-container {
  max-width: var(--container);
  padding: 0 7%;
}

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

.logo {
  font-family: var(--font-script);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.logo-txt {
    font-size: 8.8px;
    right: 0;
    bottom: -10px;
}

/* ============ BUTTONS ============ */
.btn {
  font-family: var(--font-oswald);
  font-size: 1rem;
    font-weight: 400;
    letter-spacing: .01px;
    padding: 14px 20px;
    border-radius: 44px;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: opacity 0.2s 
ease;
}
.btn:hover { opacity: 0.88; }

.btn-marroon {
  background: var(--maroon);
  color: var(--cream);
}

.btn-outline-gold {
   position: relative;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: 50px;
  background:
    linear-gradient(#2D0A0E, #2D0A0E) padding-box,
    linear-gradient(90deg, #933824 0%, #E9945F 100%) border-box;
  color: #fff;
  cursor: pointer;
  padding: 15px 34px;
}

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
  padding: 13px 24px;
}

/* ============ SHARED HEADINGS ============ */
.eyebrow-heading {
  font-family: var(--font-melody);
    text-align: center;
    /* letter-spacing: 0.22em; */
    font-size: 2.5rem;
    /* color: var(--gold-light); */
    margin: 0 0 16px;
    font-weight: 400;
    background: linear-gradient(90deg, #FFE6E0 0%, #E9945F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.eyebrow-heading.small { margin-bottom: 6px; text-align: left; }

.section-intro {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 48px;
    color: var(--cream);
    font-size: 1.25rem;
    font-family: var(--font-nunito);
}
.section-intro.left { text-align: left; margin: 0 0 34px; max-width: 520px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  /* min-height: 100vh; */
  height: 928px;
  display: flex;
  flex-direction: column;
  color: var(--cream);
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: top right; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,4,7,0.88) 0%, rgba(20,4,7,0.6) 100%, rgba(20,4,7,0.15) 70%, rgba(20,4,7,0.05) 100%);
  z-index: 1;
  display: none;
}

.hero-top {
  position: relative;
  z-index: 2;
  padding-top: 32px;
  width: max-content;
  margin-bottom: 48px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 810px;
      display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-title {
  font-family: var(--font-raffine);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  line-height: 1.12;
  margin: 0 0 24px;
  color: var(--cream);
}
.hero-title-span{color:#FFC29C;}

.hero-sub {
    letter-spacing: 0;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 24px;
    font-family: var(--font-nunito);
    
}

.hero-desc {
  color: var(--cream);
  max-width: 100%;
  margin: 0 0 24px;
  font-size: 1.25rem;
  font-family: var(--font-nunito);
  line-height: 36px;
}

.phone-form {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.phone-flag {
  display: flex;
  align-items: center;
  padding:16px 24px;
  font-size: 1.25rem;
  border-right: 1px solid var(--line);
  color: var(--cream);
  white-space: nowrap;
}
.country-flag{
  margin-right: 16px;
}
.phone-input-group {
    /* padding: 16px 24px; */
    width: 84%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.phone-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--cream);
  font-family: var(--font-nunito);
  font-size: 1.25rem;
  padding: 0 16px;
  min-width: 0;
      height: 100%;
    padding: 24px;
}
.phone-input::placeholder { color: var(--cream); }
.phn-bttn {
    display: flex;
    align-items: center;
        padding-right: 18px;
}
.hero-badges {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 26px 0 0;
    padding: 0;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: var(--cream);
    font-weight: 300;
}
.hero-badges li {    
    position: relative;
    padding-left: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
  }


/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--maroon-950);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 48px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    letter-spacing: 0.06em;
    color: var(--cream);
    font-family: var(--font-nunito);
    font-weight: 300;
    max-width: 219px;
}

/* ============ WHY PRE-REGISTER ============ */
.why-preregister { 
  padding: 96px 0 80px; 
}
.preregister-bg {
    top: 0;
    opacity: .2;
    z-index: -1;
}
.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.perk { 
  text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.perk-img-block {
    display: flex;
    justify-content: center;
    width: 100%;
}
.perk-icon { margin-bottom: 18px; }
.perk h3 {
  font-size: 1.25rem;
    letter-spacing: 0.06em;
    margin: 0 0 16px;
    color: var(--cream);
    font-weight: 400;
    font-family:var(--font-melody);
  }
.perk p {
    font-size: 1.12rem;
    color: var(--cream);
    margin: 0;
    font-weight: 300;
    font-family: var(--font-nunito);
}

/* ============ STATEMENT ============ */
.statement {
  padding: 110px 0 110px;
  text-align: center;
}
.statement-title {
  font-family: var(--font-ivy);
  font-weight: 200;
  font-size: 159px;
  line-height: 1.18;
  margin: 0;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.statement-title .statement-bttm {
    background: linear-gradient(90deg, #FFE6E0 0%, #E9945F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
span.statement-top {
    text-align: left;
    /* width: 100%; */
    display: flex;
    margin-left: 16%;
}
.statement-mid { 
      position: relative;
    display: inline-flex;
    justify-content: flex-end;
    width: 83%;
 }
.statement-mid:before {
    content: '';
    position: absolute;
    left: 12%;
    bottom: 70px;
    width: 100px;
    height: 1px;
    background: #fff;
}
/* ============ REWARDS ============ */
.rewards { padding: 20px 0 100px; }

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.center-cta { text-align: center; }

/* ============ SPLIT BLOCKS ============ */
.split-block { padding: 90px 0; }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.split-block.reverse .split-grid { grid-template-columns: 1.2fr 1fr; }
.split-block.reverse .split-image { order: -1; }

.split-text h2 {
  text-align: left;
}
.split-text p {
  text-align: left;
  max-width: 100%;
}


/* ============ GIFT BANNER ============ */
.gift-banner {
  position: relative;
  min-height: 560px;
  padding-top: 110px;

  /* display: flex;
  align-items: flex-end;
  overflow: hidden; */
}
/* .gift-banner-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; } */
/* .gift-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,3,5,0.85) 0%, rgba(15,3,5,0.15) 50%, rgba(15,3,5,0.05) 100%);
} */
.gift-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    gap: 40px;
    padding-bottom: 48px;
    align-items: center;
    justify-content: space-between;
    max-width: 1610px;
    margin: auto;
    padding-left: 48px;
    padding-right: 48px;
}
.gift-banner-text h2 {
    font-family: var(--font-raffine);
    font-size: clamp(1.8rem, 3.4vw, 3rem);
    line-height: 60px;
    font-weight: 500;
    margin: 0;
    color: var(--cream);
}
.gift-mid-txt{
  max-width: 526px;
}
.gift-mid-txt {
    font-size: 1.25rem;
    font-family: var(--font-nunito);
    line-height: 30px;
}
/* ============ STYLE SECTION ============ */
.style-section { padding: 100px 0; }
.style-heading {
  text-align: right;
  font-family: var(--font-ivy);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.6vw, 4rem);
  line-height: 1.3;
  margin: 0 0 56px;
  color: var(--cream);
}
.style-heading em { 
      font-style: italic;
    background: linear-gradient(90deg, #FFE6E0 0%, #E9945F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-ivy);
}

.pill-grid {
    display: flex;
    gap: 22px 30px;
    justify-content: flex-start;
}
.pill-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px;
}
/* .pill-card img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
} */
.pill-card span {
    font-size: 2rem;
    letter-spacing: 0.06em;
    color: var(--cream);
    font-family: var(--font-nunito);
}
.pill-grid-mid{
  display:flex;
  justify-content:flex-end;
  margin-top: 48px;
  margin-bottom: 48px;
}
/* ============ OCCASIONS ============ */
.occasions { padding: 80px 0 110px }
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.occasion-card {
  position: relative;
  display: block;
  /* height: 260px; */
  border-radius: 16px;
  overflow: hidden;
}
.occasion-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.occasion-card:hover img { transform: scale(1.06); }

.occasion-card span {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 1;
    font-size: 1.75rem;
    color: var(--cream);
    font-family: var(--font-melody);
}

/* ============ DUAL BANNER ============ */
.dual-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
      padding-top: 60px;
    padding-bottom: 110px;
}
.dual-card {
  position: relative;
  min-height: 604px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.dual-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* .dual-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,2,4,0.88) 0%, rgba(10,2,4,0.25) 60%, rgba(10,2,4,0.05) 100%);
} */
.dual-card-content {
    position: relative;
    z-index: 1;
    padding: 40px;
    max-width: 700px;
    height:300px;
}
.dual-card-content h3 {
  font-family: var(--font-melody);
  font-size: 2rem;
  color: var(--cream);
  margin: 0 0 14px;
}
.dual-card-content p {
  color: var(--cream);
  font-size: 18px;
  margin: 0 0 22px;
}
.transparent-button {
  position: relative;
  padding: 12px 32px;
  color: #fff;
  background: transparent;
  border: none;
  border-radius: 50px;
  isolation: isolate;
  cursor: pointer;
}

.transparent-button::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; /* border thickness */
  border-radius: inherit;
  background: linear-gradient(90deg, #933824 0%, #E9945F 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
/* ============ OPENS SOON ============ */
.opens-soon {
  position: relative;
  min-height: 767px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.opens-soon-bg {     
  position: absolute;
    inset: 0;
    /* max-width: 1604px; */
    margin: auto;
    border-bottom: 16px;
    overflow: hidden;}
.opens-soon-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 100% center;border-radius: 16px; }

.opens-soon-content {
  position: relative;
  z-index: 1;
  padding: 90px 56px;
  max-width: 812px;
  width: 100%;
}
.marketplace-heading{
  font-family: var(--font-raffine);
  font-size: 3.7rem;
  color: var(--cream);
  margin: 0 0;
}
.opens-soon-content h2 {
  font-family: var(--font-raffine);
  font-weight: 500;
  font-size: clamp(2.6rem, 5vw,6rem);
  line-height: 100%;
  margin: 0 0 20px;
  color: #FFC29C;
}
p.section-intro-para1 {
    font-size: 22px;
    font-weight: 500;
    font-family: var(--font-nunito);
}
p.section-intro-para2 {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-nunito);
}
.opens-soon .phone-form { margin-bottom: 26px; }

.social-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-family: var(--font-nunito);
  color: var(--cream);
}
.social-row span{
  margin-right: 24px;
}
.social-row a {
  display: flex;
  align-items: center;
  justify-content: center;

}

/* ============ FAQ ============ */
.faq { padding: 100px 0; }
.faq-list {
  max-width: 886px;
  margin: 0 auto;
  margin-top: 48px;
}
.faq-item {
    padding: 24px;
    border: 1px solid rgba(254,232,1,.1);
    border-radius: 16px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, .02);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-nunito);
  font-size: 20px;
  color: var(--cream);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  margin-left: 20px;
  flex-shrink: 0;
}
.faq-item p {
  margin: 16px 0 0;
  color: var(--cream);
  font-size: 1rem;
  max-width: 640px;
  font-family: var(--font-nunito);
  opacity: .7;
}
.faq-togg-img1{
  display:none;
}
details[open] .faq-togg-img1{
  display:block;
}
/* details[open] .faq-togg-img2{
  display:none;
} */
 details[open] .faq-icon img {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
 }
/* ============ PROMISES ============ */
.promise { 
  padding: 30px 0 100px; 
  text-align: center; 
  display: flex;
    flex-direction: column;
    align-items: center;
    gap:16px;
}

.promises-title {
  font-style: italic;
    font-family: var(--font-ivy);
    font-size: clamp(2.4rem, 5vw, 3rem);
    display: flex;
    justify-content: center;
    font-weight: 300;
}
.promises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 74px;
}
.promise-icon { margin-bottom: 16px; }
.promise-img-block {
    height: 54px;
    width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.promise h3 {
  font-size: 22px;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
  color: var(--cream);
  font-family: var(--font-melody);
}
.promise p {
  font-size: 16px;
  color: var(--cream);
  font-family: var(--font-nunito);
  margin: 0;
}

/* ============ FOOTER ============ */
.footer-text{
    font-size: 1rem;
    color: var(--cream);
    font-family: var(--font-nunito);
    margin: 0;
    font-weight: 300;
    text-align: center;
    opacity: .4;
    padding-bottom: 60px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1460px) {
.statement-title{
  font-size: 110px;
}
span.reward-off {
    font-size: 24px;
}
  .reward-range {
    font-size: 20px;
}
.eyebrow-heading{
  font-size: 2rem;
}
.gift-banner-content{
  max-width:1246px;
}
.pill-card span {
    font-size: 1.5rem;
}
.pill-card img{
      width: 100%;
    max-width: 280px;
}
.dual-card-content h3{
  font-size: 1.5rem;
}
.statement-mid:before{
  bottom: 42px;
    }
    .statement-mid{
      width: 78%;
    }
}
@media (max-width: 1340px) {
.perk h3 {
    font-size: 1rem;
}
.perk p {
    font-size: 14px;
}
    .statement-title {
        font-size: 100px;
    }
    .statement-mid{
          width: 78%;
    }
        .reward-range {
        font-size: 18px;
    }
    .gift-mid-txt {
    max-width: 424px;
}
.gift-mid-txt{
  font-size: 1.1rem;
}
    .gift-banner-content {
        max-width: 1142px;
    }
    .opens-soon {
    min-height: 643px;
    }
    
}
@media (max-width: 1280px) {
  .site-container {
    padding: 0 3%;
}
.gift-banner-content
 {
    bottom: 28px;
 }
}
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
  .perks-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .rewards-grid { grid-template-columns: repeat(2, 1fr); }
  .split-grid { grid-template-columns: 1fr; gap: 32px; }
  .split-block.reverse .split-image { order: 0; }
  .split-image img { height: 320px; }
  .gift-banner-content { grid-template-columns: 1fr; gap: 20px; }
  .pill-grid { grid-template-columns: repeat(2, 1fr); }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .dual-banner { grid-template-columns: 1fr; }
 
    .statement-title {
        font-size: 82px;
    }
.statement-mid:before{
  bottom: 50px;
}
.statement {
    padding: 80px 0 80px;
}
.gift-banner-text h2{
  line-height: 40px;
}
    .gift-mid-txt {
        max-width: 320px;
    }
        .gift-banner-content {
        max-width: 935px;
    }
        .gift-banner-content {
        bottom: 80px;
    }
        .pill-card span {
        font-size: 1.1rem;
    }
        .pill-card img {
        width: 100%;
        max-width: 246px;
    }
    .style-section {
    padding: 60px 0;
}
    .eyebrow-heading,.occasion-card span {
        font-size: 1.56rem;
    }
    .promise h3 {
    font-size: 18px;
    }
}

@media (max-width: 640px) {
  .hero-content { padding-top: 80px; padding-bottom: 92px; }
  .hero-badges { flex-wrap: wrap; row-gap: 10px; }
  .phone-form { flex-wrap: wrap; }
  .phone-form .btn { width: 100%; }
  .phone-input { padding: 14px 16px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .perks-grid { grid-template-columns: 1fr; }
  .rewards-grid { grid-template-columns: 1fr; }
  .style-heading { text-align: left; }
  .occasions-grid { grid-template-columns: 1fr; }
  .statement-title { text-align: left; }
  .opens-soon-content { padding: 70px 24px;text-align: center; }
   .promises-grid { grid-template-columns: 1fr; gap: 44px; }
}

/* ============ COUPON / VERIFY MODAL ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(20,4,7,0.86);
  z-index: 9999;
  /* padding: 24px; */
}
.modal-card {
  width: 100%;
  /* max-width: calc(100% - 48px); */
  min-height: 100vh;
  background: #3B0007;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 40px 48px;
  color: var(--cream);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  background: transparent;
  color: var(--cream);
  border: none;
  font-size: 28px;
  cursor: pointer;
}
.modal-title {
  font-family: var(--font-script);
  font-size: 38px;
  margin: 8px 0 4px;
  font-weight: 600;
  text-align: center;
}
.modal-highlight {
  background: linear-gradient(90deg, #FFE6E0 0%, #E9945F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.modal-sub { text-align: center; opacity: 0.9; margin: 0 0 8px;font-size:24px }
.modal-number { color: var(--cream); }
.otp-row { display: flex; gap: 18px; margin: 24px 0 24px; }
.otp-input {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--cream);
  font-size: 32px;
  text-align: center;
  outline: none;
}
.otp-input:focus { border-color: rgba(233,148,95,0.2); }
.modal-meta { width: 100%; display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
.resend { color: rgba(255,255,255,0.6); font-size: 20px; }
.change-number { background: transparent; border: none; color: rgba(255,255,255,0.6);font-size:20px; cursor: pointer; }
.modal-cta { width: 100%; display:flex; justify-content:center; margin-top: 32px; }
.modal-cta .btn { padding: 12px 40px; border-radius: 28px; }
@media (max-width: 768px) {
.hero{
      height: 694px;
}
.hero-sub {
    font-size: 1.2rem;
}
.hero-desc{
  font-size: 1rem;
  line-height:26px
}
    .statement-title {
        font-size: 64px;
    }
        .statement-mid:before {
        bottom: 34px;
            left: 5%;
            width: 80px;
    }
    .split-block {
    padding: 0 0 60px;
}
.section-intro{
  margin-bottom: 24px
}
.gift-banner{
  min-height: 100%;
}
    .gift-banner-content {
        bottom: 0px;
    }
        .gift-banner-text h2 {
        font-size: 22px;
        line-height: 28px;
        }
            .gift-mid-txt {
        font-size: 1rem;
        line-height: 24px;
    }
        .gift-banner-content {
        max-width: 726px;
    }
        .gift-mid-txt {
        max-width: 244px;
    }
    .pill-card img {
        width: 100%;
        max-width: 200px;
    }
        .pill-card span {
        font-size: 1rem;
    }
    .pill-grid-mid {
    justify-content: flex-start;
    }
    .pill-card{
      width:50%;
    }
}
@media (max-width: 640px) {
  .modal-card { padding: 28px 20px; }
  .otp-input { width: 35px; height: 56px; font-size: 20px; }
      .statement-title {
        font-size: 32px;
        text-align:center
    }
        .statement-mid:before {
        bottom: 20px;
        left: 5%;
        width: 32px;
    }
    .gift-banner .gift-banner-img{
    object-fit: cover;
    height: 396px;
    }
    .gift-banner-content{
          flex-direction: column;
    text-align: center;
    }
        .pill-card {
        flex-direction: column;
    }
        .pill-card span {
        font-size: 14px;
    }
        .style-heading {
        text-align: center;
    }
.split-block.reverse .split-grid {
    grid-template-columns: 1fr;
}
.split-text h2,.section-intro.left {
    text-align: center;
}
    .split-block {
        padding: 0 0 16px;
    }
.occasions{padding-top:0px;}
.occasion-card span{
  left: 0;
        right: 0;
        margin: auto;
        position: relative;
        bottom: 0;
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 8px;
}
.occasion-card img {
    border-radius: 16px;
}
.occasion-card{
  height: auto;
  overflow: visible;
     
}
.occasions-grid{
 gap: 54px;
}
.dual-card-content{
  height:auto;
}
    .eyebrow-heading, .occasion-card span {
        font-size: 18px;
    }
    .faq-item summary{
      font-size: 16px;
    }
    .faq-item p{
      font-size: 14px;
    }
    .faq {
    padding: 60px 0 24px;
}
    .promise {
    padding: 30px 0 0;
    }
    .footer-text {
    margin-top: 60px;
}
.marketplace-heading,.opens-soon-content h2{
  font-size: 2rem;
}
p.section-intro-para1 {
    font-size: 16px;
}
p.section-intro-para2 {
    font-size: 15px;
}
.opens-soon-bg img{
  object-position:left;
}
ul.hero-badges {
    font-size: 14px;
}
.hero-sub {
    margin-top: 16px;
    margin-bottom: 16px;
}
.trust-item {
    flex-direction: column;
    text-align: center;
}
.phone-input-group{
  width: 100%;
}
    .phone-form {
        flex-wrap: wrap;
        gap: 16px;
    }
    .phone-form{
      background: none;
      justify-content: center;
    }
    .phone-input-group{
      background: rgba(255, 255, 255, 0.08);
    }
    .phone-flag,.phone-input{
      padding: 12px 12px;
      font-size:14px;
    }
    .hero-content,.hero-title {
    align-items: center;
    text-align: center;
}
    .statement
 {
        padding: 0px 0 24px;
    }
    .split-text p {
    text-align: center;
    }
        .gift-banner-content {
        bottom: 0px;
    }
    .dual-card img {
    position: relative;
    }
    .dual-card{
      min-height: auto;
              display: flex;
        flex-direction: column;
    }
    .dual-card-content{
          padding: 24px 0px;
          text-align: center;
    }
    .hero-overlay{
      display: block;
    }
    .modal-title{
      font-size: 24px;
    }
    .modal-sub,.change-number,.resend{font-size: 14px;}
    .logo-txt {
    bottom: -13px;
    width: max-content;
}
.occasions {
    padding: 16px 0 74px;
}
.gift-banner-content{
  position: relative;
  margin-top: 24px;
}
.split-image img{
  order: -1;
}
.hero-img{
      object-position: left top;
}
}
