/* ===========================================================
   wrapdrop — static Bootstrap 5 build
   Editorial terracotta + ink palette. All colors HSL.
   =========================================================== */

:root {
  --background: 32 38% 96%;
  --foreground: 20 30% 9%;
  --card: 32 30% 93%;
  --muted-foreground: 22 12% 38%;
  --border: 24 18% 84%;

  --primary: 17.21deg 53.53% 52.75%;
  --primary-glow: 17.21deg 53.53% 52.75%;
  --primary-foreground: 32 38% 96%;

  --ink: 18 35% 7%;
  --ink-foreground: 32 30% 92%;
  --ink-muted: 22 18% 60%;

  --radius: 1rem;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 1px 2px hsl(20 30% 9% / 0.04), 0 8px 30px -12px hsl(20 30% 9% / 0.18);
  --shadow-glow: 0 20px 60px -20px hsl(var(--primary) / 0.45);
  --shadow-ink: 0 30px 80px -30px hsl(var(--ink) / 0.6);

  --motion-fast: 180ms;
  --motion-base: 300ms;
  --motion-slow: 500ms;
  --motion-bounce: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-soft: cubic-bezier(0.16, 1, 0.3, 1);

  --hb-bg-color: #120706;
  --hb-light-color: #d98f8f;
  --hb-glow-color-1: rgba(217, 143, 143, 0.55);
  --hb-glow-color-2: rgba(245, 190, 190, 0.25);
  --hb-text-light: #f5ede6;
  --hb-text-muted: rgba(245, 237, 230, 0.72);
  --hb-accent: #c71610;
}

/* base */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  overflow-x: clip;
  max-width: 100vw;
}
/* =========================
   GLOBAL TYPOGRAPHY SYSTEM
========================= */

/* Body text */
body {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01";
}

/* All headings consistency */
h1,
h2,
h3,
h4,
h5,
h6,
.font-display,
.wd-logo,
.wd-section-title,
.wd-process-title,
.wd-personality-title,
.gift-category-title,
.gift-flow-head h2,
.gift-user-detail-head h2,
.builder-banner-content h1,
.hb-checkout-banner h1,
.hb-card-title h2,
.hb-summary-head h3,
.hb-cta-title {
  font-family: "Fraunces", Georgia, serif !important;
  letter-spacing: -0.02em;
  font-weight: 500 !important;
}

/* Buttons */
button,
.btn,
a.wd-tier-next-btn,
.gift-category-btn,
.gift-flow-action button,
a.gift-user-submit-btn,
.hb-place-order,
.hb-cta-btn {
  font-family: "Inter", sans-serif;
  font-weight: 500 !important;
}

/* Form fields */
input,
textarea,
select {
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

/* Remove random heavy weights from sections */
.wd-process-card h3,
.wd-note-content h3,
.gift-option-card strong,
.hb-total strong,
.wd-tier-price strong {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500 !important;
}

/* Footer headings */
.wd-footer-h {
  font-family: "Inter", sans-serif;
  font-weight: 500;
}
::selection {
  background: hsl(var(--primary) / 0.25);
  color: hsl(var(--ink));
}

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

/* keep bootstrap rows from peeking past container width on small screens */
.container {
  overflow-x: clip;
}

/* utility */
.font-display {
  font-family: "Fraunces", Georgia, serif;
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
}
.wd-italic {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-variation-settings:
    "SOFT" 100,
    "WONK" 1;
  color: hsl(var(--primary));
}
.text-primary {
  color: hsl(var(--primary)) !important;
}
.text-primary-glow {
  color: hsl(var(--primary-glow)) !important;
}
.text-ink-foreground {
  color: hsl(var(--ink-foreground));
}
.text-ink-foreground-95 {
  color: hsl(var(--ink-foreground) / 0.95);
}
.bg-background {
  background: hsl(var(--background));
}
.bg-card {
  background: hsl(var(--card));
}
.bg-ink {
  background: hsl(var(--ink));
}

/* ============ BUTTONS ============ */
.btn {
  border-radius: 999px;
  font-weight: 500;
  padding: 0.6rem 1.4rem;
  transition: all 300ms var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.btn-xl {
  padding: 1rem 1.8rem;
  font-size: 1rem;
}
.btn-hero {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-glow);
  border: none;
}
.btn-hero:hover {
  background: hsl(var(--primary-glow));
  color: hsl(var(--primary-foreground));
  transform: translateY(-2px);
}
.btn-ghost-ink {
  background: hsl(var(--ink-foreground) / 0.05);
  color: hsl(var(--ink-foreground));
  border: 1px solid hsl(var(--ink-foreground) / 0.15);
}
.btn-ghost-ink:hover {
  background: hsl(var(--ink-foreground) / 0.1);
  border-color: hsl(var(--ink-foreground) / 0.3);
  color: hsl(var(--ink-foreground));
}
.btn-outline-ink {
  background: transparent;
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--foreground) / 0.15);
}
.btn-outline-ink:hover {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
}

/* ============ NAV ============ */

nav#wdNav {
  padding: 10px;
}
.wd-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: all 300ms var(--ease);
}
.wd-nav.scrolled {
  background: hsl(23.08deg 52% 90.2%);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid hsl(var(--ink-foreground) / 0.1);
}
.wd-logo {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.75rem;
  color: hsl(var(--ink-foreground));
  letter-spacing: -0.02em;
}
.wd-logo span {
  color: hsl(var(--primary-glow));
}
.wd-nav-link {
  color: hsl(17.21deg 53.53% 52.75%);
  text-decoration: none;
  font-size: 17px;
  transition: color 200ms var(--ease);
}
.wd-nav-link:hover {
  color: #000;
}
.wd-mobile-menu {
  display: none;
  background: hsl(var(--ink));
  border-top: 1px solid hsl(var(--ink-foreground) / 0.1);
}
.wd-mobile-menu.open {
  display: block;
}
.wd-mobile-link {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 0.6rem;
  text-decoration: none;
  color: hsl(var(--ink-foreground) / 0.85);
  font-size: 0.95rem;
}
.wd-mobile-link:hover {
  background: hsl(var(--ink-foreground) / 0.05);
  color: hsl(var(--ink-foreground));
}

/* ============ HERO ============ */
.wd-hero.wd-hero-light {
  position: relative;
  background: #f7f1eb;
  padding: 8rem 0 6rem;
  overflow: hidden;
  isolation: isolate;
}

@media (min-width: 768px) {
  .wd-hero.wd-hero-light {
    padding: 150px 0px 80px;
  }
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
}

.wd-hero-light #heroParticles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.45; /* bright theme me subtle rakho */
}

.wd-hero-light .wd-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 15% 18%, rgba(199, 107, 70, 0.1), transparent 24%),
    radial-gradient(circle at 82% 30%, rgba(244, 196, 160, 0.18), transparent 28%),
    radial-gradient(circle at 55% 82%, rgba(199, 107, 70, 0.08), transparent 24%),
    linear-gradient(135deg, #fbf6f1 0%, #f3e3d8 45%, #f8efe8 100%);
}

.wd-hero-light .wd-hero-glow {
  position: absolute;
  right: -6rem;
  top: 3rem;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 107, 70, 0.14), transparent 70%);
  filter: blur(48px);
  opacity: 0.7;
  z-index: 2;
  pointer-events: none;
}

.wd-hero-light::before,
.wd-hero-light::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(65px);
  pointer-events: none;
  z-index: 2;
  opacity: 0.55;
}

.wd-hero-light::before {
  width: 240px;
  height: 240px;
  left: -40px;
  top: 110px;
  background: rgba(199, 107, 70, 0.12);
  animation: heroOrbFloatOne 10s ease-in-out infinite;
}

.wd-hero-light::after {
  width: 300px;
  height: 300px;
  right: 10%;
  bottom: 6%;
  background: rgba(255, 198, 160, 0.18);
  animation: heroOrbFloatTwo 14s ease-in-out infinite;
}

.wd-hero-light .wd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #c76b46;
  background: rgba(199, 107, 70, 0.07);
  border: 1px solid rgba(199, 107, 70, 0.18);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.wd-hero-light .wd-hero-title {
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  font-weight: 300;
  line-height: 0.95;
  color: #1a1411;
  margin: 0 0 2rem 0;
}

.wd-hero-light .wd-hero-title .wd-italic {
  color: #c76b46;
}

.wd-hero-light .text-ink-foreground-95 {
  color: #1a1411;
}

.wd-hero-light .wd-hero-sub {
  max-width: 33rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #6b5f59;
}

.wd-hero-light .wd-hero-sub .text-ink-foreground {
  color: #1a1411;
}

.wd-hero-light .btn-hero {
  background: #c76b46;
  color: #fff;
  border: none;
  box-shadow: 0 18px 40px rgba(199, 107, 70, 0.18);
}

.wd-hero-light .btn-hero:hover {
  background: #b85d38;
  color: #fff;
  transform: translateY(-2px);
}

.wd-hero-light .btn-ghost-ink {
  background: rgba(255, 255, 255, 0.55);
  color: #1a1411;
  border: 1px solid rgba(26, 20, 17, 0.12);
  backdrop-filter: blur(10px);
}

.wd-hero-light .btn-ghost-ink:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(199, 107, 70, 0.25);
  color: #1a1411;
}

.wd-hero-light .wd-stat-row {
  border-top: 1px solid rgba(26, 20, 17, 0.1);
}

.wd-hero-light .wd-stat-n {
  font-size: 1.8rem;
  color: #1a1411;
  line-height: 1.1;
}

.wd-hero-light .wd-stat-l {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8a7b73;
  margin-top: 0.45rem;
}

.wd-hero-light .wd-hero-card {
  position: relative;
  border-radius: 2rem;
  overflow: visible;
}

.wd-hero-light .wd-hero-card > img {
  border-radius: 2rem;
  box-shadow: 0 28px 70px rgba(72, 40, 23, 0.14);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  height: auto;
  border: 10px solid rgba(255, 255, 255, 0.55);
}

.wd-hero-light .wd-hero-veil {
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  background: linear-gradient(to top, rgba(29, 13, 8, 0.55), rgba(29, 13, 8, 0.08) 48%, transparent);
  pointer-events: none;
}

.wd-hero-light .wd-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.75rem 1.75rem 5rem;
  color: #fff8f2;
}

.wd-hero-light .wd-hero-meta {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255, 248, 242, 0.82);
}

.wd-hero-light .wd-hero-overlay-title {
  font-size: 2rem;
  line-height: 1;
  color: #fff7f1;
}

.wd-hero-light .wd-floating-badge {
  position: absolute;
  bottom: -1.2rem;
  left: -1.2rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 250, 246, 0.95);
  border: 1px solid rgba(199, 107, 70, 0.15);
  border-radius: 1.25rem;
  box-shadow: 0 18px 40px rgba(60, 30, 18, 0.1);
  animation: float-soft 6s ease-in-out infinite;
}

.wd-hero-light .wd-fb-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #c76b46;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wd-hero-light .wd-fb-title {
  font-size: 0.98rem;
  color: #1a1411;
}

