  /* ===== Pink About Us Banner ===== */
    .about-banner-pink {
      position: relative;
      background: #FB95A0;
      display: flex;              /* flexbox centering */
      justify-content: center;    /* horizontal center */
      align-items: center;        /* vertical center */
      text-align: center;
      color: #000;
      padding: 200px 20px;            /* only side padding */
      overflow: hidden;
    }

    .about-inner-pink {
      max-width: 900px;
      margin: 0 auto;
    }

    .about-banner-pink h1 {
      font-family: 'Alegreya', serif;
      font-size: 3rem;
      margin-bottom: 12px;
      color: #000;
    }

    .about-banner-pink p {
      font-size: 1.2rem;
      opacity: 0.95;
      color: #000;
    }

    /* curved bottom svg */
    .about-banner-pink .curve {
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      height: 120px;
    }

    /* responsive */
    @media (max-width: 768px) {
      .about-banner-pink {
        padding: 80px 20px 60px;
      }
      .about-banner-pink h1 {
        font-size: 2.2rem;
      }
      .about-banner-pink p {
        font-size: 1rem;
      }
    }

  :root {
  --accent: #FB95A0;
  --dark: #222;
  --muted: #666;
  --radius: 14px;
  }

  html, body {
    margin: 0;
    font-family: 'Alegreya', serif;
    color: var(--dark);
    background: #fff;
  }

  /* Container */
  .highlights {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
  }

  /* Hero Section */
  .product-hero {
    background: url("https://images.unsplash.com/photo-1542281286-9e0a16bb7366?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 160px 20px;
    position: relative;
  }
  .product-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
  }
  .hero-content {
    position: relative;
    z-index: 1;
  }
  .product-hero h1 {
    font-size: 3rem;
    margin: 0;
  }
  .tagline {
    font-size: 1.3rem;
    margin-top: 10px;
  }


  /* Offerings */
  .product-offerings h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
  }
  .offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding-bottom: 50px;
  }
  .offering-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    text-align: center;
    transition: transform .3s;
  }
  .offering-card:hover {
    transform: translateY(-6px);
  }
  .offering-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  .offering-card h3 {
    margin: 16px 0 8px;
    font-size: 1.3rem;
  }
  .offering-card p {
    margin: 0 0 16px;
    color: var(--muted);
  }
  .btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--radius);
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background .3s;
  }
  .btn:hover {
    background: #d86b7b;
  }
  .btn-big {
    padding: 14px 28px;
    font-size: 1.1rem;
  }

  /* Highlights */
  .highlights h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
  }
  .highlight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
  }
  .highlight {
    flex: 1 1 240px;
    padding: 20px;
    border-radius: var(--radius);
    background: #fff8f9;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  }
  .highlight i {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
  }
  .highlight p {
    margin: 0;
    color: var(--dark);
  }

  /* ===== CTA: premium block ===== */
  .cta-hero {
  position: relative;
  background: linear-gradient(135deg, #fef6f7 0%, #fff0f2 50%, #fff 100%);
  padding: 46px 0 0;
  overflow: visible;
  }

  .cta-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 32px;
    align-items: center;
    padding: 42px 20px 60px;
    max-width: 1100px;
    margin: 0 auto;
  }

  /* copy */
  .cta-copy h2 {
    font-family: 'Alegreya', serif;
    font-size: 2.4rem;
    margin: 0 0 12px;
    color: #2a1f25; /* deep but warm */
    letter-spacing: -0.6px;
  }
  .cta-sub {
    margin: 0 0 20px;
    color: #5e4750;
    font-size: 1.05rem;
    line-height: 1.5;
    max-width: 66ch;
  }

  /* action buttons */
  .cta-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
  }

  .btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease;
    border: none;
    font-size: 1rem;
  }

  /* primary: WhatsApp (gradient + slight shadow) */
  .btn-primary {
    background: linear-gradient(180deg, #36b37e, #2f9b6e); /* green to hint WA OR change to brand pink if you prefer */
    color: #fff;
    box-shadow: 0 10px 28px rgba(47,155,110,0.16);
  }
  .btn-primary:hover, .btn-primary:focus {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(47,155,110,0.22);
    outline: none;
  }

  /* outline button */
  .btn-outline {
    background: transparent;
    color: #2a1f25;
    border: 1px solid rgba(42,31,37,0.08);
    box-shadow: none;
  }
  .btn-outline:hover, .btn-outline:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42,31,37,0.06);
    outline: none;
  }

  /* small features row (subtle) */
  .cta-features {
    display: flex;
    gap: 14px;
    color: #7b6169;
    font-size: 0.95rem;
    margin-top: 6px;
  }
  .cta-features span { display: inline-block; padding-left: 8px; position: relative; }
  .cta-features span:not(:first-child)::before {
    content: "•";
    position: absolute;
    left: -10px;
    color: #f08ea0;
  }

  /* art / image */
  .cta-art {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .cta-art-img {
    width: 420px;
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    transform: translateY(-6px);
    transition: transform .45s cubic-bezier(.2,.9,.3,1), box-shadow .35s ease;
    box-shadow: 0 20px 48px rgba(14,18,24,0.08);
  }
  .cta-art-img:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 28px 68px rgba(14,18,24,0.12); }

  /* bottom wave */
  .cta-wave { position: relative; display: block; width: 100%; margin-top: -6px; }

  /* small screens: stack */
  @media (max-width: 980px) {
    .cta-inner { grid-template-columns: 1fr; padding: 34px 18px 48px; gap: 18px; text-align: left; }
    .cta-art { order: -1; } /* place image above on smaller screens */
    .cta-copy h2 { font-size: 1.9rem; }
    .cta-art-img { max-width: 360px; margin: 0 auto; }
  }

  /* very small */
  @media (max-width: 480px) {
    .cta-copy h2 { font-size: 1.6rem; }
    .cta-sub { font-size: 0.98rem; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; padding: 12px; }
    .cta-actions { flex-direction: column; gap: 12px; }
    .cta-features { font-size: 0.9rem; justify-content: center; }
    .cta-art-img { width: 240px; }
  }

  /* focus accessibility */
  .btn-primary:focus-visible, .btn-outline:focus-visible {
    outline: 3px solid rgba(251,149,160,0.18);
    outline-offset: 3px;
    border-radius: 10px;
  }



  /* Floating Cake Menu */
  .floating-cake {
    position: fixed;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Bigger Cake icon — no background */
  .cake-icon {
    font-size: 4rem;   /* increased size */
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .cake-icon:hover {
    transform: scale(1.2) rotate(-5deg);
  }

  /* Dropdown Menu */
  .cake-menu {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.3s ease;
  }

  /* Show menu on hover */
  .floating-cake:hover .cake-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .cake-menu li {
    border-bottom: 1px solid #f1f1f1;
  }
  .cake-menu li:last-child {
    border-bottom: none;
  }
  .cake-menu a {
    display: block;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.2s ease;
  }
  .cake-menu a:hover {
    background: #FB95A0;
    color: #fff;
  }

  /* Floating Cake Menu */
  .floating-cake {
    position: fixed;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Bigger Cake icon — animated float */
  .cake-icon {
    font-size: 4rem;
    cursor: pointer;
    animation: floatCake 3s ease-in-out infinite; /* 👈 floating animation */
    transition: transform 0.3s ease;
  }

  /* On hover: pause float and do playful tilt */
  .cake-icon:hover {
    animation-play-state: paused;  /* stop floating while hovering */
    transform: scale(1.2) rotate(-5deg);
  }

  /* Keyframes for parachute-like up/down movement */
  @keyframes floatCake {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  /* Container */
  .floating-cake {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Clickable image button */
  .cake-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  /* Cake image — no background/box */
  .cake-img {
    width: 140px;      /* adjust size */
    height: auto;
    display: block;
    border-radius: 0;  /* no rounding */
    box-shadow: none;  /* no shadow/box */
    transition: transform .35s cubic-bezier(.2,.9,.3,1);
    animation: floatCake 3.2s ease-in-out infinite;
  }

  /* Float animation */
  @keyframes floatCake {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
  }

  /* Pause float + hover effect */
  .floating-cake:hover .cake-img,
  .floating-cake.open .cake-img {
    animation-play-state: paused;
    transform: translateY(-6px) scale(1.06) rotate(-2deg);
  }

  /* Dropdown Menu */
  .cake-menu {
    margin-top: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: all .25s ease;
  }

  .floating-cake:hover .cake-menu,
  .floating-cake.open .cake-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .cake-menu ul { list-style: none; margin: 0; padding: 0; }
  .cake-menu li { border-bottom: 1px solid #eee; }
  .cake-menu li:last-child { border-bottom: none; }
  .cake-menu a {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
  }
  .cake-menu a:hover { background: #FB95A0; color: #fff; }

  /* Mobile adjustments */
  @media (max-width: 640px) {
    .cake-img { width: 110px; }
    .cake-menu { min-width: 180px; }
  }



