:root {
  --cream: #fff7e8;
  --cream-deep: #ffefd0;
  --navy: #172033;
  --yellow: #ffb22c;
  --coral: #ff6b4a;
  --blue: #4da3ff;
  --pink: #ff8ec7;
  --mint: #7ee6a8;
  --white: #ffffff;
  --line: #f4dcb8;
  --shadow: 0 18px 38px rgba(98, 68, 28, 0.13);
  --soft-shadow: 0 10px 24px rgba(42, 71, 116, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--navy);
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 178, 44, 0.18), transparent 24%),
    radial-gradient(circle at 86% 16%, rgba(255, 142, 199, 0.16), transparent 22%),
    var(--cream);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  line-height: 1.35;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  width: min(1460px, calc(100% - 8px));
  margin: 0 auto;
  padding: 22px 40px;
  background: rgba(255, 252, 244, 0.96);
  border: 1px solid rgba(244, 220, 184, 0.9);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 10px 24px rgba(74, 47, 11, 0.11);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-box {
  position: relative;
  width: 70px;
  height: 58px;
  transform: rotate(-7deg);
}

.box-flap {
  position: absolute;
  top: 5px;
  width: 34px;
  height: 22px;
  background: var(--yellow);
  border: 3px solid var(--navy);
  border-radius: 7px 7px 2px 2px;
}

.box-flap.left {
  left: 3px;
  transform: skewY(-18deg) rotate(-12deg);
}

.box-flap.right {
  right: 3px;
  transform: skewY(18deg) rotate(12deg);
}

.box-face {
  position: absolute;
  left: 10px;
  bottom: 0;
  display: grid;
  place-items: center;
  width: 50px;
  height: 39px;
  color: var(--coral);
  background: #f6aa39;
  border: 3px solid var(--navy);
  border-radius: 6px;
  font-size: 22px;
  font-weight: 900;
}

.brand-text {
  display: grid;
  color: #061c3d;
  font-size: clamp(22px, 2vw, 36px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
}

.brand-text strong {
  color: #f05a25;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.95em;
  font-style: italic;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 72px);
  font-size: 17px;
  font-weight: 900;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 3px;
  background: var(--yellow);
  border-radius: 999px;
  content: "";
}

.header-cta,
.btn,
.card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border: 0;
  border-radius: 16px;
  font-weight: 900;
  box-shadow: 0 9px 0 rgba(140, 84, 0, 0.09);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.header-cta {
  min-width: 182px;
  padding: 0 25px;
  color: white;
  background: linear-gradient(180deg, #ffb41e, #ffa100);
  font-size: 17px;
}

.header-cta:hover,
.btn:hover,
.card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 0 rgba(140, 84, 0, 0.08);
}

.section-shell,
.section-panel {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 32px;
  align-items: center;
  min-height: 570px;
  padding: 30px 42px 18px;
}

.hero-copy h1 {
  margin: 0;
  color: #082757;
  font-size: clamp(54px, 6.7vw, 108px);
  font-weight: 900;
  line-height: 0.91;
  letter-spacing: 0;
}

.hero-copy {
  min-width: 0;
}

.hero-copy h1 span {
  color: #ff5d1f;
}

.hero-copy p {
  max-width: 660px;
  margin: 26px 0 26px;
  color: #162441;
  font-size: clamp(19px, 1.8vw, 28px);
  font-weight: 700;
  line-height: 1.34;
}

.button-row,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.btn {
  min-width: 252px;
  padding: 0 28px;
  font-size: 18px;
}