.wd-hero-light .wd-fb-sub {
  font-size: 0.78rem;
  color: #7c6e67;
}

@media (max-width: 991px) {
  .wd-hero-light {
    text-align: center;
  }

  .wd-hero-light .wd-hero-sub {
    margin-inline: auto;
  }

  .wd-hero-light .wd-stat-row {
    justify-content: center;
  }

  .wd-hero-light .wd-floating-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -1rem;
  }
}

@media (max-width: 767px) {
  .wd-hero.wd-hero-light {
    padding: 7.5rem 0 5rem;
  }

  .wd-hero-light .wd-eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .wd-hero-light .wd-hero-title {
    line-height: 1;
  }

  .wd-hero-light .wd-hero-sub {
    font-size: 0.98rem;
  }

  .wd-hero-light .wd-hero-overlay {
    padding: 1.25rem 1.25rem 4rem;
  }

  .wd-hero-light .wd-hero-overlay-title {
    font-size: 1.6rem;
  }

  .wd-hero-light .wd-floating-badge {
    display: none !important;
  }
}

@keyframes heroOrbFloatOne {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-24px) translateX(12px);
  }
}

@keyframes heroOrbFloatTwo {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(22px) translateX(-14px);
  }
}

/* ============ TRUST MARQUEE ============ */
.wd-trust {
  background: hsl(var(--ink));
  border-top: 1px solid hsl(var(--ink-foreground) / 0.1);
  border-bottom: 1px solid hsl(var(--ink-foreground) / 0.1);
  padding: 1.1rem 0;
  overflow: hidden;
}
.wd-marquee {
  width: 100%;
  overflow: hidden;
}
.wd-marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.wd-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0;
  color: hsl(var(--ink-foreground) / 0.6);
  white-space: nowrap;
}
.wd-trust-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: hsl(var(--primary-glow));
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============ SECTIONS ============ */
.wd-section {
  padding: 60px 0;
  border-bottom: 1px solid hsl(var(--border));
}
@media (min-width: 768px) {
  .wd-section {
    padding: 60px 0;
  }
}
.wd-section-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}
.wd-section-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.05;
  color: hsl(var(--foreground));
  margin: 0;
}
.wd-section-sub {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

/* ============ HOW IT WORKS ============ */
.wd-process-section {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
  overflow: hidden;
}

.wd-process-section::before,
.wd-process-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.wd-process-section::before {
  width: 260px;
  height: 260px;
  top: -60px;
  left: -80px;
  background: rgba(255, 183, 77, 0.14);
}

.wd-process-section::after {
  width: 280px;
  height: 280px;
  bottom: -90px;
  right: -90px;
  background: rgba(214, 151, 99, 0.1);
}

.wd-process-section .container {
  position: relative;
  z-index: 2;
}

.wd-process-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b57642;
  margin-bottom: 14px;
}

.wd-process-title {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.08;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0;
}

.wd-process-title em {
  font-style: italic;
  color: #c76b46;
  font-weight: 500;
}

.wd-process-sub {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  max-width: 520px;
}

.wd-process-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.wd-process-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 58px;
  height: 2px;
  background: linear-gradient(90deg, rgba(181, 118, 66, 0.15), rgba(181, 118, 66, 0.45), rgba(181, 118, 66, 0.15));
  z-index: 0;
}

.wd-process-card {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(181, 118, 66, 0.12);
  border-radius: 28px;
  padding: 32px 24px 28px;
  min-height: 300px;
  box-shadow: 0 10px 35px rgba(20, 20, 20, 0.06);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
  z-index: 2;
  overflow: hidden;
  animation: wdFadeUp 0.8s ease both;
}

.wd-process-card:nth-child(2) {
  animation-delay: 0.08s;
}
.wd-process-card:nth-child(3) {
  animation-delay: 0.16s;
}
.wd-process-card:nth-child(4) {
  animation-delay: 0.24s;
}
.wd-process-card:nth-child(5) {
  animation-delay: 0.32s;
}

.wd-process-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 0%;
  background: linear-gradient(180deg, rgba(181, 118, 66, 0) 0%, rgba(181, 118, 66, 0.08) 100%);
  transition: height 0.45s ease;
  z-index: -1;
}

.wd-process-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(20, 20, 20, 0.12);
  border-color: rgba(181, 118, 66, 0.28);
}

.wd-process-card:hover::before {
  height: 100%;
}

.wd-step-badge {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(181, 118, 66, 0.18);
  opacity: 0.9;
  transition:
    transform 0.4s ease,
    -webkit-text-stroke 0.4s ease;
}

.wd-process-card:hover .wd-step-badge {
  transform: scale(1.06);
  -webkit-text-stroke: 1px rgba(181, 118, 66, 0.35);
}

.wd-process-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: linear-gradient(135deg, #b57642 0%, #d9985f 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 30px;
  position: relative;
  box-shadow: 0 10px 25px rgba(181, 118, 66, 0.14);
  transition:
    transform 0.45s ease,
    background 0.45s ease,
    color 0.45s ease;
}

.wd-process-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px dashed red;
  border-radius: 24px;
  animation: wdSpinSlow 12s linear infinite;
}

.wd-process-card:hover .wd-process-icon {
  transform: rotate(-6deg) scale(1.06);
  background: linear-gradient(135deg, #b57642 0%, #d9985f 100%);
  color: #fff;
}

.wd-process-card h3 {
  font-size: 1.35rem;
  line-height: 1.3;
  margin: 0 0 14px;
  color: #1f1f1f;
  font-weight: 700;
}

.wd-process-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.75;
  color: #666;
}

@keyframes wdFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wdSpinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  .wd-process-section {
    padding: 80px 0;
  }

  .wd-process-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .wd-process-line {
    display: none;
  }

  .wd-process-card {
    min-height: 280px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .wd-process-title {
    font-size: 2rem;
  }

  .wd-process-sub {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .wd-process-wrap {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .wd-process-card {
    min-height: auto;
    padding: 26px 20px 24px;
    border-radius: 22px;
  }

  .wd-process-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    font-size: 1.2rem;
    margin-bottom: 22px;
  }

  .wd-step-badge {
    font-size: 2.8rem;
    top: 16px;
    right: 16px;
  }

  .wd-process-card h3 {
    font-size: 1.2rem;
  }

  .wd-process-card p {
    font-size: 0.92rem;
  }
}

/* ============ PERSONALITIES ============ */
/*
.wd-personality-section {
  padding: 100px 0;
  background: hsl(var(--background));
  overflow: hidden;
}

.wd-personality-title {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.05;
  font-weight: 300;
  margin: 0;
  color: hsl(var(--foreground));
}

.wd-personality-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: hsl(var(--muted-foreground));
  margin: 0;
  max-width: 420px;
}

.wd-personality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: stretch;
}

.wd-pblob {
  position: relative;
  min-height: 285px;
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  border: 1px solid rgba(198, 174, 158, 0.45);
  box-shadow: 0 10px 24px rgba(40, 24, 16, 0.03);
}

.wd-pblob:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 18px 35px rgba(40, 24, 16, 0.08);
}

.wd-pblob-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  font-size: 2.6rem;
  background: rgba(255, 255, 255, 0.38);
}

.wd-pblob-name {
  font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 12px;
  color: hsl(var(--foreground));
}

.wd-pblob-sub {
  font-size: 0.92rem;
  line-height: 1.65;
  color: hsl(var(--muted-foreground));
  max-width: 220px;
}

.wd-pblob-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: hsl(var(--ink));
  color: hsl(var(--primary-glow));
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.wd-pblob .blurred {
  filter: blur(2px);
}

 Organic Shapes 
.wd-pblob-1 {
  border-radius: 42% 58% 47% 53% / 39% 42% 58% 61%;
  background: #f2efeb;
}
.wd-pblob-2 {
  border-radius: 35% 65% 42% 58% / 44% 38% 62% 56%;
  background: #f5e8e2;
}
.wd-pblob-3 {
  border-radius: 58% 42% 56% 44% / 46% 54% 46% 54%;
  background: #f3ecd8;
}
.wd-pblob-4 {
  border-radius: 41% 59% 48% 52% / 55% 39% 61% 45%;
  background: #ede7de;
}
.wd-pblob-5 {
  border-radius: 53% 47% 44% 56% / 42% 59% 41% 58%;
  background: #ebe9dc;
}
.wd-pblob-6 {
  border-radius: 44% 56% 61% 39% / 47% 41% 59% 53%;
  background: #ece7f0;
}
.wd-pblob-7 {
  border-radius: 51% 49% 57% 43% / 38% 54% 46% 62%;
  background: #e5ece4;
}
.wd-pblob-8 {
  border-radius: 39% 61% 55% 45% / 47% 36% 64% 53%;
  background: #e6e8ef;
}
.wd-pblob-9 {
  border-radius: 56% 44% 49% 51% / 45% 58% 42% 55%;
  background: #f3eadf;
}
.wd-pblob-10 {
  border-radius: 47% 53% 43% 57% / 61% 38% 62% 39%;
  background: #f2e7e3;
}
.wd-pblob-11 {
  border-radius: 60% 40% 51% 49% / 40% 60% 40% 60%;
  background: #eceee8;
}
.wd-pblob-locked {
  border-radius: 38% 62% 46% 54% / 56% 40% 60% 44%;
  background: linear-gradient(145deg, #20110d, #0f0806);
  border-color: rgba(255, 125, 66, 0.2);
}

.wd-pblob-locked .wd-pblob-name,
.wd-pblob-locked .wd-pblob-sub {
  color: #fff;
}

.wd-pblob-locked .wd-pblob-sub {
  color: rgba(255, 255, 255, 0.72);
}

.wd-pblob-locked .wd-pblob-icon {
  background: rgba(255, 125, 66, 0.08);
}
*/

/* SECTION */
.wd-personality-section {
  padding: 100px 0;
  background: #f6f1ec;
}

/* HEADING */
.wd-personality-title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.1;
  font-weight: 500;
  margin: 0;
  color: #2b1e18;
}

.wd-personality-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b5b52;
  max-width: 420px;
}

/* GRID */
.wd-personality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD */
.wd-pblob {
  position: relative;
  padding: 32px 24px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(200, 170, 150, 0.35);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  transition: all 0.3s ease;
  cursor: pointer;
}

/* HOVER EFFECT */
.wd-pblob:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  border-color: #c76b46;
}

/* ICON (NO CIRCLE NOW) */
.wd-pblob-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

/* TITLE */
.wd-pblob-name {
  font-size: 22px;
  font-weight: 500;
  color: #2b1e18;
  margin-bottom: 6px;
}

/* SUBTEXT (OPTIONAL - REMOVE IF NOT NEEDED) */
.wd-pblob-sub {
  font-size: 0.9rem;
  color: #7a6a60;
}

