/* ===== HERO ===== */

.hero {
  padding: 60px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.hero-text h1 {
  font-size: 48px;
}

.hero-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
}

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

.trust-item {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

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

.feature-card {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

/* CTA */
.cta-box {
  padding: 28px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
}

/* responsive */
@media(max-width:900px){
  .hero-grid{
    grid-template-columns:1fr;
  }
}

/* ===== MISSING PREMIUM HOMEPAGE DETAIL ===== */

.hero-upgraded {
  padding-top: 60px;
  padding-bottom: 30px;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 77, 109, 0.22);
  background: rgba(255, 255, 255, 0.75);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  backdrop-filter: blur(6px);
}

.hero-text p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  margin-bottom: 16px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.hero-proof {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(255, 77, 109, 0.10),
    rgba(124, 92, 255, 0.08)
  );
  box-shadow: var(--shadow);
  border: 1px solid rgba(18, 18, 30, 0.10);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(18, 18, 30, 0.22)
  );
  pointer-events: none;
}

.hero-media-upgraded {
  min-height: 420px;
}

.hero-floating-card {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(18, 18, 30, 0.14);
  transform: translateY(6px);
}

.hero-floating-card strong {
  font-size: 15px;
}

.hero-floating-card span {
  font-size: 13px;
  color: var(--muted);
}

.hero-premium {
  position: relative;
}

.hero-media-premium {
  min-height: 460px;
}

.hero-media-premium img {
  height: 460px;
}

.hero-floating-card-main {
  left: 20px;
  bottom: 20px;
}

.hero-mini-stat {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  box-shadow: 0 16px 32px rgba(18, 18, 30, 0.12);
  max-width: 220px;
}

.hero-mini-stat strong {
  font-size: 14px;
}

.hero-mini-stat span {
  font-size: 12px;
  color: var(--muted);
}

.stat-top {
  top: 18px;
  right: 18px;
}

.stat-right {
  right: 18px;
  bottom: 96px;
}

.trust-strip {
  padding: 12px 0 26px;
}

.trust-strip-premium {
  padding-top: 10px;
  padding-bottom: 32px;
}

.trust-item {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(18, 18, 30, 0.10);
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.trust-item span {
  color: var(--muted);
  font-size: 14px;
}

.section-head-premium {
  max-width: 720px;
  margin-inline: auto;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 77, 109, 0.08);
  border: 1px solid rgba(255, 77, 109, 0.18);
}

.featured-section {
  padding-top: 18px;
}

.premium-section {
  padding-top: 34px;
}

.premium-featured-grid {
  gap: 18px;
}

.premium-feature-card {
  padding: 22px;
  border-radius: 20px;
}

.premium-feature-card h3 {
  font-size: 18px;
}

.premium-feature-card p {
  line-height: 1.6;
}

.premium-how {
  padding-top: 18px;
}

.premium-steps {
  gap: 18px;
}

.premium-step-card {
  padding: 22px 20px 20px;
  border-radius: 18px;
}

.premium-highlight-section {
  padding-top: 10px;
  padding-bottom: 54px;
}

.premium-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 22px;
  align-items: stretch;
}

.premium-highlight-card,
.premium-highlight-list {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.premium-highlight-card {
  padding: 28px;
}

.premium-highlight-card h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.3px;
}

.premium-highlight-card p {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 560px;
}

.premium-highlight-card .btn {
  width: auto;
}

.premium-highlight-list {
  padding: 16px;
  display: grid;
  gap: 14px;
}

.premium-point {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(18, 18, 30, 0.08);
}

.premium-point strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.premium-point span {
  color: var(--muted);
  font-size: 14px;
}

.premium-cta-section {
  padding-top: 6px;
  padding-bottom: 44px;
}

.premium-cta-box {
  padding: 30px;
  border-radius: 26px;
}

.cta-section {
  padding-top: 8px;
  padding-bottom: 60px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78));
  box-shadow: 0 18px 40px rgba(18, 18, 30, 0.10);
}

.cta-box h2 {
  margin: 0 0 8px;
}

