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

/* Instagram — hidden temporarily */
.cta-ig,
a[href*="instagram"],
a.social-icon[href*="instagram"] {
  display: none !important;
}

:root {
  --pink: #E8748A;
  --pink-light: #F7B8C5;
  --pink-pale: #FFF0F3;
  --brown: #3D1F0A;
  --brown-mid: #7B4820;
  --cream: #FFF8F2;
  --cream-warm: #FDF0E0;
  --gold: #F4C842;
  --radius: 20px;
  --shadow: 0 8px 32px rgba(232, 116, 138, .18);
  --shadow-lg: 0 20px 60px rgba(232, 116, 138, .22);
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--brown);
  overflow-x: hidden
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none
}

::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: var(--pink-pale)
}

::-webkit-scrollbar-thumb {
  background: var(--pink);
  border-radius: 6px
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 68px;
  padding: 0 7.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 248, 242, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1.5px solid rgba(232, 116, 138, .12);
  transition: box-shadow .3s;
}

nav.scrolled {
  box-shadow: var(--shadow)
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px
}

.nav-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain
}

.nav-logo span {
  font-family: 'Pacifico', cursive;
  font-size: 1.35rem;
  color: var(--brown)
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none
}

.nav-links a {
  font-weight: 700;
  font-size: .9rem;
  color: var(--brown);
  position: relative;
  padding-bottom: 3px;
  transition: color .2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transition: width .3s;
}

.nav-links a:hover {
  color: var(--pink)
}

.nav-links a:hover::after {
  width: 100%
}

.nav-cta {
  background: var(--pink);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .88rem;
  box-shadow: 0 4px 14px rgba(232, 116, 138, .38);
  transition: transform .2s, box-shadow .2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 116, 138, .5)
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--brown);
  border-radius: 3px;
  transition: .3s
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--cream);
  padding: 24px 7.5%;
  border-bottom: 1.5px solid rgba(232, 116, 138, .2);
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
}

.mobile-menu.open {
  display: flex
}

.mobile-menu a {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brown)
}

.mobile-menu a:hover {
  color: var(--pink)
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 90px 7.5% 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #FFF8F2 0%, #FFF0F3 55%, #FDE8F0 100%);
}

.hero-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(232, 116, 138, .08);
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -120px
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -60px
}

.fp {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(232, 116, 138, .1);
  animation: floatP 6s ease-in-out infinite;
}

.fp:nth-child(3) {
  width: 55px;
  height: 55px;
  top: 18%;
  left: 10%;
  animation-delay: 0s
}

.fp:nth-child(4) {
  width: 35px;
  height: 35px;
  top: 32%;
  left: 52%;
  animation-delay: 1.3s
}

.fp:nth-child(5) {
  width: 70px;
  height: 70px;
  bottom: 22%;
  right: 10%;
  animation-delay: 2.2s
}

@keyframes floatP {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-16px)
  }
}

.hero-text {
  flex: 1;
  max-width: 540px;
  position: relative;
  z-index: 2
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 116, 138, .1);
  border: 1.5px solid rgba(232, 116, 138, .28);
  border-radius: 50px;
  padding: 6px 16px;
  font-weight: 800;
  font-size: .8rem;
  color: var(--pink);
  margin-bottom: 20px;
  letter-spacing: .5px;
  animation: fadeD .6s ease both;
}

.hero-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.1;
  color: var(--brown);
  margin-bottom: 10px;
  animation: fadeD .7s .1s ease both;
}

.hero-title span {
  color: var(--pink)
}

.hero-sub {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 16px;
  animation: fadeD .7s .18s ease both;
}

.hero-desc {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--brown-mid);
  max-width: 430px;
  margin-bottom: 32px;
  animation: fadeD .7s .26s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeD .7s .34s ease both
}

.btn-primary {
  background: var(--pink);
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .98rem;
  box-shadow: 0 6px 20px rgba(232, 116, 138, .42);
  transition: transform .2s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(232, 116, 138, .52)
}

.btn-outline {
  background: #fff;
  color: var(--pink);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .98rem;
  border: 2px solid var(--pink);
  transition: transform .2s, background .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  transform: translateY(-3px);
  background: var(--pink-pale)
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 38px;
  flex-wrap: wrap;
  animation: fadeD .7s .42s ease both;
}

.stat-num {
  font-family: 'Pacifico', cursive;
  font-size: 1.7rem;
  color: var(--pink);
  line-height: 1
}