/* REMOVE ALL SHAPES */
.wd-pblob-1,
.wd-pblob-2,
.wd-pblob-3,
.wd-pblob-4,
.wd-pblob-5,
.wd-pblob-6,
.wd-pblob-7,
.wd-pblob-8,
.wd-pblob-9,
.wd-pblob-10,
.wd-pblob-11 {
  border-radius: 16px !important;
  background: #fff !important;
}

/* REMOVE DOODLES */
.wd-pblob-doodle {
  display: none;
}

/* LOCKED CARD */
.wd-pblob-locked {
  background: #a5502e;
  color: #fff;
  border: 1px solid rgba(255, 140, 90, 0.3);
}

.wd-pblob-locked .wd-pblob-name,
.wd-pblob-locked .wd-pblob-sub {
  color: #fff;
}

/* BADGE */
.wd-pblob-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #c76b46;
  color: #fff;
  font-size: 0.65rem;
  padding: 4px 8px;
  border-radius: 6px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .wd-personality-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .wd-personality-grid {
    grid-template-columns: 1fr;
  }
}

/* Doodles */
.wd-pblob-doodle {
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
}

.doodle-left {
  width: 30px;
  height: 70px;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 2px solid #9d7ccf;
  border-bottom: 2px solid #9d7ccf;
  border-radius: 0 0 0 24px;
}

.doodle-top {
  width: 24px;
  height: 24px;
  top: 16px;
  right: 26px;
  border-top: 2px solid #de8c69;
  border-right: 2px solid #de8c69;
  transform: rotate(18deg);
}

.doodle-dash {
  width: 120px;
  height: 120px;
  top: -10px;
  right: 0;
  border-top: 2px dashed #e1a73d;
  border-right: 2px dashed #e1a73d;
  border-radius: 50%;
}

.doodle-heart::before {
  content: "♡";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  color: #d06f57;
}

.doodle-wave {
  width: 60px;
  height: 30px;
  left: 18px;
  bottom: 14px;
  border-bottom: 2px solid #8caf56;
  border-radius: 0 0 40px 40px;
}

.doodle-spark::before {
  content: "✦";
  position: absolute;
  top: 18px;
  right: 18px;
  color: #9d7ccf;
  font-size: 28px;
}

.doodle-plane::before {
  content: "✈";
  position: absolute;
  right: 18px;
  top: 24px;
  color: #7fb287;
  font-size: 26px;
}

.doodle-wave-right {
  width: 52px;
  height: 28px;
  right: 12px;
  bottom: 16px;
  border-bottom: 2px solid #78a4e2;
  border-radius: 0 0 40px 40px;
}

.wd-personality-footer-text {
  text-align: center;
  margin-top: 34px;
  color: #a1725f;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 1199px) {
  .wd-personality-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .wd-personality-section {
    padding: 80px 0;
  }

  .wd-personality-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .wd-pblob {
    min-height: 260px;
  }
}

@media (max-width: 767px) {
  .wd-personality-section {
    padding: 65px 0;
  }

  .wd-personality-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wd-pblob {
    min-height: auto;
    padding: 24px 20px;
    border-radius: 32px !important;
  }

  .wd-pblob-icon {
    width: 72px;
    height: 72px;
    font-size: 2rem;
    margin-bottom: 18px;
  }

  .wd-pblob-name {
    font-size: 1.35rem;
  }

  .wd-pblob-sub {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .wd-pblob-doodle {
    display: none;
  }
}

/* ============ TIERS ============ */
.wd-tier-radio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: stretch;
}

.wd-tier-radio {
  position: relative;
  min-height: auto;
  padding: 34px 30px;
  border: 1px solid hsl(var(--border));
  border-radius: 1.5rem;
  background: hsl(var(--background));
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: all 300ms var(--ease);
}

.wd-tier-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.wd-tier-radio:hover {
  transform: translateY(-6px);
  border-color: hsl(var(--primary) / 0.45);
  box-shadow: var(--shadow-soft);
}

.wd-tier-check {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 24px;
  height: 24px;
  border: 1.5px solid hsl(var(--primary) / 0.35);
  border-radius: 50%;
  background: transparent;
}

.wd-tier-radio input:checked ~ .wd-tier-check {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 5px hsl(var(--primary) / 0.12);
}

.wd-tier-radio input:checked ~ .wd-tier-check::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: hsl(var(--primary));
}

.wd-tier-radio:has(input:checked) {
  border-color: hsl(var(--primary));
  background: linear-gradient(180deg, hsl(var(--background)), hsl(var(--primary) / 0.08));
  box-shadow: 0 22px 55px hsl(var(--primary) / 0.16);
}

.wd-tier-radio.featured {
  background: hsl(17.21deg 53.53% 52.75%);
  color: hsl(var(--ink-foreground));
  border-color: hsl(17.21deg 62.12% 26.52%);
  transform: translateY(-22px);
}

.wd-tier-radio.featured:hover {
  transform: translateY(-28px);
}

.wd-tier-radio.featured:has(input:checked) {
  background: linear-gradient(180deg, hsl(var(--ink)), #24100c);
  box-shadow: 0 26px 65px hsl(var(--ink) / 0.4);
}

.wd-tier-pop {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: hsl(17.21deg 54.36% 39.28%);
  color: hsl(var(--primary-foreground));
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
label.wd-tier-radio.featured .wd-tier-price strong {
  font-size: 2.7rem;
  font-weight: 500;
  color: #fff;
}
.wd-tier-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 14px;
}

.wd-tier-radio.featured .wd-tier-label {
  color: hsl(var(--ink-foreground) / 0.6);
}

.wd-tier-name {
  font-size: 1.7rem;
  line-height: 1.1;
  color: hsl(var(--foreground));
}

.wd-tier-radio.featured .wd-tier-name {
  color: hsl(var(--ink-foreground));
}

.wd-tier-price {
  margin-top: 28px;
  color: hsl(var(--primary));
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.wd-tier-price small {
  font-size: 1rem;
  color: currentColor;
}

.wd-tier-price strong {
  font-size: 2.7rem;
  font-weight: 500;
}

.wd-tier-items {
  margin-top: 4px;
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
}

.wd-tier-radio.featured .wd-tier-items {
  color: hsl(var(--ink-foreground) / 0.7);
}

.wd-tier-perks {
  display: grid;
  gap: 16px;
  margin-top: 30px;
  color: hsl(var(--foreground) / 0.88);
}

.wd-tier-perks span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.35;
}

.wd-tier-perks i {
  color: hsl(var(--primary));
  margin-top: 2px;
}

.wd-tier-radio.featured .wd-tier-perks {
  color: hsl(var(--ink-foreground) / 0.92);
}

.wd-tier-next-wrap {
  text-align: center;
  margin-top: 34px;
}

a.wd-tier-next-btn,
button.wd-tier-next-btn {
  border: 0;
  border-radius: 999px;
  padding: 17px 34px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-glow);
  transition: all 300ms var(--ease);
  text-decoration: none;
  font-family: inherit;
}

a.wd-tier-next-btn:hover,
button.wd-tier-next-btn:hover {
  transform: translateY(-3px);
  background: hsl(var(--primary-glow));
}

a.wd-tier-next-btn:focus-visible,
.wd-tier-radio input:focus-visible ~ .wd-tier-check {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 4px;
}

@media (max-width: 1199px) {
  .wd-tier-radio-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .wd-tier-radio.featured {
    transform: none;
  }

  .wd-tier-radio.featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 767px) {
  .wd-tier-radio-grid {
    grid-template-columns: 1fr;
  }

  .wd-tier-radio {
    min-height: auto;
    padding: 28px 24px;
  }

  .wd-tier-next-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============ NOTES ============ */
.wd-note-redesign {
  padding: 90px 0;
  background: #f5f1eb;
  overflow: hidden;
}

.wd-note-redesign .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

.wd-note-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

/* Common card style */
.wd-note-card {
  position: relative;
  border-radius: 34px;
  padding: 34px;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.wd-note-card:hover {
  transform: translateY(-6px);
}

/* Soft card */
.wd-note-card-soft {
  background: #f2e7e1;
  border: 1px dashed rgba(199, 107, 70, 0.35);
  box-shadow: 0 18px 40px rgba(90, 55, 35, 0.04);
}

.wd-note-card-soft::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  bottom: -50px;
  border-radius: 50%;
  background: rgba(199, 107, 70, 0.05);
  filter: blur(10px);
}

.wd-note-card-soft .wd-note-icon {
  background: rgba(199, 107, 70, 0.12);
  color: #c76b46;
}

/* Dark card */
.wd-note-card-dark {
  background: #c76b46;
  color: #fff;
  box-shadow: 0 22px 50px rgba(19, 7, 4, 0.22);
}

.wd-note-card-dark .wd-note-icon {
  background: rgb(255 255 255 / 18%);
  color: #fff;
}
.wd-note-card-dark .wd-note-mini,
.wd-note-card-dark h3 {
  color: #fff;
}
.wd-note-card-dark .wd-note-content p {
  color: #fff;
  max-width: 95%;
}
.wd-note-card-dark p {
  color: rgba(255, 255, 255, 0.78);
}

/* Top layout */
.wd-note-top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.wd-note-icon {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.35s ease;
}

.wd-note-card:hover .wd-note-icon {
  transform: scale(1.08) rotate(-8deg);
}

.wd-note-content {
  flex: 1;
}

.wd-note-mini {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c76b46;
  margin-bottom: 14px;
  font-weight: 600;
}

.wd-note-content h3 {
  font-size: 2rem;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #1a130f;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
}

.wd-note-content p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.85;
  color: #655e5a;
  max-width: 95%;
}

/* Soft card footer */
.wd-note-line {
  height: 1px;
  background: rgba(199, 107, 70, 0.16);
  margin: 26px 0 18px;
  position: relative;
  z-index: 2;
}

.wd-note-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #8a756d;
  position: relative;
  z-index: 2;
}

/* Dark badge */
.wd-note-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgb(255 255 255 / 12%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

/* Glow */
.wd-note-glow {
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 125, 66, 0.2) 0%, rgba(255, 125, 66, 0) 70%);
  filter: blur(16px);
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1199px) {
  .wd-note-content h3 {
    font-size: 1.7rem;
  }

  .wd-note-content p {
    font-size: 0.96rem;
    max-width: 100%;
  }

  .wd-note-card {
    padding: 28px;
  }
}

@media (max-width: 991px) {
  .wd-note-redesign {
    padding: 75px 0;
  }

  .wd-note-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .wd-note-redesign {
    padding: 60px 0;
  }

  .wd-note-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .wd-note-top {
    gap: 16px;
  }

  .wd-note-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 1.2rem;
  }

  .wd-note-content h3 {
    font-size: 1.35rem;
  }

  .wd-note-content p {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .wd-note-footer {
    font-size: 12px;
    flex-direction: column;
    gap: 8px;
  }
}

/* ============ FINAL CTA ============ */
.wd-final-cta {
  position: relative;
  background: hsl(var(--ink));
  padding: 50px 0;
  isolation: isolate;
  overflow: hidden;
}