.cta-box p {
  margin: 0;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-text {
    text-align: center;
    margin-inline: auto;
  }

  .hero-text p {
    margin-inline: auto;
  }

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

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

  .hero-media img {
    height: 300px;
  }

  .hero-media-upgraded {
    min-height: 300px;
  }

  .hero-floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: 14px;
    text-align: center;
  }

  .hero-media-premium {
    min-height: 340px;
  }

  .hero-media-premium img {
    height: 340px;
  }

  .hero-mini-stat {
    max-width: 200px;
  }

  .stat-right {
    bottom: 82px;
  }

  .premium-highlight-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .hero-mini-stat {
    display: none;
  }

  .premium-cta-box {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .trust-grid,
  .featured-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  position: relative;
  padding-top: 22px;
}

.step-circle {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  margin-bottom: 12px;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--accent), #ff6b88);
  box-shadow: 0 10px 24px rgba(255, 77, 109, 0.18);
}

/* ================= PUBLIC HOMEPAGE BUTTONS ================= */

.public-home-page .mala-btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  min-height: 54px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.public-home-page .mala-btn span {
  position: relative;
  z-index: 1;
  font-size: 14px;
}

.public-home-page .mala-btn small {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 750;
  opacity: 0.82;
}

.public-home-page .mala-btn:hover {
  transform: translateY(-2px);
}

.public-home-page .mala-btn:active {
  transform: translateY(0);
}

.public-home-page .mala-btn-primary {
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(135deg, #ff4d6d 0%, #ff7a59 100%);
  box-shadow:
    0 16px 34px rgba(255, 77, 109, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.public-home-page .mala-btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.22) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.public-home-page .mala-btn-primary:hover::after {
  transform: translateX(120%);
}

.public-home-page .mala-btn-primary:hover {
  box-shadow:
    0 20px 44px rgba(255, 77, 109, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.public-home-page .mala-btn-soft {
  color: #2a1f28;
  border-color: rgba(255, 77, 109, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 251, 0.96));
  box-shadow:
    0 12px 28px rgba(18, 18, 30, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.public-home-page .mala-btn-soft:hover {
  border-color: rgba(255, 77, 109, 0.32);
  box-shadow:
    0 16px 34px rgba(18, 18, 30, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.public-home-page .mala-btn-outline {
  color: #ff4d6d;
  border-color: rgba(255, 77, 109, 0.28);
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 10px 24px rgba(255, 77, 109, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.public-home-page .mala-btn-outline:hover {
  color: #d9365c;
  border-color: rgba(255, 77, 109, 0.42);
  background: rgba(255, 248, 251, 0.96);
}

.public-home-page .mala-btn-admin {
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.16), transparent 30%),
    linear-gradient(135deg, #1f1f24 0%, #3b2b38 100%);
  border-color: rgba(31, 31, 36, 0.2);
  box-shadow:
    0 16px 34px rgba(31, 31, 36, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.public-home-page .mala-btn-admin:hover {
  box-shadow:
    0 20px 44px rgba(31, 31, 36, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.public-home-page .mala-btn-compact {
  min-height: 48px;
  padding: 11px 18px;
}

.public-home-page .hero-actions,
.public-home-page .cta-actions {
  align-items: center;
}

@media (max-width: 620px) {
  .public-home-page .hero-actions,
  .public-home-page .cta-actions {
    width: 100%;
  }

  .public-home-page .mala-btn {
    width: 100%;
  }
}

/* ================= HOMEPAGE V2 HERO ================= */

.public-home-page .mala-hero-v2 {
  position: relative;
  padding: 72px 0 46px;
  overflow: hidden;
}

.public-home-page .mala-hero-v2::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  top: -180px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 77, 109, 0.18), transparent 68%);
  pointer-events: none;
}

.public-home-page .mala-hero-grid-v2 {
  grid-template-columns: 1fr 0.95fr;
  gap: 52px;
}

.public-home-page .mala-hero-copy h1 {
  max-width: 620px;
  font-size: clamp(42px, 5.3vw, 72px);
  line-height: 0.98;
  letter-spacing: -1.8px;
}

.public-home-page .mala-hero-copy p {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.72;
}

.public-home-page .mala-hero-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  gap: 12px;
  margin-top: 20px;
  max-width: 560px;
}

.public-home-page .mala-hero-assurance div {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 77, 109, 0.13);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 24px rgba(18, 18, 30, 0.06);
}

.public-home-page .mala-hero-assurance strong {
  display: block;
  font-size: 20px;
  font-weight: 950;
  color: #241c24;
}

.public-home-page .mala-hero-assurance span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 750;
  color: var(--muted);
}

/* right preview */
.public-home-page .mala-hero-showcase {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.public-home-page .mala-showcase-glow {
  position: absolute;
  inset: 48px 24px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 77, 109, 0.20), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(124, 92, 255, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(255,248,251,0.92));
  filter: blur(2px);
  border: 1px solid rgba(255, 77, 109, 0.08);
}

.public-home-page .mala-order-preview-card {
  position: relative;
  z-index: 2;
  width: min(410px, 100%);
  padding: 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 77, 109, 0.14);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 30px 70px rgba(18, 18, 30, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.public-home-page .mala-preview-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.public-home-page .mala-preview-head span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 4px;
}

.public-home-page .mala-preview-head strong {
  font-size: 18px;
  font-weight: 950;
  color: #241c24;
}

.public-home-page .mala-preview-badge {
  padding: 7px 11px;
  border-radius: 999px;
  color: #15803d;
  background: #dff8e4;
  font-size: 12px;
  font-weight: 950;
}

.public-home-page .mala-preview-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  height: 260px;
  background: #fff4f7;
}

.public-home-page .mala-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.public-home-page .mala-preview-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 52%, rgba(18, 18, 30, 0.32));
}

.public-home-page .mala-preview-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.public-home-page .mala-preview-options div,
.public-home-page .mala-preview-total {
  border-radius: 18px;
  border: 1px solid rgba(18, 18, 30, 0.08);
  background: rgba(255, 248, 251, 0.82);
  padding: 12px;
}

.public-home-page .mala-preview-options span,
.public-home-page .mala-preview-total span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  margin-bottom: 4px;
}

.public-home-page .mala-preview-options strong {
  display: block;
  font-size: 13px;
  font-weight: 950;
  color: #241c24;
}

.public-home-page .mala-preview-total {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 77, 109, 0.10), rgba(255, 122, 89, 0.08));
}

