  /* ===== 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;
      }
    }
  
  
  /* Products — Notch layout (modern & classy) */
  .products-section.notch {
    padding: 70px 18px 48px;
    background: linear-gradient(180deg, #fff 0%, #fff8f9 100%);
  }

  .products-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
  .products-section.notch .section-title { font-family:'Alegreya', serif; font-size:2.2rem; color:#222; margin-bottom:6px; }
  .products-section.notch .underline { width:70px; height:4px; background:#FB95A0; margin:10px auto 16px; border-radius:3px; }
  .products-section.notch .section-subtitle { color:#666; max-width:760px; margin:0 auto 100px; }

  /* grid — larger row-gap for more vertical spacing between rows */
  .products-grid.notch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px 22px;           /* row-gap 100px, column-gap 22px */
    align-items: start;
  }

  /* card */
  .product-card.notch-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(14,18,24,0.06);
    overflow: visible;
    transition: transform .28s ease, box-shadow .28s ease;
    padding: 22px 18px 26px;
    min-height: 260px;
  }
  /* hover lift */
  .product-card.notch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(14,18,24,0.12);
  }

  /* notch top area */
  .notch-top {
    position: absolute;
    left: 50%;
    top: -44px;                     /* pull up so notch sits outside card */
    transform: translateX(-50%);
    width: 220px;
    height: 96px;
    display: grid;
    place-items: center;
    z-index: 6;
    pointer-events: none;
  }
  /* actual notch background — create rounded inset look */
  .notch-top::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 96px;
    background: #fff;               /* must match card background */
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    box-shadow: 0 8px 18px rgba(14,18,24,0.06);
    top: 0;
    left: 0;
    transform: translateY(0);
  }

  /* image inside notch */
  .notch-img {
    width: 180px;
    height: 88px;
    border-radius: 14px;
    overflow: hidden;
    z-index: 8;
    display: grid;
    place-items: center;
  }
  .notch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center;
    transition: transform .45s ease;
  }
  /* image zoom on parent hover */
  .product-card.notch-card:hover .notch-img img {
    transform: scale(1.06);
  }

  /* product body content sits below notch */
  .product-body {
    margin-top: 56px; /* space to account for notch area */
    padding: 0 6px;
  }
  .product-title {
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: #122;
    margin: 6px 0 6px;
  }
  .product-count {
    font-size: 0.98rem;
    color: #b93b52;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .product-desc {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 260px;
  }

  /* decorative subtle top border to feel like 'box covers image' */
  .product-card.notch-card::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    top: 12px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0,0,0,0.03), rgba(0,0,0,0.01));
    border-radius: 2px;
    pointer-events: none;
  }

  /* Explore Button */
  .btn-explore {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 18px;
    background: linear-gradient(180deg, #FB95A0, #e87f8c);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(251, 149, 160, 0.25);
  }


  /* Responsive: 2 columns, larger row-gap preserved */
  @media (max-width: 1100px) {
    .products-grid.notch-grid { grid-template-columns: repeat(2, 1fr); gap: 60px 20px; }
    .notch-top { width: 180px; height: 84px; top: -40px; }
    .notch-top::before { width: 180px; height: 84px; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; }
    .notch-img { width: 150px; height: 74px; border-radius: 12px; }
    .product-body { margin-top: 48px; }
    .product-desc { max-width: 240px; }
  }

  /* Mobile: single column, notch becomes centered but smaller */
  @media (max-width: 640px) {
    .products-grid.notch-grid { grid-template-columns: 1fr; gap: 50px 0; }
    .notch-top { width: 160px; height: 72px; top: -36px; }
    .notch-top::before { width: 160px; height: 72px; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; }
    .notch-img { width: 132px; height: 60px; }
    .product-body { margin-top: 44px; padding: 0 10px; }
    .product-desc { max-width: 100%; }
    .product-card.notch-card { padding: 18px; min-height: auto; }
    .products-section.notch { padding: 40px 12px 36px; }
  }

  /* 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; }
  }