.wd-final-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, hsl(var(--primary) / 0.45), transparent 70%);
  opacity: 0.6;
  z-index: -1;
}
.wd-final-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  color: hsl(var(--ink-foreground));
  margin: 1.5rem auto 0;
}
.wd-final-sub {
  margin: 1.5rem auto 0;
  max-width: 32rem;
  color: hsl(var(--ink-foreground) / 0.65);
  font-size: 1rem;
}

/* ============ FOOTER ============ */
.wd-footer {
  background: hsl(var(--card));
  padding: 5rem 0 2.5rem;
}
.wd-footer .wd-logo {
  color: hsl(var(--foreground));
  font-size: 1.85rem;
}
.wd-footer .wd-logo span {
  color: hsl(var(--primary));
}
.wd-footer-tag {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  max-width: 22rem;
  margin: 1rem 0 1.5rem;
}
.wd-footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--foreground));
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 200ms var(--ease);
}
.wd-footer-social:hover {
  color: hsl(var(--primary));
}
.wd-footer-h {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}
.wd-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wd-footer ul li {
  margin-bottom: 0.6rem;
}
.wd-footer ul a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 200ms var(--ease);
}
.wd-footer ul a:hover {
  color: hsl(var(--foreground));
}
.wd-footer-top {
  border-bottom: 1px solid hsl(var(--border));
}
.wd-footer-bottom {
  padding-top: 2rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.wd-hover-lift {
  transition:
    transform var(--motion-base) var(--motion-soft),
    box-shadow var(--motion-base) var(--motion-soft),
    border-color var(--motion-base) var(--motion-soft),
    background-color var(--motion-base) var(--motion-soft),
    color var(--motion-base) var(--motion-soft);
  will-change: transform;
}

.wd-hover-lift:hover {
  transform: translateY(-4px);
}

.wd-hover-glow:hover {
  box-shadow: 0 18px 40px -18px hsl(var(--primary) / 0.45);
}
.wd-occasion-redesign {
  position: relative;
  padding: 100px 0;
  background: #f5f1eb;
  overflow: hidden;
  border-bottom: 1px solid rgba(198, 174, 158, 0.35);
}

.wd-occasion-title {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.04;
  font-weight: 300;
  color: hsl(var(--foreground));
  margin: 0;
}

.wd-occasion-sub {
  margin: 0;
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: hsl(var(--muted-foreground));
}

.wd-occasion-wrap {
  position: relative;
  margin-top: 54px;
  padding: 22px 0 10px;
}

.wd-occasion-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.55;
}

.wd-occasion-bg-shape.shape-one {
  width: 240px;
  height: 240px;
  left: -40px;
  top: 10px;
  background: rgba(215, 124, 83, 0.12);
}

.wd-occasion-bg-shape.shape-two {
  width: 260px;
  height: 260px;
  right: 40px;
  bottom: -20px;
  background: rgba(217, 195, 161, 0.2);
}

.wd-occasion-cloud {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 14px;
  z-index: 2;
}

.wd-occasion-pill {
  position: relative;
  border: 1px solid rgba(198, 174, 158, 0.55);
  background: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: hsl(var(--foreground));
  border-radius: 999px;
  padding: 15px 22px;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease,
    color 0.32s ease;
  box-shadow: 0 8px 24px rgba(39, 24, 15, 0.04);
}

.wd-occasion-pill:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(199, 107, 70, 0.45);
  box-shadow: 0 16px 30px rgba(39, 24, 15, 0.08);
  color: #c76b46;
}

.wd-occasion-pill.hot {
  background: rgba(199, 107, 70, 0.08);
  color: #c76b46;
  border-color: rgba(199, 107, 70, 0.28);
}

.wd-occasion-pill.hot:hover {
  background: #c76b46;
  color: #fff;
  border-color: #c76b46;
}

.wd-occasion-pill-cta {
  border-style: dashed;
  border-color: rgba(199, 107, 70, 0.35);
  color: #c76b46;
  background: rgba(199, 107, 70, 0.04);
  font-weight: 500;
}

.wd-occasion-pill-cta i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.wd-occasion-pill-cta:hover {
  background: rgba(199, 107, 70, 0.1);
  color: #c76b46;
}

.wd-occasion-pill-cta:hover i {
  transform: translateX(4px);
}

/* Reveal animation */
.reveal-up {
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Floating motion */
.wd-occasion-pill:nth-child(3n) {
  animation: wdFloatOne 5.5s ease-in-out infinite;
}

.wd-occasion-pill:nth-child(4n) {
  animation: wdFloatTwo 6.5s ease-in-out infinite;
}

@keyframes wdFloatOne {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes wdFloatTwo {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

/* Tablet */
@media (max-width: 991px) {
  .wd-occasion-redesign {
    padding: 80px 0;
  }

  .wd-occasion-wrap {
    margin-top: 40px;
  }

  .wd-occasion-pill {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .wd-occasion-redesign {
    padding: 65px 0;
  }

  .wd-occasion-title {
    font-size: 2.3rem;
    line-height: 1.1;
  }

  .wd-occasion-sub {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .wd-occasion-wrap {
    margin-top: 30px;
    padding-top: 10px;
  }

  .wd-occasion-cloud {
    gap: 12px;
  }

  .wd-occasion-pill {
    padding: 13px 16px;
    font-size: 0.92rem;
  }
}

.wd-logo img {
  width: 250px;
}

.wave-demo-bg {
  position: absolute;
  top: -40px;
  left: 50%;
  width: min(1200px, 100%);
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08), transparent 50%);
  filter: blur(30px);
}

.wave-demo-wrap {
  position: relative;
  width: 100vw;
  max-width: 1100px;
  min-width: 280px;
  z-index: 2;
}

.wave-path-wrap {
  position: relative;
  width: 100%;
  height: 1px;
  margin-bottom: 40px;
}

.wave-hover-area {
  position: relative;
  top: -20px;
  z-index: 10;
  width: 100%;
  height: 40px;
  transition:
    top 0.3s ease,
    height 0.3s ease;
}

.wave-hover-area:hover {
  top: -150px;
  height: 300px;
}

.wave-svg {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 300px;
  overflow: visible;
}

.wave-svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  color: rgb(199 107 70);
}

/* Tablet */
@media (max-width: 991px) {
  .wave-demo-wrap {
    width: 85vw;
  }

  .wave-content-row {
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .wave-demo-section {
    min-height: auto;
    padding: 80px 16px;
  }

  .wave-demo-wrap {
    width: 100%;
  }
  .wave-label {
    margin-top: 0;
  }
}

.glitter-cursor-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.glitter-particle {
  position: fixed;
  width: 10px;
  height: 10px;
  pointer-events: none;
  border-radius: 50%;
  animation: glitterFall 1.2s ease-out forwards;
  z-index: 9999;
}

/* Different particle shapes */
.glitter-particle.square {
  border-radius: 2px;
}

.glitter-particle.star {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.glitter-particle.heart {
  clip-path: path(
    "M50 15 
     C50 -5, 90 -5, 90 25 
     C90 55, 50 80, 50 80 
     C50 80, 10 55, 10 25 
     C10 -5, 50 -5, 50 15"
  );
}

@keyframes glitterFall {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  100% {
    opacity: 0;
    transform: translate(calc(-30px + (60px * var(--random-x))), 60px) scale(0.2) rotate(240deg);
  }
}

/* Disable on mobile */
@media (max-width: 991px) {
  .glitter-cursor-container {
    display: none;
  }
}

.hb-aurora-cta {
  position: relative;
  overflow: hidden;
  background: #c76b46;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  isolation: isolate;
}

.hb-aurora-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

/* subtle animated background grid */
.hb-aurora-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 40px;
  opacity: 0.22;
  animation: hbMoveGrid 16s linear infinite;
}

/* extra atmosphere glow */
.hb-aurora-scene::after {
  content: "";
  position: absolute;
  width: 65%;
  height: 55%;
  left: 50%;
  bottom: -10%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(199, 22, 16, 0.15), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.hb-floor {
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--hb-glow-color-1) 0%, rgba(199, 22, 16, 0.12) 35%, transparent 72%);
  filter: blur(35px);
  opacity: 0.85;
  animation: hbFloorGlow 5s ease-in-out infinite;
}

.hb-main-column {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  width: 180px;
  height: 320px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(199, 22, 16, 0.18) 25%,
    rgba(255, 120, 90, 0.14) 50%,
    rgba(199, 22, 16, 0.06) 100%
  );
  filter: blur(22px);
  opacity: 0.75;
  animation: hbMainGlow 3.8s ease-in-out infinite alternate;
}

.hb-light-stream-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hb-light-beam {
  position: absolute;
  bottom: -20%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    var(--hb-glow-color-2) 30%,
    var(--hb-glow-color-1) 55%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 999px;
  filter: blur(1px);
  box-shadow:
    0 0 12px rgba(199, 22, 16, 0.35),
    0 0 24px rgba(255, 90, 70, 0.18);
  animation-name: hbRise, hbFade;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
}

/* content */
.hb-cta-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hb-cta-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 140, 120, 0.95);
  margin: 0 0 18px;
}

.hb-cta-title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  font-weight: 300;
  color: var(--hb-text-light);
}

.hb-cta-title span {
  color: #fff;
  font-style: italic;
}

.hb-cta-sub {
  margin: 22px auto 0;
  max-width: 620px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--hb-text-muted);
}

.hb-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hb-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hb-cta-btn.primary {
  background: #fff;
  color: #c76b46;
  box-shadow: 0 18px 40px rgba(199, 22, 16, 0.25);
  border: 1px solid #c76b46;
}
.hb-cta-btn.primary:hover {
  transform: translateY(-3px);
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.hb-cta-btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--hb-text-light);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.hb-cta-btn.secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

/* animations */
@keyframes hbRise {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120%);
    opacity: 0;
  }
}

@keyframes hbFade {
  0%,
  100% {
    opacity: 0;
  }
  5%,
  80% {
    opacity: 0.72;
  }
}

@keyframes hbFloorGlow {
  0%,
  100% {
    transform: translateX(-50%) scale(0.92);
    opacity: 0.7;
  }
  50% {
    transform: translateX(-50%) scale(1.08);
    opacity: 1;
  }
}

@keyframes hbMainGlow {
  from {
    opacity: 0.55;
    filter: blur(28px);
  }
  to {
    opacity: 0.82;
    filter: blur(16px);
  }
}

@keyframes hbMoveGrid {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -80px -40px;
  }
}

/* responsive */
@media (max-width: 767px) {
  .hb-aurora-cta {
    min-height: 500px;
    padding: 75px 16px;
  }

  .hb-main-column {
    width: 120px;
    height: 240px;
    bottom: 50px;
  }

  .hb-floor {
    height: 170px;
  }

  .hb-cta-sub {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .hb-cta-actions {
    gap: 12px;
  }

  .hb-cta-btn {
    width: 100%;
    max-width: 260px;
  }
}

.wd-occasion-radio-form {
  position: relative;
}

.wd-occasion-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
  align-items: center;
}