.public-home-page .mala-preview-total strong {
  font-size: 20px;
  font-weight: 950;
  color: #ff4d6d;
}

.public-home-page .mala-floating-note {
  position: absolute;
  z-index: 3;
  max-width: 210px;
  padding: 13px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 77, 109, 0.14);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(18, 18, 30, 0.12);
}

.public-home-page .mala-floating-note strong {
  display: block;
  font-size: 13px;
  font-weight: 950;
  color: #241c24;
}

.public-home-page .mala-floating-note span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.public-home-page .note-left {
  left: 0;
  bottom: 74px;
}

.public-home-page .note-right {
  right: 0;
  top: 86px;
}

/* mobile */
@media (max-width: 1000px) {
  .public-home-page .mala-hero-grid-v2 {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .public-home-page .mala-hero-copy {
    text-align: center;
  }

  .public-home-page .mala-hero-copy h1,
  .public-home-page .mala-hero-copy p,
  .public-home-page .mala-hero-assurance {
    margin-inline: auto;
  }

  .public-home-page .mala-hero-showcase {
    min-height: 520px;
  }
}

@media (max-width: 700px) {
  .public-home-page .mala-hero-v2 {
    padding-top: 48px;
  }

  .public-home-page .mala-hero-assurance {
    grid-template-columns: 1fr;
  }

  .public-home-page .mala-hero-showcase {
    min-height: auto;
    padding: 20px 0 0;
  }

  .public-home-page .mala-showcase-glow {
    inset: 20px 0;
  }

  .public-home-page .mala-floating-note {
    display: none;
  }

  .public-home-page .mala-preview-image {
    height: 220px;
  }

  .public-home-page .mala-preview-options {
    grid-template-columns: 1fr;
  }
}

/* ================= HOMEPAGE V2 HERO FIXES ================= */

/* Reduce excess top space below navbar */
.public-home-page .mala-hero-v2 {
  padding-top: 38px;
  padding-bottom: 34px;
}

/* Make the hero slightly tighter vertically */
.public-home-page .mala-hero-showcase {
  min-height: 500px;
}

/* Move the left floating note away from the product option cards */
.public-home-page .note-left {
  left: -70px;
  bottom: 185px;
}

/* Keep right note clean and not too aggressive */
.public-home-page .note-right {
  right: -52px;
  top: 86px;
}

/* Slightly reduce hero card visual height */
.public-home-page .mala-preview-image {
  height: 238px;
}

/* Keep mobile clean: hide floating notes as before */
@media (max-width: 1000px) {
  .public-home-page .note-left,
  .public-home-page .note-right {
    display: none;
  }

  .public-home-page .mala-hero-v2 {
    padding-top: 34px;
  }

  .public-home-page .mala-hero-showcase {
    min-height: auto;
  }
}

/* ================= LAUNCH FLOWER SECTION ================= */

.public-home-page .launch-flower-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-home-page .launch-flower-card {
  position: relative;
  overflow: hidden;
}

.public-home-page .launch-flower-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 77, 109, 0.10), transparent 34%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.public-home-page .launch-flower-card:hover::before {
  opacity: 1;
}