.btn-primary {
  color: white;
  background: linear-gradient(180deg, #ffba28, #ffa000);
}

.btn-secondary {
  color: #12335f;
  background: white;
  border: 3px solid var(--blue);
}

.trust-row {
  gap: 20px;
  margin-top: 40px;
  font-size: 13px;
  font-weight: 800;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: white;
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: var(--soft-shadow);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
}

.trust-icon.australia {
  background: var(--mint);
}

.trust-icon.tracked {
  background: var(--blue);
}

.trust-icon.secure {
  background: var(--pink);
}

.hero-art {
  position: relative;
  min-height: 560px;
}

.hero-box {
  position: absolute;
  right: 82px;
  bottom: 36px;
  width: min(580px, 76vw);
  height: 278px;
  perspective: 800px;
}

.box-front {
  position: absolute;
  right: 58px;
  bottom: 0;
  width: 420px;
  height: 236px;
  padding: 70px 44px;
  color: #11151f;
  background:
    linear-gradient(140deg, transparent 0 47%, rgba(162, 90, 20, 0.1) 48% 50%, transparent 51%),
    #d9933a;
  border: 4px solid #ae6420;
  border-radius: 4px 4px 20px 20px;
  box-shadow: var(--shadow);
  transform: skewY(3deg);
}

.box-front strong {
  display: block;
  font-size: 42px;
  line-height: 0.95;
  transform: rotate(-3deg);
}

.box-side {
  position: absolute;
  right: 0;
  bottom: 17px;
  width: 126px;
  height: 213px;
  background: #bf7529;
  border: 4px solid #a85f1d;
  border-left: 0;
  border-radius: 0 10px 18px 0;
  transform: skewY(-20deg);
  transform-origin: left bottom;
}

.box-lid {
  position: absolute;
  top: 0;
  width: 255px;
  height: 86px;
  background: #edb15e;
  border: 4px solid #ac641f;
  border-radius: 8px;
}

.lid-left {
  left: 35px;
  transform: rotate(-20deg) skewX(-28deg);
}

.lid-right {
  right: 86px;
  transform: rotate(15deg) skewX(26deg);
}

.box-doodle {
  position: absolute;
  color: #49351a;
  font-weight: 900;
}

.box-doodle.koala {
  right: 66px;
  bottom: 54px;
  font-size: 42px;
}

.box-doodle.heart {
  left: 180px;
  bottom: 22px;
  color: var(--coral);
  font-size: 24px;
}

.box-items {
  position: absolute;
  right: 154px;
  bottom: 220px;
  width: 520px;
  height: 260px;
}

.item {
  position: absolute;
  display: block;
  box-shadow: var(--soft-shadow);
}

.speaker {
  left: 112px;
  bottom: 38px;
  width: 86px;
  height: 178px;
  background:
    radial-gradient(circle at 50% 14%, #303840 0 26%, transparent 28%),
    repeating-linear-gradient(0deg, #121923 0 4px, #273240 4px 8px);
  border: 5px solid #0f1723;
  border-radius: 42px;
  transform: rotate(-10deg);
}

.camera {
  left: 270px;
  bottom: 112px;
  width: 112px;
  height: 104px;
  background: #ff9a91;
  border: 5px solid #dd6f67;
  border-radius: 23px;
  transform: rotate(7deg);
}

.camera::before {
  position: absolute;
  top: 26px;
  left: 34px;
  width: 42px;
  height: 42px;
  background: radial-gradient(circle, #182236 0 26%, #f5f6fb 27% 44%, #26314a 45%);
  border-radius: 50%;
  content: "";
}

.bottle {
  right: 12px;
  bottom: 40px;
  width: 78px;
  height: 188px;
  background: #43d39a;
  border: 5px solid #208f6b;
  border-radius: 30px 30px 18px 18px;
  transform: rotate(12deg);
}

.bottle::before {
  position: absolute;
  top: -31px;
  left: 19px;
  width: 35px;
  height: 35px;
  background: #173040;
  border-radius: 8px;
  content: "";
}

.candle {
  left: 28px;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 88px;
  height: 112px;
  color: #f36d83;
  background: #f7d8a7;
  border: 5px solid #bc8250;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  transform: rotate(-7deg);
}

.toy {
  left: 228px;
  bottom: 8px;
  display: grid;
  place-items: center;
  width: 96px;
  height: 116px;
  color: #db3b2e;
  background:
    radial-gradient(circle at 68% 26%, #ffe8f1 0 12%, transparent 13%),
    #65b7ff;
  border: 5px solid #2764aa;
  border-radius: 46% 46% 24px 24px;
  font-size: 34px;
}

.beauty {
  right: 82px;
  bottom: 2px;
  display: grid;
  place-items: center;
  width: 86px;
  height: 136px;
  color: #ea4c89;
  background: #f8b4d4;
  border: 5px solid #e282b7;
  border-radius: 16px 16px 8px 8px;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  transform: rotate(10deg);
}

.home {
  left: 176px;
  bottom: -2px;
  width: 86px;
  height: 86px;
  background: #ff8ec7;
  border: 5px solid #da5d99;
  border-radius: 50%;
}

.home::before {
  position: absolute;
  left: 15px;
  top: 33px;
  width: 56px;
  height: 20px;
  background: #d6477f;
  border-radius: 999px;
  content: "";
}

.accessory {
  left: 326px;
  bottom: -8px;
  width: 118px;
  height: 74px;
  background: #ffe5ee;
  border: 5px solid #ff8ec7;
  border-radius: 20px;
  transform: rotate(-10deg);
}

.sticker {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  color: #10213b;
  border: 5px solid white;
  font-weight: 900;
  text-align: center;
  box-shadow: var(--soft-shadow);
}

.sticker.wow {
  top: 80px;
  left: 20px;
  width: 128px;
  height: 78px;
  background: var(--pink);
  border-radius: 48% 42% 50% 44%;
  font-size: 34px;
  transform: rotate(-14deg);
}

.sticker.lucky {
  top: 100px;
  right: 34px;
  width: 128px;
  height: 86px;
  background: var(--mint);
  border-radius: 25px;
  font-size: 30px;
  line-height: 0.88;
  transform: rotate(12deg);
}

.sticker.open {
  right: 96px;
  bottom: 18px;
  width: 156px;
  height: 98px;
  color: #1461b6;
  background: white;
  border: 5px solid var(--blue);
  border-radius: 18px;
  font-size: 35px;
  line-height: 0.85;
  transform: rotate(-5deg);
}

.question {
  position: absolute;
  z-index: 3;
  font-size: 58px;
  font-weight: 900;
}

.q1 {
  top: 18px;
  left: 202px;
  color: var(--yellow);
}

.q2 {
  top: 22px;
  right: 236px;
  color: var(--blue);
}

.q3 {
  top: 70px;
  right: 108px;
  color: var(--pink);
}

.doodle-arrow {
  position: absolute;
  width: 74px;
  height: 54px;
  border: 8px solid var(--blue);
  border-top: 0;
  border-right: 0;
  border-radius: 0 0 0 48px;
}

.arrow-left {
  left: 70px;
  bottom: 110px;
  transform: rotate(-22deg);
}

.arrow-right {
  right: 16px;
  bottom: 120px;
  transform: rotate(210deg);
}

.confetti {
  position: absolute;
  z-index: 1;
  width: 9px;
  height: 42px;
  border-radius: 999px;
}

.c1 {
  top: 50px;
  left: 310px;
  background: var(--coral);
  transform: rotate(-24deg);
}

.c2 {
  top: 42px;
  left: 382px;
  background: var(--mint);
  transform: rotate(-8deg);
}

.c3 {
  top: 74px;
  left: 458px;
  background: var(--pink);
  transform: rotate(16deg);
}

.c4 {
  top: 96px;
  right: 270px;
  background: var(--yellow);
  transform: rotate(-35deg);
}

.c5 {
  top: 204px;
  right: 40px;
  background: var(--coral);
  transform: rotate(44deg);
}

.section-panel {
  padding: 28px 66px 30px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 8px 28px rgba(140, 84, 0, 0.05);
}

.section-title {
  position: relative;
  width: fit-content;
  margin: 0 auto 18px;
  color: #0b2348;
  font-size: clamp(30px, 3.1vw, 42px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.section-title::before,
.section-title::after {
  position: absolute;
  top: 50%;
  width: 26px;
  height: 22px;
  background:
    linear-gradient(var(--yellow), var(--yellow)) 0 0 / 20px 4px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) 8px 9px / 18px 4px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) 3px 18px / 14px 4px no-repeat;
  content: "";
}

.section-title::before {
  left: -42px;
  transform: translateY(-50%) rotate(180deg);
}

.section-title::after {
  right: -42px;
  transform: translateY(-50%);
}

.left-title {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.step-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 34px;
  align-items: center;
}

.step-card,
.product-card,
.inside,
.love-grid article,
.unbox,
.review-grid article,
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--soft-shadow);
}

.step-card {
  position: relative;
  min-height: 226px;
  padding: 22px 24px 24px;
  text-align: center;
}

.step-number {
  position: absolute;
  top: 18px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: white;
  border-radius: 50%;
  font-size: 25px;
  font-weight: 900;
}

.step-number.blue {
  background: var(--blue);
}

.step-number.pink {
  background: var(--pink);
}

.step-number.mint {
  background: #55d49a;
}

.step-arrow {
  font-size: 54px;
  font-weight: 900;
}

.mini-box {
  position: relative;
  width: 156px;
  height: 108px;
  margin: 12px auto 14px;
}

.mini-box.closed {
  display: grid;
  place-items: center;
  color: var(--coral);
  background: #d99a48;
  border: 4px solid #b46a26;
  border-radius: 8px;
  transform: rotate(5deg);
  font-size: 46px;
  font-weight: 900;
}

.open-box::before,
.full-box::before {
  position: absolute;
  inset: 24px 24px 0;
  background: #d99a48;
  border: 4px solid #b46a26;
  border-radius: 8px;
  content: "";
}

.open-box::after,
.full-box::after {
  position: absolute;
  inset: 4px 18px auto;
  height: 45px;
  background: #efbd75;
  border: 4px solid #b46a26;
  border-radius: 8px;
  transform: rotate(-13deg);
  content: "";
}

.full-box {
  background:
    radial-gradient(circle at 44% 20%, var(--pink) 0 12px, transparent 13px),
    radial-gradient(circle at 62% 22%, var(--blue) 0 13px, transparent 14px),
    radial-gradient(circle at 52% 8%, var(--mint) 0 11px, transparent 12px);
}

.step-card h3,
.product-card h3,
.love-grid strong {
  margin: 0;
  font-size: 23px;
  font-weight: 900;
}

.step-card p {
  max-width: 300px;
  margin: 6px auto 0;
  font-size: 17px;
  font-weight: 700;
}

.featured {
  padding: 18px 18px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  min-height: 382px;
  padding: 22px 46px 22px;
  overflow: hidden;
}

.badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  display: grid;
  place-items: center;
  min-width: 78px;
  min-height: 72px;
  padding: 8px;
  color: white;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
}

.badge.blue {
  background: var(--blue);
}

.badge.pink {
  background: var(--pink);
}

.badge.coral {
  background: var(--coral);
}

.product-art {
  position: relative;
  height: 184px;
  margin: -2px -8px 10px;
}

.product-card h3 {
  font-size: 25px;
}

.product-card p {
  min-height: 58px;
  margin: 5px 0 5px;
  font-size: 16px;
  font-weight: 700;
}

.price {
  display: block;
  margin-bottom: 12px;
  font-size: 27px;
  font-weight: 900;
}

.card-button {
  width: min(270px, 100%);
  min-height: 45px;
  margin: 0 auto;
  color: white;
  border-radius: 12px;
  font-size: 16px;
}

.blue-button {
  background: var(--blue);
}

.pink-button {
  background: var(--pink);
}

.yellow-button {
  background: #ffa900;
}

.smile,
.parcel,
.mug,
.gift-box,
.tumbler,
.candle-small,
.speaker-small,
.mega-box,
.buddy,
.cup {
  position: absolute;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: var(--soft-shadow);
}

.smile {
  left: 18px;
  bottom: 18px;
  width: 98px;
  height: 98px;
  color: #222;
  background: #ffdc3f;
  border-radius: 50%;
  font-size: 68px;
}

.parcel {
  left: 104px;
  bottom: 24px;
  width: 220px;
  height: 120px;
  background: #d99a48;
  border: 4px solid #b46a26;
  border-radius: 12px;
  font-size: 32px;
  line-height: 0.9;
  text-align: center;
  transform: rotate(-5deg);
}

.mug {
  right: 18px;
  bottom: 10px;
  width: 58px;
  height: 62px;
  background: #fff;
  border: 4px solid var(--blue);
  border-radius: 10px;
}

.mug::after {
  position: absolute;
  right: -20px;
  top: 18px;
  width: 18px;
  height: 24px;
  border: 4px solid var(--blue);
  border-left: 0;
  border-radius: 0 12px 12px 0;
  content: "";
}

.gift-box {
  left: 70px;
  bottom: 22px;
  width: 190px;
  height: 132px;
  background:
    linear-gradient(90deg, transparent 42%, #e83d80 43% 57%, transparent 58%),
    linear-gradient(0deg, transparent 42%, #e83d80 43% 57%, transparent 58%),
    #ffc2d9;
  border: 4px solid #df6e9c;
  border-radius: 16px;
}

.gift-box::before,
.gift-box::after {
  position: absolute;
  top: -58px;
  width: 78px;
  height: 58px;
  background: #ff8ec7;
  border: 4px solid #e83d80;
  border-radius: 60% 60% 20% 60%;
  content: "";
}

.gift-box::before {
  left: 42px;
  transform: rotate(-35deg);
}

.gift-box::after {
  right: 42px;
  transform: scaleX(-1) rotate(-35deg);
}

.tumbler {
  right: 38px;
  bottom: 28px;
  width: 70px;
  height: 116px;
  background: #ffadc3;
  border: 4px solid #cc738c;
  border-radius: 14px 14px 20px 20px;
}

.candle-small {
  right: 116px;
  bottom: 12px;
  width: 68px;
  height: 78px;
  color: #db8f4e;
  background: #f8e0b4;
  border: 4px solid #c38955;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1;
  text-align: center;
}

.speaker-small {
  left: 14px;
  bottom: 16px;
  width: 72px;
  height: 138px;
  background: repeating-linear-gradient(0deg, #111923 0 4px, #263344 4px 8px);
  border: 4px solid #111923;
  border-radius: 34px;
}

.mega-box {
  left: 92px;
  bottom: 24px;
  width: 224px;
  height: 138px;
  background: #d99a48;
  border: 4px solid #b46a26;
  border-radius: 12px;
  font-size: 33px;
  line-height: 0.9;
  text-align: center;
  transform: rotate(5deg);
}

.buddy {
  right: 80px;
  bottom: 22px;
  width: 70px;
  height: 92px;
  color: #ed3a34;
  background: #61cfff;
  border: 4px solid #2485c2;
  border-radius: 44% 44% 16px 16px;
  font-size: 30px;
}

.cup {
  right: 8px;
  bottom: 12px;
  width: 62px;
  height: 74px;
  background: #d7ecff;
  border: 4px solid #87bcea;
  border-radius: 10px;
}

.split-row,
.social-review-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  padding-top: 30px;
}

.inside {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.inside-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: white;
  box-shadow: var(--soft-shadow);
}

.inside-grid article {
  display: grid;
  place-items: center;
  min-height: 146px;
  padding: 14px 8px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.inside-grid article:last-child {
  border-right: 0;
}

.inside-grid span {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: var(--blue);
  font-size: 54px;
  font-weight: 900;
}

.inside-grid strong {
  font-size: 13px;
  line-height: 1.05;
}

.disclaimer {
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

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

.love-grid article {
  min-height: 170px;
  padding: 18px 12px;
  text-align: center;
}

.love-grid span {
  display: block;
  min-height: 52px;
  color: var(--coral);
  font-size: 46px;
  line-height: 1;
}

.love-grid strong {
  display: block;
  font-size: 16px;
  line-height: 1.05;
}

.love-grid p {
  margin: 9px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.unbox {
  position: relative;
  padding: 16px 18px 18px;
}

.section-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.social-icons {
  display: flex;
  gap: 12px;
  font-size: 0;
}

.social-icons span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: white;
  border-radius: 9px;
  font-size: 0;
  font-weight: 900;
}

.social-icons span:nth-child(1) {
  background: #111;
}

.social-icons span:nth-child(1)::before {
  font-size: 18px;
  content: "♪";
}

.social-icons span:nth-child(2) {
  background: linear-gradient(135deg, #8a3ffc, #ff3e8a, #ffc857);
}

.social-icons span:nth-child(2)::before {
  font-size: 20px;
  content: "◎";
}

.social-icons span:nth-child(3) {
  background: #ff2b1f;
}

.social-icons span:nth-child(3)::before {
  font-size: 17px;
  content: "▶";
}

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

.photo-grid article {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 178px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.02), rgba(23, 32, 51, 0.16)),
    url("./assets/customer-photos/customer-unboxing-1.png"),
    linear-gradient(135deg, #ffcc74, #ff8ec7 48%, #4da3ff);
  background-position: center;
  background-size: cover;
  border: 7px solid white;
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.photo-grid article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.02), rgba(23, 32, 51, 0.16)),
    url("./assets/customer-photos/customer-unboxing-2.png"),
    linear-gradient(135deg, #7ee6a8, #4da3ff 52%, #ffb22c);
  background-position: center;
  background-size: cover;
}

.photo-grid article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.02), rgba(23, 32, 51, 0.16)),
    url("./assets/customer-photos/customer-unboxing-3.png"),
    linear-gradient(135deg, #ff8ec7, #fff0a6 48%, #7ee6a8);
  background-position: center;
  background-size: cover;
}

.photo-grid article:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.02), rgba(23, 32, 51, 0.16)),
    url("./assets/customer-photos/customer-unboxing-4.png"),
    linear-gradient(135deg, #ffb22c, #ff6b4a 48%, #4da3ff);
  background-position: center;
  background-size: cover;
}

.photo-grid span {
  display: none;
}

.photo-grid i {
  display: none;
}

.unbox > p {
  margin: 12px 0 0;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
}

.floating-sticker {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  color: #10213b;
  border: 4px solid white;
  box-shadow: var(--soft-shadow);
  font-weight: 900;
}

.wow-small {
  top: -20px;
  left: -20px;
  width: 72px;
  height: 62px;
  background: #ffda36;
  border-radius: 50%;
  transform: rotate(-14deg);
}

.like {
  top: 24px;
  right: -22px;
  width: 62px;
  height: 62px;
  color: white;
  background: var(--blue);
  border-radius: 16px;
  font-size: 40px;
  transform: rotate(12deg);
}

.floating-sticker.heart {
  right: 24px;
  bottom: -22px;
  width: 58px;
  height: 58px;
  color: white;
  background: var(--pink);
  border-radius: 14px;
  font-size: 38px;
  transform: rotate(-12deg);
}

.reviews {
  position: relative;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-grid article {
  min-height: 202px;
  padding: 28px 22px 20px;
  text-align: center;
}

.stars {
  display: block;
  margin-bottom: 20px;
  color: #ffb000;
  font-size: 22px;
  letter-spacing: 0;
}

blockquote {
  margin: 0 auto 14px;
  font-size: 16px;
  font-weight: 700;
}

cite {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.faq {
  padding-top: 30px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
}

.faq details {
  border-radius: 14px;
  box-shadow: none;
  overflow: hidden;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 30px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "⌄";
  font-size: 22px;
}

.faq details[open] summary::after {
  transform: rotate(180deg);
}

.faq details p {
  margin: 0;
  padding: 0 30px 20px;
  font-size: 15px;
  font-weight: 700;
}

.final-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  min-height: 150px;
  margin-top: 34px;
  margin-bottom: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 23% 50%, rgba(255, 255, 255, 0.45), transparent 6%),
    linear-gradient(90deg, #ffbb32, #ffd955 48%, #ffad1f);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.final-cta::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(50deg, transparent 10%, var(--blue) 11% 12%, transparent 13%) 55px 40px / 120px 100px,
    linear-gradient(115deg, transparent 10%, var(--coral) 11% 12%, transparent 13%) 200px 22px / 120px 100px,
    linear-gradient(80deg, transparent 10%, var(--mint) 11% 12%, transparent 13%) 910px 38px / 120px 100px;
  content: "";
}

.final-cta h2 {
  z-index: 1;
  margin: 0;
  color: #082757;
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 900;
  text-align: center;
}

.cta-button {
  z-index: 1;
  min-width: 300px;
  color: white;
  background: #082757;
}

.cta-squiggle {
  position: absolute;
  left: 70px;
  width: 120px;
  height: 65px;
  border-bottom: 7px solid var(--blue);
  border-left: 7px solid var(--blue);
  border-radius: 0 0 0 70px;
  transform: rotate(-28deg);
}

.cta-question {
  position: absolute;
  left: 300px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 110px;
  font-weight: 900;
}

.cta-open {
  position: absolute;
  right: 252px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100px;
  height: 86px;
  color: var(--coral);
  background: var(--pink);
  border: 5px solid white;
  border-radius: 15px;
  font-size: 24px;
  font-weight: 900;
  line-height: 0.9;
  transform: rotate(11deg);
}

.cta-gift {
  position: absolute;
  right: 72px;
  z-index: 1;
  font-size: 80px;
  transform: rotate(8deg);
}

.site-footer {
  background: rgba(255, 255, 255, 0.62);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 0.65fr) 1.15fr;
  gap: 36px;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 14px;
}

.site-footer h3 {
  margin: 0 0 10px;
  font-size: 15px;
}

.site-footer nav,
.connect {
  display: grid;
  align-content: start;
  gap: 5px;
  font-size: 14px;
  font-weight: 700;
}

.connect-icons {
  display: flex;
  gap: 12px;
  margin: 4px 0 6px;
}

.connect-icons a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: white;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 900;
}