.wd-occasion-tab {
  position: relative;
  display: inline-flex;
  cursor: pointer;
  user-select: none;
}

.wd-occasion-tab input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.wd-occasion-tab span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(26, 20, 17, 0.12);
  background: rgba(255, 255, 255, 0.58);
  color: #1a1411;
  font-size: 1.02rem;
  font-weight: 500;
  box-shadow: 0 10px 24px rgba(72, 40, 23, 0.04);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    color 260ms ease;
}

.wd-occasion-tab:hover span {
  transform: translateY(-4px);
  border-color: rgba(199, 107, 70, 0.38);
  box-shadow: 0 18px 34px rgba(72, 40, 23, 0.09);
}

.wd-occasion-tab.hot span {
  color: #c76b46;
  background: rgba(199, 107, 70, 0.07);
  border-color: rgba(199, 107, 70, 0.22);
}

.wd-occasion-tab input:checked + span {
  background: #c76b46;
  color: #fff;
  border-color: #c76b46;
  box-shadow: 0 18px 38px rgba(199, 107, 70, 0.24);
  transform: translateY(-4px);
}

.wd-occasion-tab input:checked + span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22);
}

.wd-occasion-tab input:focus-visible + span {
  outline: 2px solid #c76b46;
  outline-offset: 4px;
}

.wd-occasion-more {
  text-decoration: none;
}

.wd-occasion-more span {
  color: #c76b46;
  border-style: dashed;
  border-color: rgba(199, 107, 70, 0.35);
  background: rgba(199, 107, 70, 0.04);
}

.wd-occasion-more:hover span {
  background: rgba(199, 107, 70, 0.1);
  color: #c76b46;
}

.wd-occasion-submit-wrap {
  margin-top: 34px;
  text-align: center;
}

.wd-occasion-submit {
  border: 0;
  border-radius: 999px;
  padding: 17px 34px;
  background: #c76b46;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 40px rgba(199, 107, 70, 0.22);
  transition: all 260ms ease;
}

.wd-occasion-submit:hover {
  background: #a95534;
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .wd-occasion-tabs {
    gap: 10px;
  }

  .wd-occasion-tab span {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .wd-occasion-submit {
    width: 100%;
    justify-content: center;
  }
}

.gift-category-section {
  padding: 50px 0;
  background: #fbf6f1;
  overflow: hidden;
}

.gift-category-head {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: end;
  margin-bottom: 46px;
}

.gift-category-title {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
  font-weight: 300;
  color: #1a1411;
  margin: 0;
}

.gift-category-title em {
  color: #c76b46;
  font-style: italic;
}

.gift-category-head p {
  margin: 0;
  color: #6b5f59;
  font-size: 1.05rem;
  line-height: 1.8;
}

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

.gift-category-card {
  position: relative;
  min-height: 190px;
  border-radius: 34px;
  padding: 26px 22px;
  background: #fffaf6;
  border: 1px solid rgba(199, 107, 70, 0.16);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(72, 40, 23, 0.04);
}

.gift-category-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -70px -40px;
  height: 110px;
  background: radial-gradient(circle, rgba(199, 107, 70, 0.12), transparent 70%);
  opacity: 0;
  transition: 0.35s ease;
}

.gift-category-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gift-category-check {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(199, 107, 70, 0.4);
  border-radius: 50%;
  background: transparent;
  transition: 0.3s ease;
}

.gift-category-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(199, 107, 70, 0.08);
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin-bottom: 18px;
  transition: 0.35s ease;
}

.gift-category-name {
  position: relative;
  z-index: 2;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.2;
  color: #1a1411;
  text-align: center;
}

.gift-category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(199, 107, 70, 0.36);
  box-shadow: 0 22px 48px rgba(72, 40, 23, 0.09);
}

.gift-category-card:hover .gift-category-icon {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(199, 107, 70, 0.14);
}

.gift-category-card:has(input:checked) {
  background: #c76b46;
  border-color: #c76b46;
  box-shadow: 0 24px 55px rgba(199, 107, 70, 0.22);
}

.gift-category-card:has(input:checked)::before {
  opacity: 1;
}

.gift-category-card input:checked ~ .gift-category-check {
  border-color: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18);
}

.gift-category-card input:checked ~ .gift-category-check::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #fff;
}

.gift-category-card input:checked ~ .gift-category-icon {
  background: rgba(255, 255, 255, 0.18);
}

.gift-category-card input:checked ~ .gift-category-name {
  color: #fff;
}

.gift-category-card.hot {
  background: #fff2ec;
}

.gift-category-card.locked {
  background: #1a1411;
  border-color: rgba(199, 107, 70, 0.4);
}

.gift-category-card.locked .gift-category-name {
  color: #fff;
}

.gift-category-card.locked .gift-category-icon {
  background: rgba(255, 255, 255, 0.1);
}

.gift-category-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(199, 107, 70, 0.16);
  color: #c76b46;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.gift-category-btn-wrap {
  text-align: center;
  margin-top: 38px;
}

.gift-category-btn {
  border: 0;
  background: #c76b46;
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(199, 107, 70, 0.22);
  transition: 0.3s ease;
}

.gift-category-btn:hover {
  background: #a95534;
  transform: translateY(-3px);
}

.gift-category-card input:focus-visible ~ .gift-category-check {
  outline: 2px solid #c76b46;
  outline-offset: 5px;
}

@media (max-width: 1199px) {
  .gift-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .gift-category-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

@media (max-width: 575px) {
  .gift-category-section {
    padding: 70px 0;
  }

  .gift-category-grid {
    grid-template-columns: 1fr;
  }

  .gift-category-card {
    min-height: 155px;
  }

  .gift-category-btn {
    width: 100%;
    justify-content: center;
  }
}

.gift-flow-section {
  padding: 50px 0;
  background: #fbf6f1;
}

.gift-flow-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.gift-flow-head h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 300;
  color: #1a1411;
  margin: 0;
}

.gift-flow-head p {
  color: #6b5f59;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 16px;
}

.gift-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.gift-tab {
  position: relative;
  cursor: pointer;
}

.gift-tab input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gift-tab span {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(199, 107, 70, 0.18);
  color: #1a1411;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(72, 40, 23, 0.04);
  transition: 0.3s ease;
}

.gift-tab:hover span {
  transform: translateY(-3px);
  border-color: rgba(199, 107, 70, 0.4);
}

.gift-tab input:checked + span {
  background: #c76b46;
  color: #fff;
  border-color: #c76b46;
  box-shadow: 0 18px 40px rgba(199, 107, 70, 0.2);
}

.gift-options {
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  animation: giftFadeUp 0.45s ease both;
}

.gift-options.active {
  display: grid;
}

.gift-option-card {
  position: relative;
  min-height: 220px;
  padding: 24px 20px;
  border-radius: 28px;
  background: #fffaf6;
  border: 1px solid rgba(199, 107, 70, 0.16);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.35s ease;
  overflow: hidden;
}

.gift-option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gift-check {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(199, 107, 70, 0.45);
  border-radius: 50%;
}

.gift-icon {
  font-size: 50px;
  margin-bottom: 18px;
}

.gift-icon-bi {
  font-size: 0;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #fdf4f1;
  flex-shrink: 0;
}

.gift-icon-bi i {
  font-size: 28px;
  color: #c2603e;
}

.gift-option-card strong {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #c76b46;
  font-weight: 500;
}

.gift-option-card small {
  color: #6b5f59;
  line-height: 1.6;
  margin-top: 8px;
}

.gift-option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(72, 40, 23, 0.08);
  border-color: rgba(199, 107, 70, 0.38);
}

.gift-option-card:has(input:checked) {
  background: #c76b46;
  border-color: #c76b46;
  box-shadow: 0 24px 55px rgba(199, 107, 70, 0.22);
}

.gift-option-card input:checked ~ .gift-check {
  border-color: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18);
}

.gift-option-card input:checked ~ .gift-check::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #fff;
}

.gift-option-card:has(input:checked) strong,
.gift-option-card:has(input:checked) small {
  color: #fff;
}

.gift-flow-action {
  margin-top: 36px;
  text-align: center;
}

.gift-flow-action button {
  border: 0;
  background: #c76b46;
  color: #fff;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(199, 107, 70, 0.22);
}

@keyframes giftFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1199px) {
  .gift-options {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .gift-options {
    grid-template-columns: 1fr;
  }

  .gift-tab span {
    min-height: 48px;
    padding: 0 18px;
  }

  .gift-flow-action button {
    width: 100%;
  }
}

.gift-user-detail-section {
  padding: 50px 0;
  background: #fbf6f1;
}

.gift-user-detail-box {
  position: relative;
  background: #fffaf6;
  border: 1px solid rgba(199, 107, 70, 0.18);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 24px 70px rgba(72, 40, 23, 0.08);
  overflow: hidden;
}

.gift-user-detail-box::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: rgba(199, 107, 70, 0.08);
  filter: blur(8px);
}

.gift-user-detail-head {
  position: relative;
  z-index: 2;
  margin-bottom: 34px;
}

.gift-user-detail-head h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.04;
  font-weight: 300;
  color: #1a1411;
  margin: 0;
}

.gift-user-detail-head p {
  margin: 14px 0 0;
  color: #6b5f59;
  font-size: 1.02rem;
  line-height: 1.7;
}

.gift-user-form-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 20px;
}

.gift-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gift-field.full {
  grid-column: 1 / -1;
}

.gift-field label {
  font-weight: 700;
  color: #1a1411;
  font-size: 0.95rem;
}

.gift-field input,
.gift-field textarea {
  width: 100%;
  border: 1px solid rgba(26, 20, 17, 0.12);
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  color: #1a1411;
  outline: none;
  transition: 0.25s ease;
}

.gift-field textarea {
  resize: vertical;
}

.gift-field input::placeholder,
.gift-field textarea::placeholder {
  color: #9a8a82;
}

.gift-field input:focus,
.gift-field textarea:focus {
  border-color: #c76b46;
  box-shadow: 0 0 0 4px rgba(199, 107, 70, 0.12);
}

.gift-user-submit-wrap {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  text-align: right;
}

a.gift-user-submit-btn,
button.gift-user-submit-btn {
  border: 0;
  background: #c76b46;
  color: #fff;
  padding: 17px 34px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 40px rgba(199, 107, 70, 0.22);
  transition: 0.3s ease;
  text-decoration: none;
  font-family: inherit;
  font-size: 1rem;
}