.public-home-page .flower-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #b8325e;
  background: rgba(255, 77, 109, 0.08);
  border: 1px solid rgba(255, 77, 109, 0.16);
  font-size: 12px;
  font-weight: 900;
}

.public-home-page .mala-card-link {
  display: inline-flex;
  margin-top: 16px;
  color: #ff4d6d;
  font-weight: 950;
  font-size: 14px;
}

.public-home-page .mala-card-link:hover {
  color: #d9365c;
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .public-home-page .launch-flower-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= HOMEPAGE LOWER SECTIONS V2 ================= */

/* Promise strip */
.public-home-page .mala-promise-strip {
  padding: 12px 0 38px;
}

.public-home-page .mala-promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.public-home-page .mala-promise-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 118px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 77, 109, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 251, 0.88));
  box-shadow:
    0 14px 34px rgba(18, 18, 30, 0.07),
    inset 0 1px 0 rgba(255,255,255,0.94);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.public-home-page .mala-promise-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 109, 0.22);
  box-shadow:
    0 20px 44px rgba(18, 18, 30, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.public-home-page .promise-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 15px;
  background: rgba(255, 77, 109, 0.10);
  font-size: 20px;
}

.public-home-page .mala-promise-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 950;
  color: #241c24;
}

.public-home-page .mala-promise-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Flow section */
.public-home-page .mala-flow-section {
  padding-top: 44px;
  padding-bottom: 60px;
}

.public-home-page .mala-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.public-home-page .mala-flow-card {
  position: relative;
  min-height: 270px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 77, 109, 0.12);
  background:
    radial-gradient(circle at top right, rgba(255, 77, 109, 0.10), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,248,251,0.88));
  box-shadow:
    0 18px 42px rgba(18, 18, 30, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.94);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.public-home-page .mala-flow-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 77, 109, 0.24);
  box-shadow:
    0 26px 56px rgba(18, 18, 30, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.public-home-page .flow-number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(255, 77, 109, 0.18);
  font-size: 44px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -2px;
}

.public-home-page .flow-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: rgba(255, 77, 109, 0.11);
  font-size: 25px;
}

.public-home-page .mala-flow-card h3 {
  margin: 0 0 9px;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -0.2px;
  color: #241c24;
}

.public-home-page .mala-flow-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Use section */
.public-home-page .mala-use-section {
  padding-top: 46px;
  padding-bottom: 60px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,248,251,0.72) 100%);
}

.public-home-page .mala-use-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.public-home-page .mala-use-main {
  padding: 34px;
  border-radius: 32px;
  border: 1px solid rgba(255, 77, 109, 0.13);
  background:
    radial-gradient(circle at top left, rgba(255, 77, 109, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,248,251,0.90));
  box-shadow:
    0 22px 52px rgba(18, 18, 30, 0.09),
    inset 0 1px 0 rgba(255,255,255,0.94);
}

.public-home-page .mala-use-main h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -1px;
  color: #241c24;
}