.stat-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--brown-mid);
  margin-top: 2px
}

.hero-visual {
  flex: 1;
  max-width: 480px;
  position: relative;
  z-index: 2;
  animation: fadeL .8s .2s ease both
}

.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center
}

.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 116, 138, .22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-img-main {
  width: 360px;
  height: 360px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: var(--shadow-lg);
  animation: floatMain 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes floatMain {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }
}

.hero-tag {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 10px 16px;
  box-shadow: var(--shadow);
  font-weight: 800;
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatTag 5s ease-in-out infinite;
  white-space: nowrap;
}

.hero-tag-1 {
  top: 8%;
  left: -2%;
  animation-delay: 0s
}

.hero-tag-2 {
  bottom: 14%;
  right: -2%;
  animation-delay: 1.6s
}

.tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0
}

@keyframes floatTag {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@keyframes fadeD {
  from {
    opacity: 0;
    transform: translateY(-18px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeL {
  from {
    opacity: 0;
    transform: translateX(36px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

/* Floating presentation cards in hero */
.hero-float-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  z-index: 3;
}

.hero-float-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: var(--shadow);
}

.hero-float-card span {
  background: #fff;
  color: var(--pink);
  font-weight: 800;
  font-size: .72rem;
  padding: 3px 10px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(232, 116, 138, .2);
  letter-spacing: .5px;
  text-transform: uppercase;
}

.hero-float-left {
  left: -14%;
  top: 30%;
  animation: floatTag 5.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

.hero-float-bottom {
  bottom: -6%;
  left: 18%;
  animation: floatTag 5s ease-in-out infinite;
  animation-delay: 1.8s;
}

/* LOGO badge in hero */
.hero-logo-badge {
  position: absolute;
  top: -8%;
  right: 4%;
  width: 130px;
  height: 130px;
  animation: floatTag 4.5s ease-in-out infinite;
  animation-delay: .9s;
  z-index: 3;
  filter: drop-shadow(0 8px 24px rgba(232, 116, 138, .35));
}

.wave-divider {
  line-height: 0
}

.wave-divider svg {
  display: block;
  width: 100%
}

/* SECTIONS */
section {
  padding: 80px 7.5%
}

.section-label {
  display: inline-block;
  background: rgba(232, 116, 138, .1);
  color: var(--pink);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-title span {
  color: var(--pink)
}

.section-desc {
  font-size: 1rem;
  color: var(--brown-mid);
  line-height: 1.75;
  max-width: 540px
}

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

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

/* WHY */
.why {
  background: #fff
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
  margin-top: 48px
}

.why-card {
  background: var(--pink-pale);
  border-radius: 24px;
  padding: 32px 22px;
  text-align: center;
  border: 1.5px solid rgba(232, 116, 138, .12);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(232, 116, 138, .05);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #fff, var(--pink-pale));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(232, 116, 138, .15);
  transition: transform .3s;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-4deg)
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--brown)
}

.why-card p {
  font-size: .88rem;
  color: var(--brown-mid);
  line-height: 1.6
}

/* CUSTOMIZER */
.customizer {
  background: linear-gradient(135deg, #FFF8F2, #FFF0F3)
}

.customizer-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px
}

.customizer-panel {
  background: #fff;
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow)
}

.customizer-panel h3 {
  font-family: 'Pacifico', cursive;
  font-size: 1.25rem;
  color: var(--brown);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px
}

.option-group {
  margin-bottom: 24px
}

.option-group label {
  font-weight: 800;
  font-size: .78rem;
  color: var(--pink);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block
}

.option-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.option-pill {
  padding: 8px 16px;
  border-radius: 50px;
  border: 2px solid rgba(232, 116, 138, .25);
  font-weight: 700;
  font-size: .84rem;
  cursor: pointer;
  transition: all .2s;
  background: var(--pink-pale);
  color: var(--brown);
  user-select: none;
}

.option-pill:hover {
  border-color: var(--pink);
  color: var(--pink)
}

.option-pill.active {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  box-shadow: 0 4px 12px rgba(232, 116, 138, .36)
}

.preview-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px
}

.preview-bowl {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F9E4C8, #F5D5B2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .1), inset 0 -6px 20px rgba(0, 0, 0, .08);
  transition: background .4s;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--brown);
}

.preview-bowl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bowl-pancakes {
  font-size: 4.5rem
}

.toppings-overlay {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.6rem;
  pointer-events: none
}

.fruits-overlay {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.4rem;
  pointer-events: none
}

.summary-box {
  background: #fff;
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 300px;
  border: 2px dashed rgba(232, 116, 138, .28);
}

.summary-box h4 {
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 12px;
  font-size: .92rem
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: .86rem;
  padding: 5px 0;
  color: var(--brown-mid);
  border-bottom: 1px solid rgba(232, 116, 138, .08)
}

.summary-line:last-child {
  border: none
}

.summary-line strong {
  color: var(--pink)
}

.order-btn {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  background: var(--pink);
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  box-shadow: 0 6px 20px rgba(232, 116, 138, .38);
  transition: transform .2s, box-shadow .2s;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: none;
}

.order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 116, 138, .48)
}