a.gift-user-submit-btn:hover,
button.gift-user-submit-btn:hover {
  background: #a95534;
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .gift-user-detail-section {
    padding: 65px 0;
  }

  .gift-user-form-grid {
    grid-template-columns: 1fr;
  }

  .gift-user-submit-wrap {
    text-align: center;
  }

  a.gift-user-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

.builder-main-banner {
  position: relative;
  padding: 120px 0 90px;
  background: radial-gradient(circle at 18% 25%, rgba(199, 107, 70, 0.12), transparent 28%),
    radial-gradient(circle at 82% 35%, rgba(255, 198, 160, 0.22), transparent 30%),
    linear-gradient(135deg, #fbf6f1 0%, #f3e5dc 50%, #fffaf6 100%);
  overflow: hidden;
  border-bottom: 1px solid rgba(199, 107, 70, 0.16);
}

/* FIXED GIFT BACKGROUND */
.builder-main-banner::before {
  content: "🎁";
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  font-size: clamp(6rem, 14vw, 14rem);
  opacity: 0.15; /* increase visibility */
  z-index: 0;
  pointer-events: none;
}

.builder-main-banner > * {
  position: relative;
  z-index: 1;
}

.builder-main-banner::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(199, 107, 70, 0.1);
  filter: blur(35px);
}

.builder-banner-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.builder-banner-kicker {
  display: inline-block;
  margin-bottom: 0;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #c76b46;
  font-weight: 700;
}

.builder-banner-content h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.98;
  font-weight: 300;
  color: #1a1411;
}

.builder-banner-content h1 em {
  color: #c76b46;
  font-style: italic;
}

.builder-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.7);
  border: 1px solid rgba(199, 107, 70, 0.18);
  backdrop-filter: blur(10px);
  color: #6b5f59;
  font-size: 0.95rem;
}

.builder-breadcrumb a {
  color: #c76b46;
  text-decoration: none;
  font-weight: 600;
}

.builder-breadcrumb a:hover {
  color: #a95534;
}

.builder-breadcrumb span:last-child {
  color: #1a1411;
  font-weight: 600;
}

@media (max-width: 767px) {
  .builder-main-banner {
    padding: 95px 0 70px;
  }

  .builder-main-banner::before {
    right: -20px;
    top: 35%;
  }

  .builder-breadcrumb {
    font-size: 0.86rem;
    padding: 10px 14px;
  }
}

.hb-checkout-banner {
  padding: 85px 0 75px;
  background: radial-gradient(circle at 18% 25%, rgba(199, 107, 70, 0.12), transparent 26%),
    radial-gradient(circle at 82% 30%, rgba(255, 198, 160, 0.22), transparent 28%),
    linear-gradient(135deg, #fbf6f1 0%, #f3e5dc 48%, #fffaf6 100%);
  border-bottom: 1px solid var(--border);
}

.hb-kicker {
  display: inline-block;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}

.hb-checkout-banner h1 {
  max-width: 820px;
  margin: 0;
  font-family: Fraunces, serif;
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  line-height: 0.98;
  font-weight: 300;
}

.hb-checkout-banner h1 em {
  color: var(--accent);
  font-style: italic;
}

.hb-checkout-banner p {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* PAGE */
.hb-checkout-page {
  padding: 70px 0;
}

.hb-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 30px;
  align-items: start;
}

.hb-checkout-left {
  display: grid;
  gap: 26px;
}

/* CARDS */
.hb-card,
.hb-summary-card {
  background: rgba(255, 250, 246, 0.95);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.hb-card-title {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.hb-card-title > span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #c76b46;
  color: #fff;
  display: grid;
  place-items: center;
  font-family: Fraunces, serif;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hb-card-title h2 {
  margin: 0;
  font-family: Fraunces, serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 500;
}

.hb-card-title p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

/* FORM */
.hb-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.hb-field {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.hb-field label {
  font-weight: 700;
  font-size: 0.95rem;
}

.hb-field input,
.hb-field textarea {
  width: 100%;
  border: 1px solid rgba(26, 20, 17, 0.12);
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: 0.25s ease;
}

.hb-field textarea {
  resize: vertical;
}

.hb-field input::placeholder,
.hb-field textarea::placeholder {
  color: #9a8a82;
}

.hb-field input:focus,
.hb-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(199, 107, 70, 0.12);
}

/* PAYMENT */
.hb-payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hb-payment-card {
  position: relative;
  min-height: 150px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(26, 20, 17, 0.12);
  padding: 24px 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s ease;
}

.hb-payment-card input {
  position: absolute;
  opacity: 0;
}

.hb-payment-card:hover {
  transform: translateY(-5px);
  border-color: rgba(199, 107, 70, 0.36);
  box-shadow: 0 18px 40px rgba(72, 40, 23, 0.08);
}

.hb-payment-check {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(199, 107, 70, 0.45);
}

.hb-payment-card input:checked ~ .hb-payment-check {
  border-color: var(--accent);
  box-shadow: 0 0 0 5px rgba(199, 107, 70, 0.12);
}

.hb-payment-card input:checked ~ .hb-payment-check::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.hb-payment-card:has(input:checked) {
  border-color: var(--accent);
  background: #fff2ec;
}

.hb-payment-card i {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.hb-payment-card strong {
  margin-bottom: 6px;
}

.hb-payment-card small {
  color: var(--muted);
  line-height: 1.5;
}

/* SUMMARY */
.hb-checkout-right {
  position: sticky;
  top: 100px;
}

.hb-summary-card {
  background: linear-gradient(180deg, #fffaf6, #fff2ec);
}

.hb-summary-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hb-summary-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: rgba(199, 107, 70, 0.12);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
}
.hb-summary-icon i {
  font-size: 26px;
  color: #c2603e;
}

.hb-summary-head h3 {
  margin: 0;
  font-family: Fraunces, serif;
  font-size: 1.8rem;
}

.hb-summary-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hb-summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(199, 107, 70, 0.16);
}

.hb-summary-list span {
  color: var(--muted);
}

.hb-summary-list strong {
  text-align: right;
}

.hb-summary-note {
  display: flex;
  gap: 12px;
  margin: 22px 0;
  padding: 16px;
  border-radius: 20px;
  background: rgba(199, 107, 70, 0.08);
  color: var(--muted);
}

.hb-summary-note i {
  color: var(--accent);
}

.hb-summary-note p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.92rem;
}

.hb-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(199, 107, 70, 0.24);
}

.hb-total span {
  color: var(--muted);
  font-weight: 700;
}

.hb-total strong {
  font-family: Fraunces, serif;
  color: var(--accent);
  font-size: 2rem;
}

.hb-place-order {
  width: 100%;
  margin-top: 26px;
  border: 0;
  border-radius: 999px;
  padding: 18px 28px;
  background: #c76b46;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid #c76b46;
  transition: 0.3s ease;
}

.hb-place-order:hover {
  background: transparent;
  border: 1px solid #c76b46;
  color: #c76b46;
  transform: translateY(-3px);
}

.hb-secure {
  margin: 18px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.hb-secure i {
  color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hb-checkout-layout {
    grid-template-columns: 1fr;
  }

  .hb-checkout-right {
    position: static;
  }

  .hb-payment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hb-checkout-nav .hb-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hb-checkout-banner {
    padding: 70px 0 60px;
  }

  .hb-checkout-page {
    padding: 55px 0;
  }

  .hb-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hb-card-title {
    flex-direction: column;
  }
}
.hb-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* NAV */
.hb-checkout-nav {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255, 250, 246, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.hb-checkout-nav .hb-container {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hb-checkout-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  text-decoration: none;
  font-family: Fraunces, serif;
  font-size: 1.6rem;
  font-weight: 600;
}

.hb-checkout-logo span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 15px;
}

.hb-checkout-back {
  text-decoration: none;
  color: var(--text);
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  font-weight: 600;
}

/* ===== AGE MODAL ===== */
/* MODAL BASE */
.wd-age-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

/* SHOW */
.wd-age-modal.active {
  display: block;
}

/* OVERLAY */
.wd-age-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

/* BOX */
.wd-age-modal-box {
  position: relative;
  max-width: 420px;
  margin: 120px auto;
  background: #fff;
  padding: 36px 28px;
  border-radius: 18px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  animation: fadeUp 0.35s ease;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CLOSE */
.wd-age-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ICON */
.wd-age-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* TEXT */
.wd-age-modal-box h3 {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.wd-age-modal-box p {
  font-size: 0.95rem;
  color: #6b5b52;
  margin-bottom: 22px;
}

/* BUTTONS */
.wd-age-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.wd-age-btn {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

/* CONFIRM */
.wd-age-btn.confirm {
  background: #c76b46;
  color: #fff;
}

.wd-age-btn.confirm:hover {
  background: #b25a3b;
}

/* CANCEL */
.wd-age-btn.cancel {
  background: #eee;
}

.wd-age-btn.cancel:hover {
  background: #ddd;
}

.wd-asterisk {
  font-size: 0.7em;
  vertical-align: super;
  margin-left: 2px;
  color: hsl(var(--primary));
}

.wd-stat-note {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.5rem;
  opacity: 0.8;
}

/* ===== ORDER POPUP ===== */
.order-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.order-modal.active {
  opacity: 1;
  visibility: visible;
}

.order-box {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  width: 90%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
  transform: translateY(30px);
  transition: 0.3s ease;
}

.order-modal.active .order-box {
  transform: translateY(0);
}

.order-success {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.order-box h3 {
  font-family: "Fraunces", serif;
  margin-bottom: 0.3rem;
}

.order-sub {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
}

/* Summary */
.order-summary {
  text-align: left;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 1rem;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.order-summary div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.order-summary span:first-child {
  color: #777;
}

.order-summary span:last-child {
  font-weight: 500;
}

/* Button */
.order-btn {
  width: 100%;
  padding: 0.7rem;
  border-radius: 999px;
  border: none;
  background: #c76b46;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.2s;
}

.order-btn:hover {
  background: #b85c39;
}

/* Mobile */
@media (max-width: 480px) {
  .order-box {
    padding: 1.5rem;
  }
}

.wd-pblob-icon img {
  height: 55px;
  filter: invert(48%) sepia(28%) saturate(1100%) hue-rotate(340deg) brightness(95%) contrast(90%);
}
.wd-pblob-locked .wd-pblob-icon img {
  filter: invert(1);
}

.gift-category-icon img {
  width: 50px;
  filter: invert(48%) sepia(28%) saturate(1100%) hue-rotate(340deg) brightness(95%) contrast(90%);
}
.gift-category-card:has(input:checked) img {
  filter: invert();
}
label.gift-category-card.locked img {
  filter: invert(1);
}

/* =========================
   ABOUT PAGE CSS
========================= */

.hb-about-hero {
  position: relative;
  padding: 80px 0px;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(197, 106, 69, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(197, 106, 69, 0.08), transparent 24%), #f8f4ef;
}

.hb-about-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(197, 106, 69, 0.08);
  top: -180px;
  right: -100px;
  filter: blur(70px);
}

.hb-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  font-size: 0.92rem;
  color: #8a7d76;
}

.hb-breadcrumb a {
  text-decoration: none;
  color: #8a7d76;
}

.hb-about-tag {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(197, 106, 69, 0.12);
  color: #c56a45;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hb-about-title {
  font-size: 50px;
  line-height: 1;
  color: #20130d;
  margin-bottom: 30px;
  font-weight: 500;
}

.hb-about-title em {
  color: #c56a45;
  font-style: italic;
}

.hb-about-title span {
  color: #c56a45;
}
.hb-about-sub {
  max-width: 700px;
  font-size: 18px;
  line-height: 28px;
  color: #665d58;
  text-align: center;
  margin: 0 auto;
}
.hb-floating-cards {
  position: relative;
  margin-top: 20px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.hb-float-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(197, 106, 69, 0.12);
  border-radius: 24px;
  padding: 24px 28px;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(40, 20, 10, 0.04);
  text-align: center;
}

.hb-float-card span {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.hb-float-card p {
  margin: 0;
  font-weight: 500;
  color: #2b1c15;
}

/* SECTION COMMON */

.hb-story-section,
.hb-surprise-section,
.hb-promise-section {
  padding: 80px 0;
}

.hb-section-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c56a45;
  font-weight: 600;
  margin-bottom: 20px;
}

.hb-section-title {
  font-size: 40px;
  line-height: 1.06;
  color: #20130d;
  margin-bottom: 28px;
  font-weight: 500;
}

.hb-section-title em {
  color: #c56a45;
  font-style: italic;
}

.hb-story-section p,
.hb-surprise-content p {
  color: #6c625d;
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 1.02rem;
}

/* STORY */

.hb-story-image {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
}

.hb-story-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 500px;
}

.hb-story-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  font-weight: 600;
  color: #20130d;
}

.hb-story-list {
  margin: 40px 0;
}

.hb-story-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.hb-story-item span {
  color: #c56a45;
}

.hb-story-last strong {
  color: #c56a45;
}

/* SURPRISE */

.hb-surprise-section {
  background: radial-gradient(circle at top right, rgba(197, 106, 69, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(197, 106, 69, 0.08), transparent 24%), #f8f4ef;
}

.hb-surprise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.hb-surprise-card {
  background: #fff;
  border-radius: 28px;
  padding: 34px;
  border: 1px solid rgba(197, 106, 69, 0.12);
  transition: 0.3s ease;
}

.hb-surprise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(40, 20, 10, 0.06);
}

.hb-surprise-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(197, 106, 69, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 22px;
}

.hb-surprise-card h4 {
  margin-bottom: 12px;
  color: #20130d;
  font-size: 1.25rem;
}

.hb-surprise-card p {
  margin: 0;
  color: #746963;
  line-height: 1.8;
}
/* =========================
   PROMISE MODERN SECTION
========================= */

.hb-promise-modern {
  padding: 80px 0;
  background: #fbf7f2;
  overflow: hidden;
}

.hb-promise-content {
  padding-right: 30px;
}

.hb-promise-heading {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.04;
  color: #1f140f;
  margin-bottom: 28px;
  font-weight: 500;
}

.hb-promise-heading em {
  color: #c56a45;
  font-style: italic;
}

.hb-promise-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #6f635d;
  margin-bottom: 40px;
  max-width: 620px;
}

/* POINTS */

.hb-promise-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hb-promise-point {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.hb-promise-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 18px;
  background: rgba(197, 106, 69, 0.1);
  color: #c56a45;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.hb-promise-point h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #1f140f;
  font-weight: 600;
}

.hb-promise-point p {
  margin: 0;
  color: #756862;
  line-height: 1.7;
  font-size: 0.96rem;
}

.hb-promise-bottom {
  margin-top: 42px;
  padding: 22px 24px;
  border-left: 4px solid #c56a45;
  background: rgba(197, 106, 69, 0.06);
  border-radius: 0 20px 20px 0;
  color: #4b3c36;
  line-height: 1.8;
  font-weight: 500;
}

/* IMAGE SIDE */

.hb-promise-image-wrap {
  position: relative;
  padding: 40px;
}

.hb-promise-image-main {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(50, 25, 12, 0.12);
}

.hb-promise-image-main img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* FLOATING NOTES */

.hb-floating-note {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(197, 106, 69, 0.1);
  border-radius: 18px;
  padding: 14px 18px;
  font-size: 0.92rem;
  color: #2f2018;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  font-weight: 500;
}

.hb-floating-note span {
  margin-right: 8px;
}

.note-1 {
  top: 10%;
  left: -20px;
}

.note-2 {
  right: -10px;
  bottom: 20%;
}

.note-3 {
  left: 10%;
  bottom: 16px;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .hb-promise-content {
    padding-right: 0;
  }

  .hb-promise-image-wrap {
    margin-top: 40px;
    padding: 10px;
  }

  .note-1,
  .note-2,
  .note-3 {
    position: relative;
    inset: auto;
    margin-top: 14px;
    display: inline-flex;
  }
}

@media (max-width: 767px) {
  .hb-promise-modern {
    padding: 90px 0;
  }

  .hb-promise-heading {
    font-size: 2.7rem;
  }

  .hb-promise-point {
    gap: 14px;
  }

  .hb-promise-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
}
/* RESPONSIVE */

@media (max-width: 991px) {
  .hb-surprise-grid,
  .wd-personality-grid {
    grid-template-columns: 1fr;
  }

  .hb-promise-wrap {
    padding: 50px 30px;
  }

  .hb-about-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 767px) {
  .hb-about-hero {
    padding: 120px 0 90px;
  }

  .hb-about-title {
    font-size: 2.8rem;
  }

  .hb-section-title {
    font-size: 2.3rem;
  }

  .hb-float-card {
    width: 100%;
  }
}

.hb-about-hero-content {
  text-align: center;
}

/* =========================
FAQ PAGE
========================= */

.hb-faq-hero {
  padding: 140px 0 100px;
  background: radial-gradient(circle at top right, rgba(197, 106, 69, 0.14), transparent 32%), #f8f4ef;
}

.hb-faq-breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 45px;
  color: #8d7c72;
  font-size: 0.92rem;
}

.hb-faq-breadcrumb a {
  color: #8d7c72;
  text-decoration: none;
}

.hb-faq-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(197, 106, 69, 0.12);
  color: #c56a45;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.hb-faq-title {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  color: #1d1613;
  margin-bottom: 22px;
}