.public-home-page .mala-use-main p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.public-home-page .mala-use-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.public-home-page .mala-use-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.public-home-page .mala-use-card {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(255, 77, 109, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 16px 36px rgba(18, 18, 30, 0.07),
    inset 0 1px 0 rgba(255,255,255,0.94);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.public-home-page .mala-use-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 109, 0.22);
  box-shadow:
    0 22px 46px rgba(18, 18, 30, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.public-home-page .mala-use-card div {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(255, 77, 109, 0.10);
  font-size: 23px;
}

.public-home-page .mala-use-card strong {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 950;
  color: #241c24;
}

.public-home-page .mala-use-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Final CTA */
.public-home-page .mala-final-cta-section {
  padding-top: 42px;
  padding-bottom: 70px;
}

.public-home-page .mala-final-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 77, 109, 0.16);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 255, 255, 0.36), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(255, 122, 89, 0.22), transparent 34%),
    linear-gradient(135deg, #ff4d6d 0%, #ff7a59 100%);
  box-shadow:
    0 28px 70px rgba(255, 77, 109, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

.public-home-page .mala-final-cta::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -90px;
  top: -140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.20);
  pointer-events: none;
}

.public-home-page .mala-final-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.public-home-page .mala-final-copy .section-kicker {
  color: #ffffff;
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.22);
}

.public-home-page .mala-final-copy h2 {
  margin: 0 0 10px;
  color: white;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -1px;
}

.public-home-page .mala-final-copy p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  line-height: 1.7;
}

.public-home-page .mala-final-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.public-home-page .mala-final-cta .mala-btn-primary {
  color: #ff4d6d;
  background: white;
  box-shadow:
    0 16px 34px rgba(18,18,30,0.16),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.public-home-page .mala-final-cta .mala-btn-soft {
  color: white;
  border-color: rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.14);
  box-shadow:
    0 16px 34px rgba(18,18,30,0.08),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

/* Responsive */
@media (max-width: 1000px) {
  .public-home-page .mala-promise-grid,
  .public-home-page .mala-flow-grid {
    grid-template-columns: 1fr 1fr;
  }

  .public-home-page .mala-use-grid {
    grid-template-columns: 1fr;
  }

  .public-home-page .mala-final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .public-home-page .mala-final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .public-home-page .mala-promise-grid,
  .public-home-page .mala-flow-grid,
  .public-home-page .mala-use-cards {
    grid-template-columns: 1fr;
  }

  .public-home-page .mala-promise-card {
    min-height: auto;
  }

  .public-home-page .mala-flow-card {
    min-height: auto;
  }

  .public-home-page .mala-use-main,
  .public-home-page .mala-final-cta {
    padding: 24px;
    border-radius: 26px;
  }

  .public-home-page .mala-use-actions,
  .public-home-page .mala-final-actions {
    width: 100%;
  }
}

/* ================= FINAL CTA WHITE PILL ================= */

.public-home-page .premium-cta-section .premium-cta-box .section-kicker,
.public-home-page .cta-section .premium-cta-box .section-kicker,
.public-home-page .cta-box.premium-cta-box .section-kicker,
.public-home-page .mala-final-cta-section .section-kicker,
.public-home-page .mala-final-cta .section-kicker {
  color: #ff4d6d !important;
  background: rgba(255, 255, 255, 0.96) !important;
  border-color: rgba(255, 255, 255, 0.52) !important;
  box-shadow:
    0 12px 28px rgba(18, 18, 30, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

/* ================= HOME BULK FLOWERS SECTION ================= */

.public-home-page .home-bulk-section {
  padding-top: 42px;
  padding-bottom: 54px;
}

.public-home-page .home-bulk-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
  padding: 30px;
  border-radius: 34px;
  border: 1px solid rgba(245, 158, 11, 0.18);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.13), transparent 34%),
    radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,250,240,0.92));
  box-shadow:
    0 24px 58px rgba(18,18,30,0.09),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.public-home-page .home-bulk-copy {
  align-self: center;
}

.public-home-page .home-bulk-copy .section-kicker {
  color: #d97706 !important;
  background: rgba(245, 158, 11, 0.12) !important;
  border-color: rgba(245, 158, 11, 0.22) !important;
}

.public-home-page .home-bulk-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -1px;
  color: #241c24;
}

.public-home-page .home-bulk-copy p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.public-home-page .home-bulk-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.public-home-page .home-bulk-actions .mala-btn-primary {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.26), transparent 28%),
    linear-gradient(135deg, #f59e0b 0%, #ff7a59 100%) !important;
  box-shadow:
    0 16px 34px rgba(245, 158, 11, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.18) !important;
}