/* PRESENTATIONS */
.presentations {
  background: #fff
}

.pres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 18px;
  margin-top: 48px
}

.pres-card {
  background: var(--pink-pale);
  border-radius: 24px;
  padding: 28px 16px;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: all .3s;
  cursor: pointer;
}

.pres-card:hover {
  border-color: var(--pink);
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.pres-num {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-weight: 900;
  font-size: .72rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pres-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center
}

.pres-card h3 {
  font-weight: 800;
  font-size: .92rem;
  color: var(--brown);
  margin-bottom: 7px
}

.pres-card p {
  font-size: .8rem;
  color: var(--brown-mid);
  line-height: 1.5;
  margin-bottom: 10px
}

.pres-feature {
  font-size: .76rem;
  font-weight: 700;
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 4px
}

.pres-feature::before {
  content: '✓'
}

/* TOPPINGS */
.toppings-section {
  background: var(--cream-warm)
}

.tf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 48px
}

.tf-box {
  background: #fff;
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow)
}

.tf-box h3 {
  font-family: 'Pacifico', cursive;
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px
}

.topping-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(232, 116, 138, .1);
  cursor: pointer;
  transition: all .2s;
  border-radius: 12px;
}

.topping-item:last-child {
  border-bottom: none
}

.topping-item:hover {
  background: var(--pink-pale);
  padding-left: 14px
}

.topping-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.topping-info {
  flex: 1
}

.topping-info strong {
  display: block;
  font-weight: 800;
  font-size: .92rem
}

.topping-info span {
  font-size: .8rem;
  color: var(--brown-mid)
}

.topping-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(232, 116, 138, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .2s;
}

.topping-item.checked .topping-check {
  background: var(--pink);
  border-color: var(--pink)
}

.topping-item.checked .topping-check::after {
  content: '✓';
  color: #fff;
  font-size: .68rem;
  font-weight: 900
}

.fruit-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px
}

.fruit-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 14px;
  border-radius: 20px;
  border: 2.5px solid rgba(232, 116, 138, .18);
  cursor: pointer;
  transition: all .25s;
  background: #fff;
  position: relative;
  min-width: 30%;
}

.fruit-pill:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.fruit-pill.active {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232, 116, 138, .2)
}

.fruit-pill.active::after {
  content: '✓';
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: .68rem;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.fruit-pill span {
  font-size: .78rem;
  font-weight: 800;
  color: var(--brown)
}

.fruit-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background-image: url('./assets/fruits.png');
  background-size: 500% auto;
  background-repeat: no-repeat;
  background-position-y: 35%;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  transition: transform .25s;
}

.fruit-pill:hover .fruit-photo {
  transform: scale(1.08)
}

.fruit-photo.f-strawberry {
  background-position-x: 0%
}

.fruit-photo.f-blueberry {
  background-position-x: 25%
}

.fruit-photo.f-banana {
  background-position-x: 50%
}

.fruit-photo.f-kiwi {
  background-position-x: 75%
}

.fruit-photo.f-raspberry {
  background-position-x: 100%
}

/* OCCASIONS */
.occasions {
  background: #fff
}

.occ-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 48px
}

.occ-card {
  background: linear-gradient(135deg, var(--pink-pale), #fff);
  border-radius: 24px;
  padding: 30px 22px;
  text-align: center;
  min-width: 150px;
  flex: 1;
  max-width: 190px;
  border: 1.5px solid rgba(232, 116, 138, .14);
  transition: all .3s;
}

.occ-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow);
  border-color: var(--pink)
}

.occ-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center
}

.occ-card h3 {
  font-weight: 800;
  font-size: .9rem;
  color: var(--brown)
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #FFF0F3, #FFF8F2)
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
  margin-top: 48px
}