.hb-faq-title em {
  color: #c56a45;
  font-style: italic;
}

.hb-faq-sub {
  max-width: 620px;
  color: #6f625c;
  line-height: 1.9;
  font-size: 1.05rem;
}

/* =========================
LAYOUT
========================= */

.hb-faq-section {
  padding: 100px 0;
  background: #fcfaf8;
}

.hb-faq-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 50px;
}

.hb-faq-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hb-faq-sidecard {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(197, 106, 69, 0.08);
}

.hb-faq-sidecard span {
  color: #c56a45;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hb-faq-sidecard h4 {
  margin-top: 10px;
  margin-bottom: 0;
  color: #1f1815;
  font-size: 1.1rem;
}

/* =========================
GROUP
========================= */

.hb-faq-group {
  margin-bottom: 70px;
}

.hb-faq-group-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.hb-faq-group-head span {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #f5ebe5;
  color: #c56a45;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.hb-faq-group-head h2 {
  font-size: 2.2rem;
  margin: 0;
  color: #1d1714;
}

/* =========================
ACCORDION
========================= */

.hb-faq-accordion .accordion-item {
  border: none;
  border-radius: 26px !important;
  overflow: hidden;
  margin-bottom: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.hb-faq-accordion .accordion-button {
  background: #fff;
  padding: 28px 30px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #1f1815;
  box-shadow: none !important;
}

.hb-faq-accordion .accordion-button:not(.collapsed) {
  background: #fff7f3;
  color: #c56a45;
}

.hb-faq-accordion .accordion-button::after {
  filter: grayscale(100%);
}

.hb-faq-accordion .accordion-body {
  padding: 0 30px 28px;
  color: #6e625c;
  line-height: 1.9;
}

/* =========================
CONTACT CARD
========================= */

.hb-faq-contact {
  background: #241612;
  border-radius: 34px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 70px;
}

.hb-faq-contact-icon {
  width: 90px;
  height: 90px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hb-faq-contact-icon i {
  font-size: 2rem;
  color: #c56a45;
}

.hb-faq-contact span {
  color: rgba(255, 255, 255, 0.65);
  display: block;
  margin-bottom: 8px;
}

.hb-faq-contact h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 8px;
}

.hb-faq-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {
  .hb-faq-layout {
    grid-template-columns: 1fr;
  }

  .hb-faq-sidebar {
    position: relative;
    top: auto;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hb-faq-sidecard {
    flex: 1 1 220px;
  }
}

@media (max-width: 767px) {
  .hb-faq-hero {
    padding: 120px 0 80px;
  }

  .hb-faq-title {
    font-size: 3.1rem;
  }

  .hb-faq-group-head {
    align-items: flex-start;
  }

  .hb-faq-group-head h2 {
    font-size: 1.8rem;
  }

  .hb-faq-accordion .accordion-button {
    padding: 22px;
    font-size: 1rem;
  }

  .hb-faq-accordion .accordion-body {
    padding: 0 22px 22px;
  }

  .hb-faq-contact {
    padding: 30px 24px;
    flex-direction: column;
    text-align: center;
  }

  .hb-faq-contact h3 {
    font-size: 1.6rem;
  }
}
.accordion-body a {
  color: #c76b46;
}

/* =========================
RETURNS POLICY PAGE
========================= */

.hb-policy-hero {
  padding: 140px 0 90px;
  background: radial-gradient(circle at top right, rgba(197, 106, 69, 0.12), transparent 30%), #f8f4ef;
  position: relative;
  overflow: hidden;
}

.hb-policy-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
  font-size: 0.92rem;
  color: #8a776d;
}

.hb-policy-breadcrumb a {
  color: #8a776d;
  text-decoration: none;
}

.hb-policy-hero-wrap {
  max-width: 760px;
}

.hb-policy-badge {
  display: inline-flex;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(197, 106, 69, 0.15);
  color: #c56a45;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.hb-policy-title {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 24px;
  color: #1f1815;
}

.hb-policy-title em {
  color: #c56a45;
  font-style: italic;
}

.hb-policy-sub {
  max-width: 620px;
  font-size: 1.06rem;
  line-height: 1.9;
  color: #6f625b;
}

/* =========================
INTRO NOTE
========================= */

.hb-policy-intro {
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.hb-policy-note {
  background: #fff;
  border-radius: 32px;
  padding: 38px;
  display: flex;
  gap: 28px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(197, 106, 69, 0.1);
}

.hb-policy-note-icon {
  width: 90px;
  height: 90px;
  border-radius: 28px;
  background: #f7ece6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hb-policy-note-icon i {
  font-size: 2rem;
  color: #c56a45;
}

.hb-policy-mini {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a1897d;
  margin-bottom: 10px;
}

.hb-policy-note-content h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #1f1815;
}

.hb-policy-note-content p {
  color: #6d615b;
  line-height: 1.8;
  margin: 0;
}

/* =========================
MAIN
========================= */

.hb-policy-main {
  padding: 90px 0 120px;
  background: #fcfaf8;
}

.hb-policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
}

.hb-policy-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hb-policy-card {
  background: #fff;
  border-radius: 30px;
  padding: 42px;
  border: 1px solid rgba(197, 106, 69, 0.08);
}