.public-home-page .home-bulk-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.public-home-page .home-bulk-cards article {
  padding: 20px;
  border-radius: 26px;
  border: 1px solid rgba(18,18,30,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,248,251,0.82));
  box-shadow:
    0 16px 36px rgba(18,18,30,0.07),
    inset 0 1px 0 rgba(255,255,255,0.94);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.public-home-page .home-bulk-cards article:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.24);
  box-shadow:
    0 22px 46px rgba(18,18,30,0.10),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.public-home-page .home-bulk-cards div {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: rgba(245, 158, 11, 0.14);
  font-size: 25px;
}

.public-home-page .home-bulk-cards article:nth-child(3) div {
  background: rgba(255, 77, 109, 0.10);
}

.public-home-page .home-bulk-cards strong {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 950;
  color: #241c24;
}

.public-home-page .home-bulk-cards span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .public-home-page .home-bulk-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .public-home-page .home-bulk-panel {
    padding: 22px;
    border-radius: 26px;
  }

  .public-home-page .home-bulk-cards {
    grid-template-columns: 1fr;
  }

  .public-home-page .home-bulk-actions {
    width: 100%;
  }
}

/* ================= HOMEPAGE WIDE SCREEN BALANCE ================= */

@media (min-width: 1200px) {
  .public-home-page .hero-grid,
  .public-home-page .mala-hero-grid,
  .public-home-page .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(520px, 0.95fr) !important;
    gap: clamp(48px, 5vw, 120px) !important;
    align-items: center !important;
  }

  .public-home-page .hero-text,
  .public-home-page .mala-hero-copy,
  .public-home-page .home-hero-copy {
    max-width: none !important;
  }

  .public-home-page .hero-text h1,
  .public-home-page .mala-hero-copy h1,
  .public-home-page .home-hero-copy h1 {
    max-width: 760px !important;
    font-size: clamp(54px, 5vw, 86px) !important;
    line-height: 0.98 !important;
    letter-spacing: -2.2px !important;
  }

  .public-home-page .hero-text p,
  .public-home-page .mala-hero-copy p,
  .public-home-page .home-hero-copy p {
    max-width: 720px !important;
    font-size: 18px !important;
    line-height: 1.75 !important;
  }

  .public-home-page .hero-media,
  .public-home-page .mala-hero-visual,
  .public-home-page .home-hero-visual {
    width: 100% !important;
    max-width: none !important;
  }

  .public-home-page .trust-grid,
  .public-home-page .mala-promise-grid,
  .public-home-page .featured-grid,
  .public-home-page .home-bulk-panel {
    width: 100% !important;
  }
}

@media (min-width: 1600px) {
  .public-home-page .hero-grid,
  .public-home-page .mala-hero-grid,
  .public-home-page .home-hero-grid {
    grid-template-columns: 1.05fr 0.95fr !important;
  }

  .public-home-page .hero-text h1,
  .public-home-page .mala-hero-copy h1,
  .public-home-page .home-hero-copy h1 {
    font-size: clamp(64px, 4.4vw, 92px) !important;
  }
}

/* ================= HOMEPAGE WIDE SCREEN FINAL ALIGNMENT ================= */