.connect-icons a:nth-child(1) {
  background: linear-gradient(135deg, #8a3ffc, #ff3e8a, #ffc857);
}

.connect-icons a:nth-child(2) {
  background: #111;
}

.connect-icons a:nth-child(3) {
  background: #ff2b1f;
}

.connect-icons a:nth-child(4) {
  background: #2d86ff;
}

.connect-icons a:nth-child(5) {
  background: #72808e;
}

.connect p {
  margin: 6px 0 0;
}

.copyright {
  margin: 0;
  padding: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
    padding: 16px 22px;
  }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-inline: 22px;
  }

  .hero-art {
    min-height: 520px;
  }

  .product-grid,
  .split-row,
  .social-review-row {
    grid-template-columns: 1fr;
  }

  .inside-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .love-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    width: calc(100% - 16px);
    max-width: calc(100vw - 16px);
    min-width: 0;
    gap: 12px;
    border-radius: 0 0 20px 20px;
  }

  .brand-box {
    width: 54px;
    height: 47px;
  }

  .box-flap {
    width: 27px;
    height: 18px;
    border-width: 2px;
  }

  .box-face {
    left: 8px;
    width: 40px;
    height: 32px;
    border-width: 2px;
    font-size: 18px;
  }

  .brand-text {
    font-size: 23px;
  }

  .header-cta {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 13px;
    font-size: 14px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    min-width: 0;
    padding-bottom: 2px;
    font-size: 14px;
  }

  .section-shell,
  .section-panel {
    width: min(calc(100vw - 24px), 560px);
    max-width: calc(100vw - 24px);
  }

  .hero {
    min-height: 0;
    padding: 28px 0 4px;
    overflow: hidden;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 13vw, 54px);
  }

  .hero-copy,
  .hero-copy h1,
  .hero-copy p,
  .button-row {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .hero-copy h1 span {
    display: block;
  }

  .hero-copy p {
    max-width: 100%;
    font-size: 18px;
  }

  .button-row {
    align-items: stretch;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .trust-icon {
    width: 42px;
    height: 42px;
    border-width: 3px;
    font-size: 12px;
  }

  .hero-art {
    width: 100%;
    min-height: 420px;
    transform: scale(0.78);
    transform-origin: top center;
    margin-bottom: -76px;
  }

  .hero-box {
    right: -42px;
    bottom: 22px;
  }

  .box-items {
    right: 30px;
    transform: scale(0.86);
  }

  .sticker.wow {
    left: -56px;
  }

  .sticker.lucky {
    right: -70px;
  }

  .sticker.open {
    right: 18px;
  }

  .q3,
  .arrow-right {
    display: none;
  }

  .section-panel {
    padding: 22px 14px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-title::before,
  .section-title::after {
    display: none;
  }

  .step-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-arrow {
    display: none;
  }

  .product-grid {
    gap: 18px;
  }

  .product-card {
    min-height: 0;
    padding: 20px;
  }

  .product-art {
    transform: scale(0.92);
    transform-origin: top center;
  }

  .inside-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inside-grid article:nth-child(2n) {
    border-right: 0;
  }

  .inside-grid article {
    min-height: 128px;
  }

  .love-grid,
  .review-grid,
  .faq-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid article {
    min-height: 210px;
  }

  .section-heading-row {
    display: grid;
  }

  .final-cta {
    display: grid;
    gap: 16px;
    min-height: 220px;
    padding: 28px 18px;
  }

  .cta-squiggle,
  .cta-question,
  .cta-open,
  .cta-gift {
    opacity: 0.28;
    transform: scale(0.75);
  }

  .cta-question {
    left: 28px;
  }

  .cta-open {
    right: 16px;
    top: 22px;
  }

  .cta-gift {
    right: 28px;
    bottom: 10px;
  }

  .cta-button {
    width: 100%;
    min-width: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 520px) {
  .site-header {
    width: min(calc(100vw - 16px), 374px);
    max-width: min(calc(100vw - 16px), 374px);
    margin-left: 8px;
    margin-right: auto;
  }

  .section-shell,
  .section-panel,
  .hero-copy,
  .hero-copy h1,
  .hero-copy p,
  .button-row {
    width: min(calc(100vw - 24px), 366px);
    max-width: min(calc(100vw - 24px), 366px);
    margin-left: 12px;
    margin-right: auto;
  }

  .hero-copy,
  .hero-copy h1,
  .hero-copy p,
  .button-row {
    margin-left: 0;
  }
}

@media (max-width: 430px) {
  .hero-art {
    transform: scale(0.64);
    margin-bottom: -145px;
  }

  .inside-grid {
    grid-template-columns: 1fr;
  }

  .inside-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .inside-grid article:last-child {
    border-bottom: 0;
  }
}
