  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

  .cnb-root {
    --br: #5A471C;
    --red: #CF0001;
    --cream: #FDC9B1;
    --choc: #8F503C;
    font-family: 'Outfit', sans-serif;
    background: #FFF8F5;
    border-radius: 20px;
    width: 100%;
    min-height: 520px;
    border-bottom: 1px solid #63502466;
  }

  .cnb-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='10' cy='10' r='1' fill='%235A471C' opacity='0.04'/%3E%3Ccircle cx='40' cy='25' r='0.8' fill='%23CF0001' opacity='0.05'/%3E%3Ccircle cx='65' cy='50' r='1' fill='%235A471C' opacity='0.03'/%3E%3Ccircle cx='20' cy='65' r='0.7' fill='%23FDC9B1' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
  }

  .cnb-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    z-index: 1;
    min-height: 520px;
  }

  /* LEFT CONTENT */
  .cnb-left {
    padding: 0px 36px 40px 40px;
  }

  .cnb-tag {
    display: inline-flex;
    background: #FFF0E9;
    border: 1px solid #FDC9B1;
    border-radius: 100px;
    padding: 6px 14px 6px 10px;
    letter-spacing: 0.1em;
    color: var(--choc);
    width: fit-content;
    margin-bottom: 20px;
  }

  .cnb-tag-dot {
    width: 7px;
    height: 7px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
  }

  @keyframes blink {

    0%,
    100% {
      opacity: 1
    }

    50% {
      opacity: 0.3
    }
  }

  .cnb-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.85rem, 3.5vw, 3.9rem);
    line-height: 1.1;
    color: #1a0f00;
    margin: 0 0 16px;
  }

  .cnb-headline em {
    font-style: italic;
    color: var(--red);
  }

  .cnb-sub {
    font-size: clamp(0.78rem, 1.2vw, 0.92rem);
    color: #7A5C4A;
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 500px;
  }

  /* BUTTONS */
  .cnb-btns {
    gap: 10px;
    margin-bottom: 36px;
  }

  .cnb-btn1 {
    background: var(--red);
    padding: 11px 22px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: transform 0.2s;
  }

  .cnb-btn1:hover {
    transform: translateY(-2px);
  }

  .cnb-btn2 {
    background: transparent;
    color: var(--br);
    border: 1.5px solid #C4A882;
    padding: 11px 22px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
  }

  .cnb-btn2:hover {
    border-color: var(--br);
    background: #FFF0E9;
  }

  /* TRUST ROW */
  .cnb-trust {
    gap: 20px;
    border-top: 1px solid #EDDED4;
  }

  .cnb-t-num {
    font-family: 'Playfair Display', serif;
    color: #1a0f00;
    line-height: 1;
  }

  .cnb-t-label {
    letter-spacing: 0.07em;
    color: #A07A66;
    margin-top: 2px;
  }

  .cnb-t-div {
    width: 1px;
    height: 30px;
    background: #EDDED4;
  }

  /* RIGHT VISUAL */
  .cnb-right {
    background: linear-gradient(145deg, #F5E6DD 0%, #FDDDC9 55%, #FFC5AA 100%);
    align-items: flex-end;
    min-height: 480px;
  }

  /* Big arch background shape */
  .cnb-arch {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 105%;
    background: linear-gradient(180deg, #fff4ee 0%, #FFDBC8 100%);
    border-radius: 50% 50% 0 0;
  }

  /* Cake SVG placeholder */
  .cnb-cake-wrap {
    z-index: 2;
    width: 100%;
    animation: floatUp 4s ease-in-out infinite;
  }

  @keyframes floatUp {

    0%,
    100% {
      transform: translateY(0)
    }

    50% {
      transform: translateY(-10px)
    }
  }

  .cnb-cake-wrap img {
    width: 60%;
    max-width: 330px;
  }

  /* Floating chips */
  .chip {
    display: flex;
    position: absolute;
    border-radius: 14px;
    padding: 8px 14px;
    box-shadow: 0 4px 18px rgba(90, 71, 28, 0.12);
    font-family: 'Outfit', sans-serif;
    color: #3A2008;
    animation: chipFloat 3.5s ease-in-out infinite;
  }

  @keyframes chipFloat {

    0%,
    100% {
      transform: translateY(0)
    }

    50% {
      transform: translateY(-6px)
    }
  }

  .chip-star {
    color: #E8A000;
  }

  .chip1 {
    top: 18%;
    left: 6%;
    animation-delay: 0s;
  }

  .chip2 {
    top: 38%;
    right: 5%;
    animation-delay: 1.2s;
  }

  .chip3 {
    bottom: 30%;
    left: 4%;
    animation-delay: 0.6s;
  }

  /* Badge ring */
  .cnb-badge-ring {
    position: absolute;
    top: 14%;
    right: 12%;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--red);
    z-index: 5;
  }

  .cnb-badge-ring .bnum {
    font-family: 'Playfair Display', serif;
    line-height: 1;
  }

  .cnb-badge-ring .btxt {
    font-size: 0.5rem;
    letter-spacing: 0.06em;
    margin-top: 2px;
    line-height: 1.3;
  }

  /* Sprinkles */
  .sp {
    position: absolute;
    border-radius: 50%;
    animation: spTwink 2.5s ease-in-out infinite alternate;
  }

  @keyframes spTwink {
    from {
      opacity: 0.25;
      transform: scale(0.8)
    }

    to {
      opacity: 0.7;
      transform: scale(1.2)
    }
  }

  @media(max-width:580px) {
    .cnb-layout {
      grid-template-columns: 1fr;
      min-height: auto;
    }

    .cnb-right {
      min-height: 320px;
    }

    .cnb-left {
      padding: 40px 24px 24px;
    }

    .chip {
      display: none;
    }

    .cnb-badge-ring {
      width: 58px;
      height: 58px;
    }
  }