/* 
  On large screens:
  - keep around 10% space on each side
  - enlarge sections slightly
  - prevent trust/bulk sections from touching screen edges
*/
@media (min-width: 1200px) {
  .public-home-page .trust-strip,
  .public-home-page .trust-strip-premium,
  .public-home-page .mala-promise-section,
  .public-home-page .home-bulk-section {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .public-home-page .trust-strip .container,
  .public-home-page .trust-strip-premium .container,
  .public-home-page .mala-promise-section .container,
  .public-home-page .home-bulk-section .container,
  .public-home-page .home-bulk-panel {
    width: min(80vw, 1900px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Fix the 4 trust cards so they do not touch screen edges */
  .public-home-page .trust-grid,
  .public-home-page .mala-promise-grid {
    width: 100% !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: clamp(18px, 1.6vw, 34px) !important;
  }

  .public-home-page .trust-item,
  .public-home-page .mala-promise-card {
    min-height: 108px !important;
    padding: clamp(20px, 1.6vw, 30px) !important;
    border-radius: 24px !important;
  }

  .public-home-page .mala-promise-card h3,
  .public-home-page .trust-item strong {
    font-size: clamp(17px, 1vw, 22px) !important;
  }

  .public-home-page .mala-promise-card p,
  .public-home-page .trust-item span {
    font-size: clamp(14px, 0.82vw, 17px) !important;
    line-height: 1.65 !important;
  }

  /* Fix bulk section side spacing */
  .public-home-page .home-bulk-panel {
    box-sizing: border-box !important;
    grid-template-columns: 0.9fr 1.1fr !important;
    gap: clamp(28px, 3vw, 70px) !important;
    padding: clamp(34px, 3vw, 64px) !important;
    border-radius: 36px !important;
  }

  .public-home-page .home-bulk-copy h2 {
    font-size: clamp(42px, 3.8vw, 72px) !important;
    line-height: 1.02 !important;
    letter-spacing: -1.8px !important;
  }

  .public-home-page .home-bulk-copy p {
    max-width: 780px !important;
    font-size: clamp(16px, 1vw, 20px) !important;
    line-height: 1.8 !important;
  }

  .public-home-page .home-bulk-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(18px, 1.5vw, 32px) !important;
  }

  .public-home-page .home-bulk-cards article {
    min-height: 210px !important;
    padding: clamp(22px, 1.7vw, 34px) !important;
    border-radius: 28px !important;
  }

  .public-home-page .home-bulk-cards strong {
    font-size: clamp(18px, 1vw, 23px) !important;
  }

  .public-home-page .home-bulk-cards span {
    font-size: clamp(14px, 0.85vw, 17px) !important;
    line-height: 1.65 !important;
  }
}

/* Extra-large screens: make content feel intentionally large, not tiny */
@media (min-width: 1600px) {
  .public-home-page .hero,
  .public-home-page .hero-upgraded,
  .public-home-page .mala-hero {
    padding-top: clamp(70px, 5vw, 110px) !important;
    padding-bottom: clamp(50px, 4vw, 90px) !important;
  }

  .public-home-page .mala-promise-card,
  .public-home-page .trust-item {
    min-height: 126px !important;
  }

  .public-home-page .home-bulk-panel {
    min-height: 330px !important;
  }
}

/* ================= FIX HOME TRUST CARDS SIDE SPACING ================= */

@media (min-width: 1200px) {
  .public-home-page .trust-strip,
  .public-home-page .trust-strip-premium {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .public-home-page .trust-strip > .container,
  .public-home-page .trust-strip-premium > .container {
    width: min(80vw, 1900px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .public-home-page .trust-grid {
    width: min(80vw, 1900px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: clamp(18px, 1.6vw, 34px) !important;
  }

  .public-home-page .trust-item {
    min-height: 118px !important;
    padding: clamp(20px, 1.4vw, 30px) !important;
    border-radius: 24px !important;
  }

  .public-home-page .trust-item strong {
    font-size: clamp(16px, 0.95vw, 21px) !important;
  }

  .public-home-page .trust-item span {
    font-size: clamp(13px, 0.78vw, 16px) !important;
    line-height: 1.6 !important;
  }
}

@media (min-width: 1200px) and (max-width: 1500px) {
  .public-home-page .trust-strip > .container,
  .public-home-page .trust-strip-premium > .container,
  .public-home-page .trust-grid {
    width: min(86vw, 1280px) !important;
  }
}

/* ================= FIX 4 PROMISE CARDS SIDE SPACING ================= */

@media (min-width: 1200px) {
  /* Wrapper should stay full-width, but content inside should not */
  .public-home-page .mala-promise-strip {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* If the promise section has a container */
  .public-home-page .mala-promise-strip > .container {
    width: min(80vw, 1900px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Actual 4-card grid */
  .public-home-page .mala-promise-grid {
    width: min(80vw, 1900px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;

    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: clamp(18px, 1.5vw, 34px) !important;
  }

  .public-home-page .mala-promise-card {
    min-height: 120px !important;
    padding: clamp(20px, 1.35vw, 30px) !important;
    border-radius: 24px !important;
  }

  .public-home-page .mala-promise-card strong {
    font-size: clamp(16px, 0.95vw, 21px) !important;
  }

  .public-home-page .mala-promise-card span {
    font-size: clamp(13px, 0.78vw, 16px) !important;
    line-height: 1.6 !important;
  }
}

@media (min-width: 1200px) and (max-width: 1500px) {
  .public-home-page .mala-promise-strip > .container,
  .public-home-page .mala-promise-grid {
    width: min(86vw, 1280px) !important;
  }
}