.testi-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: 'Pacifico', cursive;
  font-size: 5rem;
  color: rgba(232, 116, 138, .12);
  line-height: 1;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 2px
}

.testi-text {
  font-size: .92rem;
  line-height: 1.72;
  color: var(--brown-mid);
  margin-bottom: 18px
}

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

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), #C24F6B);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 800;
  font-size: .88rem
}

.testi-handle {
  font-size: .78rem;
  color: var(--pink)
}

/* MARQUEE */
.marquee-strip {
  background: var(--pink);
  padding: 16px 0;
  overflow: hidden
}

.marquee-track {
  display: flex;
  gap: 12px;
  animation: marquee 16s linear infinite;
  width: max-content
}

.marquee-track:hover {
  animation-play-state: paused
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .16);
  border-radius: 50px;
  padding: 8px 20px;
  color: #fff;
  font-weight: 700;
  font-size: .86rem;
  flex-shrink: 0;
  white-space: nowrap;
}

/* CTA */
.order-cta {
  background: linear-gradient(140deg, var(--brown) 0%, #5C2E0E 100%);
  padding: 100px 7.5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.order-cta-inner {
  position: relative;
  z-index: 1
}

.order-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(232, 116, 138, .12) 0%, transparent 60%);
}

.order-cta h2 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
}

.order-cta h2 span {
  color: var(--pink-light)
}

.order-cta p {
  color: rgba(255, 255, 255, .7);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

.cta-ig {
  background: linear-gradient(135deg, #E1306C, #833AB4, #F77737);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .96rem;
  box-shadow: 0 6px 22px rgba(225, 48, 108, .38);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .2s, box-shadow .2s;
}

.cta-ig:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(225, 48, 108, .48)
}

.cta-fb {
  background: #1877F2;
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .96rem;
  box-shadow: 0 6px 22px rgba(24, 119, 242, .38);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .2s;
}

.cta-fb:hover {
  transform: translateY(-3px)
}

.cta-wa-soon {
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .6);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  border: 2px dashed rgba(255, 255, 255, .25);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: default;
}

.confetti-burst {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden
}

/* FAQ */
.faq {
  background: #fff
}

.faq-list {
  max-width: 660px;
  margin: 48px auto 0
}

.faq-item {
  border-bottom: 1.5px solid rgba(232, 116, 138, .14);
  overflow: hidden
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  padding: 20px 0;
  font-weight: 800;
  font-size: .98rem;
  color: var(--brown);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
  cursor: pointer;
}

.faq-q:hover {
  color: var(--pink)
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--pink-pale);
  border: 2px solid rgba(232, 116, 138, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform .3s, background .3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--pink);
  color: #fff;
  border-color: var(--pink)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  font-size: .92rem;
  line-height: 1.72;
  color: var(--brown-mid);
}

.faq-item.open .faq-a {
  max-height: 180px;
  padding-bottom: 20px
}

/* FOOTER */
footer {
  background: var(--brown);
  color: rgba(255, 255, 255, .75);
  padding: 60px 7.5% 28px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px
}

.footer-logo {
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, .2)
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  max-width: 270px
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 18px
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}

.social-icon:hover {
  background: var(--pink);
  transform: scale(1.1)
}

.footer-col h4 {
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  font-size: .86rem;
  letter-spacing: 1px;
  text-transform: uppercase
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-col a {
  font-size: .86rem;
  transition: color .2s
}

.footer-col a:hover {
  color: var(--pink-light)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 22px;
  text-align: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, .45)
}

.footer-bottom span {
  color: var(--pink-light)
}