.hb-policy-label {
  display: inline-block;
  margin-bottom: 18px;
  color: #c56a45;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hb-policy-card h2 {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #1f1815;
}

.hb-policy-card h2 em {
  color: #c56a45;
  font-style: italic;
}

.hb-policy-card p {
  color: #6b6059;
  line-height: 1.95;
  margin-bottom: 18px;
}

/* =========================
LIST
========================= */

.hb-policy-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hb-policy-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1e7e0;
}

.hb-policy-item:last-child {
  border: none;
  padding-bottom: 0;
}

.hb-policy-number {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #f7ece6;
  color: #c56a45;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.hb-policy-item h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #201915;
}

.hb-policy-item p {
  margin: 0;
}

/* =========================
BULLETS
========================= */

.hb-policy-bullets {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hb-policy-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hb-policy-bullet i {
  color: #c56a45;
  margin-top: 4px;
}

.hb-policy-bullet span {
  color: #6b6059;
  line-height: 1.8;
}

/* =========================
SIDEBAR
========================= */

.hb-policy-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hb-policy-sidecard {
  background: #fff;
  border-radius: 28px;
  padding: 34px;
  border: 1px solid rgba(197, 106, 69, 0.08);
}

.hb-policy-sidecard.warm {
  background: #2a1913;
  color: #fff;
}

.hb-policy-side-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: #f7ece6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.hb-policy-side-icon i {
  font-size: 1.7rem;
  color: #c56a45;
}

.hb-policy-sidecard h4 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.hb-policy-sidecard p {
  line-height: 1.8;
  color: #6d615b;
  margin-bottom: 10px;
}

.hb-policy-sidecard span {
  font-size: 0.92rem;
  color: #98877e;
  line-height: 1.7;
}

.hb-policy-sidecard.warm p,
.hb-policy-sidecard.warm span {
  color: rgba(255, 255, 255, 0.75);
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {
  .hb-policy-layout {
    grid-template-columns: 1fr;
  }

  .hb-policy-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hb-policy-sidecard {
    flex: 1 1 280px;
  }

  .hb-policy-note {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hb-policy-hero {
    padding: 120px 0 70px;
  }

  .hb-policy-card {
    padding: 30px 24px;
  }

  .hb-policy-title {
    font-size: 3rem;
  }

  .hb-policy-card h2 {
    font-size: 1.9rem;
  }

  .hb-policy-note {
    padding: 28px 22px;
  }
}

.hb-policy-sidecard a {
  color: #c56a45;
}

/* ===================================
        HOW IT WORKS PAGE CSS
=================================== */

.hb-how-hero {
  position: relative;
  padding: 150px 0 110px;
  background: radial-gradient(circle at top right, rgba(197, 106, 69, 0.12), transparent 28%), #f8f4ef;
  overflow: hidden;
}

.hb-how-tag {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(197, 106, 69, 0.12);
  color: #c56a45;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 28px;
}

.hb-how-title {
  font-size: 50px;
  line-height: 0.98;
  color: #20130d;
  margin-bottom: 28px;
  font-weight: 500;
}

.hb-how-title em {
  color: #c56a45;
  font-style: italic;
}

.hb-how-sub {
  max-width: 650px;
  font-size: 1.08rem;
  line-height: 1.9;
  color: #6f635d;
}

.hb-how-mini {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hb-mini-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 106, 69, 0.1);
  border-radius: 24px;
  padding: 22px 26px;
  min-width: 150px;
}

.hb-mini-card strong {
  display: block;
  font-size: 1.6rem;
  color: #20130d;
}

.hb-mini-card span {
  color: #7a6d67;
  font-size: 0.92rem;
}

/* IMAGE */

.hb-how-main-image {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(40, 20, 10, 0.12);
}

.hb-how-main-image img {
  width: 100%;
  display: block;
}

.hb-how-floating-card {
  position: absolute;
  left: 30px;
  bottom: 30px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  padding: 14px 18px;
  border-radius: 18px;
  font-weight: 500;
  color: #2a1b15;
}

/* STEPS */

.hb-steps-section {
  padding: 80px 0;
  background: #fff;
}

.hb-steps-head {
  text-align: center;
  margin-bottom: 90px;
}

.hb-steps-title {
  font-size: clamp(2.8rem, 5vw, 5rem);
  color: #20130d;
  line-height: 1.04;
}

.hb-steps-title em {
  color: #c56a45;
  font-style: italic;
}

.hb-step-row {
  display: flex;
  gap: 40px;
  margin-bottom: 90px;
  align-items: flex-start;
}

.hb-step-number {
  font-size: 6rem;
  line-height: 1;
  color: rgba(197, 106, 69, 0.12);
  font-weight: 700;
  min-width: 110px;
}

.hb-step-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
}

.hb-step-image img {
  width: 100%;
  border-radius: 30px;
  display: block;
  height: 250px;
  object-fit: cover;
}

.hb-step-label {
  display: inline-flex;
  margin-bottom: 16px;
  color: #c56a45;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.hb-step-text h3 {
  font-size: 2.4rem;
  line-height: 1.08;
  margin-bottom: 20px;
  color: #20130d;
}

.hb-step-text p {
  color: #6f635d;
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.reverse .hb-step-content {
  grid-template-columns: 420px 1fr;
}

/* CTA */

.hb-how-cta {
  padding: 0 0 120px;
  background: #fff;
}

.hb-how-cta-box {
  background: linear-gradient(145deg, #1c110d, #2a1811);
  border-radius: 40px;
  padding: 90px 40px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.hb-how-cta-box::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(197, 106, 69, 0.12);
  top: -180px;
  right: -120px;
  filter: blur(60px);
}

.hb-how-cta-tag {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffcfbe;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hb-how-cta-box h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 36px;
}

.hb-how-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #c56a45;
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s ease;
}

.hb-how-btn:hover {
  transform: translateY(-4px);
  background: #b85e39;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .hb-step-row {
    flex-direction: column;
  }

  .hb-step-content,
  .reverse .hb-step-content {
    grid-template-columns: 1fr;
  }

  .hb-step-number {
    font-size: 4rem;
  }
}

@media (max-width: 767px) {
  .hb-how-hero {
    padding: 120px 0 80px;
  }

  .hb-how-title {
    font-size: 3.2rem;
  }

  .hb-step-text h3 {
    font-size: 2rem;
  }

  .hb-how-cta-box {
    padding: 70px 24px;
  }
}

/* =========================================
   ORDER NOTICE SECTION
========================================= */

.wd-order-note-section {
  padding: 100px 0;
  background: #f8f4ef;
}

.wd-order-note {
  position: relative;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: #fffaf6;
  border: 1px solid rgba(197, 106, 69, 0.14);
  border-left: 6px solid #c56a45;
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
}

.wd-order-note::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(197, 106, 69, 0.04), transparent 35%);
  border-radius: 28px;
  pointer-events: none;
}

.wd-order-note-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: #c56a45;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 12px 24px rgba(197, 106, 69, 0.25);
}

.wd-order-note-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(197, 106, 69, 0.1);
  color: #c56a45;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.wd-order-note-title {
  font-size: 40px;
  line-height: 1.08;
  color: #1f1a17;
  margin: 0 0 20px;
  font-weight: 500;
  max-width: 100%;
}

.wd-order-note-text {
  font-size: 1.02rem;
  line-height: 1.9;
  color: #675d58;
  max-width: 100%;
  margin: 0;
}

.wd-order-note-text strong {
  color: #c56a45;
  font-weight: 600;
}

.wd-order-note-points {
  margin-top: 30px;
  display: grid;
  gap: 18px;
}

.wd-order-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.wd-order-point span {
  color: #c56a45;
  font-size: 1rem;
  margin-top: 3px;
}

.wd-order-point p {
  margin: 0;
  color: #5f5550;
  line-height: 1.7;
  font-size: 0.97rem;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 767px) {
  .wd-order-note {
    flex-direction: column;
    padding: 30px 24px;
    border-radius: 24px;
  }

  .wd-order-note-title {
    font-size: 2rem;
  }

  .wd-order-note-icon {
    width: 62px;
    height: 62px;
    font-size: 1.3rem;
  }
a.btn.btn-ghost-ink.btn-xl, a.btn.btn-hero.btn-xl{
width: 100% !important;
}
}

.hb-float-card img {
  height: 50px;
  text-align: center;
  margin: 0 auto;
  filter: invert(48%) sepia(28%) saturate(1100%) hue-rotate(340deg) brightness(95%) contrast(90%);
}

.gift-category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.gift-category-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: 0.3s ease;
}

/* Hover effect */
.gift-category-card:hover .gift-category-icon img {
  transform: scale(1.1);
}

/* Selected state */
.gift-category-card input:checked ~ .gift-category-icon img {
  transform: scale(1.15);
}

/* OPTIONAL: color tone (if using single-color svg/png) */
.gift-category-icon img {
  filter: invert(48%) sepia(28%) saturate(1100%) hue-rotate(340deg);
}

.wd-pblob-icon {
  margin-bottom: 16px;
}

.wd-pblob-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* HOVER ANIMATION */
.wd-pblob:hover .wd-pblob-icon img {
  transform: scale(1.1);
}

/* MODAL BASE */
.wd-age-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

/* SHOW */
.wd-age-modal.active {
  display: block;
}

/* OVERLAY */
.wd-age-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

/* BOX */
.wd-age-modal-box {
  position: relative;
  max-width: 420px;
  margin: 120px auto;
  background: #fff;
  padding: 36px 28px;
  border-radius: 18px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  animation: fadeUp 0.35s ease;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* CLOSE */
.wd-age-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ICON */
.wd-age-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* TEXT */
.wd-age-modal-box h3 {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.wd-age-modal-box p {
  font-size: 0.95rem;
  color: #6b5b52;
  margin-bottom: 22px;
}

/* BUTTONS */
.wd-age-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.wd-age-btn {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

/* CONFIRM */
.wd-age-btn.confirm {
  background: #c76b46;
  color: #fff;
}

.wd-age-btn.confirm:hover {
  background: #b25a3b;
}

/* CANCEL */
.wd-age-btn.cancel {
  background: #eee;
}

.wd-age-btn.cancel:hover {
  background: #ddd;
}

/* =========================
   NAVBAR
========================= */

.wd-nav {
  padding: 14px 0;
  background: #f5f1ef;
}

.wd-logo img {
  height: 52px;
  width: auto;
  display: block;
}

/* right side wrapper */
.wd-nav .d-flex.align-items-center.gap-2 {
  align-items: center !important;
}

/* toggle button */
.btn-icon-ink {
  width: 50px;
  height: 50px;

  border-radius: 50%;
  border: 1.5px solid #111;

  background: transparent;
  color: #111;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  line-height: 1;

  transition: all 0.3s ease;
}

/* icon */
.btn-icon-ink i {
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* hover */
.btn-icon-ink:hover {
  background: #111;
  color: #fff;
}