/* CONTACT FORM */
.contact {
  background: linear-gradient(140deg, #FFF8F2, #FFF0F3)
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  margin-top: 52px;
}

.contact-info {}

.contact-info h3 {
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: .97rem;
  color: var(--brown-mid);
  line-height: 1.75;
  margin-bottom: 32px
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  border: 1.5px solid rgba(232, 116, 138, .12);
  transition: transform .2s, box-shadow .2s;
}

.contact-channel:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 28px rgba(232, 116, 138, .18)
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.channel-icon.ig {
  background: linear-gradient(135deg, #F77737, #E1306C, #833AB4)
}

.channel-icon.fb {
  background: #1877F2
}

.channel-icon.wa {
  background: #25D366
}

.channel-info strong {
  display: block;
  font-weight: 800;
  font-size: .9rem;
  color: var(--brown)
}

.channel-info span {
  font-size: .8rem;
  color: var(--brown-mid)
}

.contact-form-box {
  background: #fff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form-box h3 {
  font-family: 'Pacifico', cursive;
  font-size: 1.35rem;
  color: var(--brown);
  margin-bottom: 6px;
}

.contact-form-box p {
  font-size: .88rem;
  color: var(--brown-mid);
  margin-bottom: 28px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px
}

.form-group label {
  font-weight: 800;
  font-size: .78rem;
  color: var(--pink);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border-radius: 14px;
  border: 2px solid rgba(232, 116, 138, .22);
  font-family: 'Nunito', sans-serif;
  font-size: .92rem;
  color: var(--brown);
  background: var(--pink-pale);
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(123, 72, 32, .4)
}

.form-group textarea {
  resize: vertical;
  min-height: 110px
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E8748A' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  background: var(--pink);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 6px 22px rgba(232, 116, 138, .38);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  font-family: 'Nunito', sans-serif;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(232, 116, 138, .48)
}

.submit-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
}

.form-success.show {
  display: block
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-pale), #fff);
  border: 3px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.form-success h4 {
  font-family: 'Pacifico', cursive;
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: 8px
}

.form-success p {
  color: var(--brown-mid);
  font-size: .95rem;
  line-height: 1.7
}

/* TOAST */
.cart-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  background: #fff;
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateY(100px);
  opacity: 0;
  transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
  border: 2px solid rgba(232, 116, 138, .18);
  max-width: 290px;
}

.cart-toast.show {
  transform: translateY(0);
  opacity: 1
}

.cart-toast-text strong {
  display: block;
  font-weight: 800;
  color: var(--brown);
  font-size: .92rem
}

.cart-toast-text span {
  font-size: .8rem;
  color: var(--brown-mid)
}

/* RESPONSIVE — Tablet ≤900px (~90vw content) */
@media(max-width:900px) {
  nav {
    padding: 0 5%
  }

  .mobile-menu {
    padding: 24px 5%
  }

  section {
    padding: 60px 5%
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 5% 60px
  }

  .order-cta {
    padding: 70px 5%
  }

  footer {
    padding: 48px 5% 24px
  }

  .hero-text {
    max-width: 100%
  }

  .hero-desc {
    margin: 0 auto 32px
  }

  .hero-actions {
    justify-content: center
  }

  .hero-stats {
    justify-content: center
  }

  .hero-float-card {
    display: none
  }

  .hero-img-main {
    width: 280px;
    height: 280px
  }

  .hero-glow {
    width: 320px;
    height: 320px
  }

  .hero-logo-badge {
    top: auto;
    right: 50%;
    transform: translateX(130px) translateY(-10px);
    bottom: -10px
  }

  .customizer-wrap {
    grid-template-columns: 1fr
  }

  .tf-grid {
    grid-template-columns: 1fr
  }

  .contact-wrap {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center
  }

  .footer-brand p {
    max-width: 100%
  }

  .social-icons {
    justify-content: center
  }

  .footer-col ul {
    align-items: center
  }

  .nav-links,
  .nav-cta {
    display: none
  }

  .nav-burger {
    display: flex
  }

  .footer-logo{
    justify-content: center
  }
}

/* RESPONSIVE — Mobile ≤560px (~92vw content) */
@media(max-width:560px) {
  nav {
    padding: 0 4%
  }

  .mobile-menu {
    padding: 24px 4%
  }

  section {
    padding: 48px 4%
  }

  .hero {
    padding: 88px 4% 48px
  }

  .order-cta {
    padding: 56px 4%
  }

  footer {
    padding: 40px 4% 20px
  }

  .hero-img-main {
    width: 230px;
    height: 230px
  }

  .hero-glow {
    width: 270px;
    height: 270px
  }

  .hero-logo-badge {
    width: 90px;
    height: 90px;
    transform: translateX(90px) translateY(-10px)
  }

  .pres-grid {
    grid-template-columns: 1fr 1fr
  }

  .fruit-pill {
    min-width: 44%
  }

  .contact-form-box {
    padding: 28px 20px
  }

  .footer-grid {
    gap: 22px
  }
}

/* RESPONSIVE — Small phones ≤400px */
@media(max-width:400px) {
  section {
    padding: 44px 4%
  }

  .hero-img-main {
    width: 200px;
    height: 200px
  }

  .pres-grid {
    grid-template-columns: 1fr
  }

  .hero-title {
    font-size: 2.4rem
  }
}
