  /* ===== PRODUCT TOP SECTION ===== */
  .pd-top {
    padding: clamp(1.25rem, 1.1397rem + 0.5882vw, 1.875rem);
    border-radius: 24px;
    box-shadow: 0px 0px 10px #5a471c12;
  }

  .hero-inner-page {
    background-color: #FFF8F5;
  }

  .pd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 40px);
    align-items: start;
  }

  @media(max-width:880px) {
    .pd-grid {
      grid-template-columns: 1fr;
    }
  }

  /* gallery */
  .pd-gallery-col {
    position: sticky;
    top: 100px;
  }

  .pd-main-img-wrap {
    border-radius: 20px;
    background: #FFF0E9;
    cursor: zoom-in;
    border: 1px solid var(--borderColor);
    height: clamp(15.625rem, 12.8676rem + 14.7059vw, 31.25rem);
    flex-shrink: 0;
    order: 1;
  }

  .pd-main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s;
  }

  .pd-main-img-wrap.zoomed img {
    transform: scale(1.8);
    transition: transform .1s;
  }

  .pd-discount-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accentRed);
    color: #fff;
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
  }

  .pd-zoom-hint {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(26, 15, 0, .6);
    color: #fff;
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
  }

  .pd-zoom-hint svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
  }

  .pd-thumbs {
    gap: 10px;
    flex-shrink: 0;
    flex-direction: column;
  }

  .pd-thumb {
    width: clamp(3.75rem, 3.6176rem + 0.7059vw, 4.5rem);
    height: clamp(3.75rem, 3.6176rem + 0.7059vw, 4.5rem);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--borderColor);
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color .2s;
  }

  .pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .pd-thumb.active {
    border-color: var(--accentRed);
  }

  /* right info - scrollable section */
  .pd-info-col {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 140px);
    overflow: hidden;
  }

  .pd-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 1.4559rem + 0.2353vw, 1.9rem);
    font-weight: 700;
    color: var(--textcolor);
    margin-bottom: 8px;
    line-height: 1.2;
  }

  /* Scrollable content wrapper */
  .pd-info-scroll {
    flex: 1;
    overflow-y: scroll;
    scroll-behavior: smooth;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .pd-info-scroll::-webkit-scrollbar {
    display: none;
  }

  .pd-rating {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .pd-stars {
    display: flex;
    gap: 1px;
  }

  .pd-star {
    width: 14px;
    height: 14px;
  }

  .pd-star path {
    fill: #E8A000;
  }

  .pd-rating-num {
    font-size: .85rem;
    font-weight: 700;
    color: var(--textcolor);
  }

  .pd-review-link {
    font-size: .8rem;
    color: var(--textLightColor);
    text-decoration: underline;
    cursor: pointer;
  }

  .pd-sku {
    font-size: .78rem;
    color: var(--textLightColor);
  }

  .pd-avail {
    display: inline-flex;
    color: #2e7d32;
  }

  .pd-avail-dot {
    width: 7px;
    height: 7px;
    background: #2e7d32;
    border-radius: 50%;
    animation: pdPulse 1.6s ease-in-out infinite;
  }

  @keyframes pdPulse {

    0%,
    100% {
      opacity: 1
    }

    50% {
      opacity: .3
    }
  }

  .pd-price-row {
    gap: 12px;
  }

  .pd-price {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--accentRed);
  }

  .pd-old-price {
    font-size: 1.1rem;
    color: var(--textLightColor);
    text-decoration: line-through;
  }

  .pd-offer-badge {
    background: #FFF0E9;
    border: 1px solid #FDC9B1;
    color: var(--chocolateBrown);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
  }

  .pd-inclusive {
    font-size: .72rem;
    color: var(--textLightColor);
    margin-bottom: 16px;
  }

  .pd-shortdesc {
    border-bottom: 1px solid var(--borderColor);
  }

  .cz-group {
    margin-bottom: 16px;
  }

  .cz-label-text {
    letter-spacing: .04em;
  }

  .cz-label-sel {
    font-size: .78rem;
    color: var(--accentRed);
    font-weight: 600;
  }

  .cz-pill {
    border: 1.5px solid var(--borderColor);
    border-radius: 50px;
    padding: 4px 14px;
    color: var(--textcolor);
    cursor: pointer;
    transition: all .2s;
    background: #fff;
    user-select: none;
  }

  .cz-pill:hover {
    border-color: var(--primaryBrown);
  }

  .cz-pill.sel {
    background: var(--primaryBrown);
    color: #fff;
    border-color: var(--primaryBrown);
  }

  .cz-shape {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    border: 1.5px solid var(--borderColor);
    border-radius: 14px;
    cursor: pointer;
    transition: all .2s;
    background: #fff;
    min-width: 64px;
  }

  .cz-shape:hover {
    border-color: var(--primaryBrown);
  }

  .cz-shape.sel {
    border-color: var(--accentRed);
    background: #FFF0E9;
  }

  .cz-shape svg {
    width: 24px;
    height: 24px;
    stroke: var(--textcolor);
    fill: none;
    stroke-width: 1.6;
  }

  .cz-shape.sel svg {
    stroke: var(--accentRed);
  }

  .cz-shape span {
    font-size: .7rem;
    font-weight: 600;
    color: var(--textcolor);
  }

  /* egg toggle */
  .cz-egg-row {
    display: flex;
    gap: 10px;
  }

  .cz-egg {
    flex: 1;
    text-align: center;
    padding: 10px;
    border: 1.5px solid var(--borderColor);
    border-radius: 12px;
    cursor: pointer;
    font-size: .82rem;
    font-weight: 600;
    transition: all .2s;
    background: #fff;
  }

  .cz-egg.sel {
    background: var(--primaryBrown);
    color: #fff;
    border-color: var(--primaryBrown);
  }

  /* date/time */
  .cz-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  @media(max-width:480px) {
    .cz-input-row {
      grid-template-columns: 1fr;
    }
  }

  .cz-input {
    width: 100%;
    border: 1.5px solid var(--borderColor);
    border-radius: 12px;
    padding: 11px 14px;
    font-size: .82rem;
    font-family: 'Outfit', sans-serif;
    color: var(--textcolor);
    outline: none;
    background: #fff;
    transition: border-color .2s;
  }

  .cz-input:focus {
    border-color: var(--primaryBrown);
  }

  /* message input */
  .cz-msg-input {
    width: 100%;
    border: 1.5px solid var(--borderColor);
    border-radius: 12px;
    padding: 11px 14px;
    font-size: .82rem;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: border-color .2s;
  }

  .cz-msg-input:focus {
    border-color: var(--primaryBrown);
  }

  .cz-char-count {
    font-size: .7rem;
    color: var(--textLightColor);
    text-align: right;
    margin-top: 4px;
  }

  .cz-textarea {
    width: 100%;
    border: 1.5px solid var(--borderColor);
    border-radius: 12px;
    padding: 11px 14px;
    font-size: .82rem;
    font-family: 'Outfit', sans-serif;
    outline: none;
    resize: vertical;
    min-height: 80px;
    transition: border-color .2s;
  }

  .cz-textarea:focus {
    border-color: var(--primaryBrown);
  }

  .pd-purchase {
    border-top: 1px solid var(--borderColor);
  }

  .pd-qty-row {
    gap: 14px;
    margin-bottom: 18px;
  }

  .pd-qty-box {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--borderColor);
    border-radius: 50px;
    overflow: hidden;
  }

  .pd-qty-btn {
    width: 36px;
    height: 36px;
    background: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--primaryBrown);
  }

  .pd-qty-btn:hover {
    background: #FFF0E9;
  }

  .pd-qty-val {
    width: 40px;
    text-align: center;
    font-size: .9rem;
    font-weight: 700;
    color: var(--textcolor);
  }

  .pd-total-price {
    font-size: .85rem;
    color: var(--textLightColor);
  }

  .pd-total-price strong {
    color: var(--accentRed);
    font-size: 1rem;
  }

  .pd-btn-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
  }

  .pd-btn-cart {
    flex: 1;
    min-width: clamp(6.875rem, 6.5441rem + 1.7647vw, 8.75rem);
    background: var(--primaryBrown);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: clamp(0.5rem, 0.4338rem + 0.3529vw, 0.875rem) 0;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .2s, transform .15s;
  }

  .pd-btn-cart:hover {
    background: #3e3014;
    transform: translateY(-1px);
  }

  .pd-btn-cart svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
  }

  .pd-btn-buy {
    flex: 1;
    min-width: clamp(6.875rem, 6.5441rem + 1.7647vw, 8.75rem);
    background: var(--accentRed);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: clamp(0.5rem, 0.4338rem + 0.3529vw, 0.875rem) 0;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .2s;
    box-shadow: 0 8px 20px rgba(207, 0, 1, .28);
    position: relative;
    overflow: hidden;
    animation: buyNowShadowGrow 2s ease-in-out infinite, buyNowBgShift 3s ease-in-out infinite;
  }

  .pd-btn-buy::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.322), transparent);
    animation: buyNowShineSlide 2s infinite;
  }

  .arrow-icon {
    animation: arrowBounce 1.5s ease-in-out infinite;
    transform-origin: center;
  }

  @keyframes buyNowPulseWidth {

    0%,
    100% {
      padding-left: 14px;
      padding-right: 14px;
    }

    50% {
      padding-left: 18px;
      padding-right: 18px;
    }
  }

  @keyframes buyNowShadowGrow {

    0%,
    100% {
      box-shadow: 0 8px 12px rgba(207, 0, 1, .28);
    }

    50% {
      box-shadow: 0 8px 12px rgba(207, 0, 1, .28), 0 0 20px rgba(207, 0, 1, .6), inset 0 0 10px rgba(255, 255, 255, 0.1);
    }
  }

  @keyframes buyNowBgShift {

    0%,
    100% {
      background: var(--accentRed);
      filter: brightness(1);
    }

    50% {
      background: #d41e0a;
      filter: brightness(1.1);
    }
  }

  @keyframes buyNowShineSlide {
    0% {
      left: -100%;
    }

    100% {
      left: 100%;
    }
  }

  @keyframes arrowBounce {

    0%,
    100% {
      transform: translateX(0);
    }

    50% {
      transform: translateX(4px);
    }
  }

  .pd-btn-buy:hover {
    background: #a80001;
    transform: translateY(-1px);
  }

  @keyframes buyNowClick {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.08);
    }

    100% {
      transform: scale(1);
    }
  }

  .pd-btn-wish {
    width: clamp(2.5rem, 2.3897rem + 0.5882vw, 3.125rem);
    height: clamp(2.5rem, 2.3897rem + 0.5882vw, 3.125rem);
    border-radius: 50%;
    border: 1.5px solid var(--borderColor);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    flex-shrink: 0;
  }

  .pd-btn-wish:hover,
  .pd-btn-wish.active {
    background: var(--accentRed);
    border-color: var(--accentRed);
  }

  .pd-btn-wish svg {
    width: 18px;
    height: 18px;
    stroke: var(--textLightColor);
    fill: none;
    stroke-width: 2;
    transition: all .2s;
  }

  .pd-btn-wish:hover svg,
  .pd-btn-wish.active svg {
    stroke: #fff;
  }

  .pd-btn-wish.active svg {
    fill: #fff;
  }

  /* trust badges */
  .pd-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  .pd-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .74rem;
    font-weight: 500;
    color: var(--textLightColor);
  }

  .pd-trust-item svg {
    width: 15px;
    height: 15px;
    stroke: var(--primaryBrown);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
  }

  /* ===== CAKE DETAILS SMALL (under images) ===== */

  .cake-detail-small-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
  }

  .cake-detail-small-icon {
    width: clamp(2.25rem, 2.1618rem + 0.4706vw, 2.75rem);
    height: clamp(2.25rem, 2.1618rem + 0.4706vw, 2.75rem);
    border-radius: 10px;
    background: linear-gradient(135deg, #FFF0E9, #FFE0CC);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .cake-detail-small-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accentRed);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .cake-detail-small-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  /* ===== HIGHLIGHTS ===== */

  .pd-hl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 2vw, 20px);
    max-width: 1060px;
    margin: 0 auto;
  }

  @media(max-width:700px) {
    .pd-hl-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .pd-hl-card {
    text-align: center;
    padding: clamp(18px, 2.5vw, 26px) 14px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--borderColor);
    transition: transform .3s, box-shadow .3s;
  }

  .pd-hl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 2px 6px rgba(90, 71, 28, .1);

  }

  .pd-hl-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #cf04110d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    border: 1px solid #ff000033;
  }

  .pd-hl-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--accentRed);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .pd-hl-title {
    font-size: .85rem;
    font-weight: 700;
    color: var(--textcolor);
  }

  /* gallery section below main image */
  .pd-gallery-sec {
    margin-top: clamp(36px, 5vw, 56px);
    padding: clamp(24px, 3vw, 36px);
    border-radius: 18px;
    background: #FFF8F5;
    border: 1px solid var(--borderColor);
  }

  .pd-gallery-title {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 700;
    color: var(--textcolor);
    margin-bottom: 20px;
  }

  .pd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
  }

  @media(max-width:768px) {
    .pd-gallery-grid {
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 12px;
    }
  }

  .pd-gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .3s ease;
    box-shadow: 0 4px 12px rgba(90, 71, 28, .08);
  }

  .pd-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(90, 71, 28, .15);
    border-color: var(--accentRed);
  }

  .pd-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
  }

  .pd-gallery-item:hover img {
    transform: scale(1.05);
  }

  .pd-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease;
  }

  .pd-gallery-item:hover .pd-gallery-overlay {
    background: rgba(0, 0, 0, .4);
  }

  .pd-gallery-overlay-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
  }

  .pd-gallery-item:hover .pd-gallery-overlay-icon {
    opacity: 1;
  }

  .pd-gallery-overlay-icon svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
  }

  /* toast */
  .pd-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--textcolor);
    color: #fff;
    padding: 13px 24px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 999;
    transition: transform .35s cubic-bezier(.25, .46, .45, .94);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  }

  .pd-toast.show {
    transform: translateX(-50%) translateY(0);
  }

  .pd-toast svg {
    width: 16px;
    height: 16px;
    stroke: #4caf50;
    fill: none;
    stroke-width: 2.5;
  }

  @media (max-width: 576px) {
    .cake-images-box {
      flex-direction: column;
    }

    .pd-thumbs {
      flex-direction: row;
    }

    .pd-gallery-col {
      position: relative;
      top: 0px;
    }
  }

  .pt-sec {
    background: #FFF8F5;
  }

  .pt-wrap {
    border-radius: 24px;
    border: 1px solid var(--borderColor);
  }

  /* tab nav */
  .pt-nav {
    display: flex;
    border-bottom: 1px solid var(--borderColor);
    overflow-x: auto;
    overflow-y: hidden;
  }

  .pt-nav-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: clamp(16px, 2vw, 18px) 16px;
    font-size: clamp(0.78rem, 0.74rem+0.2vw, 0.9rem);
    font-weight: 600;
    color: var(--textLightColor);
    cursor: pointer;
    border: none;
    background: none;
    position: relative;
    transition: color .25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    white-space: nowrap;
  }

  .pt-nav-item svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    flex-shrink: 0;
  }

  .pt-nav-item:hover {
    color: var(--primaryBrown);
  }

  .pt-nav-item.active {
    color: var(--accentRed);
  }

  .pt-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--accentRed);
    border-radius: 3px 3px 0 0;
  }

  .pt-badge {
    background: #FFF0E9;
    color: var(--chocolateBrown);
    font-size: 10px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 50px;
  }

  .pt-nav-item.active .pt-badge {
    background: var(--accentRed);
    color: #fff;
  }

  /* tab panes */
  .pt-body {
    padding: clamp(20px, 4vw, 36px);
  }

  .pt-pane {
    display: none;
    animation: ptFade .35s ease;
  }

  .pt-pane.active {
    display: block;
  }

  @keyframes ptFade {
    from {
      opacity: 0;
      transform: translateY(6px)
    }

    to {
      opacity: 1;
      transform: translateY(0)
    }
  }

  /* ===== DESCRIPTION ===== */
  .pt-desc-title {
    font-family: 'Playfair Display', serif;
  }

  .pt-desc-text {
    margin-bottom: 14px;
  }

  .pt-feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  @media(max-width:560px) {
    .pt-feature-list {
      grid-template-columns: 1fr;
    }
  }

  .pt-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .84rem;
    color: var(--textcolor);
    font-weight: 500;
  }

  .pt-feature svg {
    width: 16px;
    height: 16px;
    stroke: var(--accentRed);
    fill: none;
    stroke-width: 2.4;
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* ===== INGREDIENTS ===== */
  .pt-ing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  @media(max-width:680px) {
    .pt-ing-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media(max-width:420px) {
    .pt-ing-grid {
      grid-template-columns: 1fr;
    }
  }

  .pt-ing-card {
    background: #FFF8F5;
    border: 1px solid var(--borderColor);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .pt-ing-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #FFF0E9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .pt-ing-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--chocolateBrown);
    fill: none;
    stroke-width: 1.8;
  }

  .pt-ing-name {
    font-size: .82rem;
    font-weight: 700;
    color: var(--textcolor);
  }

  .pt-ing-sub {
    font-size: .7rem;
    color: var(--textLightColor);
  }

  .pt-allergy {
    margin-top: 20px;
    background: #FFF4E5;
    border: 1px solid #FFD9A8;
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }

  .pt-allergy svg {
    width: 18px;
    height: 18px;
    stroke: #B36B00;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .pt-allergy-text {
    font-size: .78rem;
    color: #7A5200;
    line-height: 1.6;
  }

  .pt-allergy-text strong {
    font-weight: 700;
  }

  /* ===== DELIVERY INFO ===== */
  .pt-del-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  @media(max-width:600px) {
    .pt-del-grid {
      grid-template-columns: 1fr;
    }
  }

  .pt-del-card {
    display: flex;
    gap: 14px;
    background: #FFF8F5;
    border: 1px solid var(--borderColor);
    border-radius: 16px;
    padding: 16px;
  }

  .pt-del-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #FFF0E9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .pt-del-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accentRed);
    fill: none;
    stroke-width: 1.8;
  }

  .pt-del-title {
    font-size: .85rem;
    font-weight: 700;
    color: var(--textcolor);
    margin-bottom: 4px;
  }

  .pt-del-note {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #E8F5E9;
    border: 1px solid #A5D6A7;
    border-radius: 14px;
    padding: 12px 16px;
  }

  .pt-del-note svg {
    width: 18px;
    height: 18px;
    stroke: #2e7d32;
    fill: none;
    stroke-width: 2.2;
    flex-shrink: 0;
  }

  .pt-del-note span {
    font-size: .78rem;
    color: #1b5e20;
    font-weight: 600;
  }

  /* ===== REVIEWS ===== */
  .pt-rev-summary {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--borderColor);
    margin-bottom: 20px;
  }

  .pt-rev-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--textcolor);
    line-height: 1;
  }

  .pt-rev-stars {
    display: flex;
    gap: 2px;
    margin: 6px 0 3px;
  }

  .pt-rev-stars svg {
    width: 15px;
    height: 15px;
  }

  .pt-rev-stars path {
    fill: #E8A000;
  }

  .pt-rev-count {
    font-size: .76rem;
    color: var(--textLightColor);
  }

  .pt-rev-item {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--borderColor);
  }

  .pt-rev-item:last-child {
    border-bottom: none;
  }

  .pt-rev-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #FFF0E9, #FDC9B1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--chocolateBrown);
    font-size: .95rem;
  }

  .pt-rev-name {
    font-size: .84rem;
    font-weight: 700;
    color: var(--textcolor);
  }

  .pt-rev-date {
    font-size: .7rem;
    color: var(--textLightColor);
    margin-left: 8px;
  }

  .pt-rev-stars-sm {
    display: flex;
    gap: 1px;
    margin: 4px 0 6px;
  }

  .pt-rev-stars-sm svg {
    width: 12px;
    height: 12px;
  }

  .pt-rev-stars-sm path {
    fill: #E8A000;
  }

  .pt-rev-text {
    font-size: .8rem;
    color: var(--textLightColor);
    line-height: 1.7;
  }

  .pt-rev-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .7rem;
    font-weight: 600;
    color: #2e7d32;
    margin-top: 6px;
  }

  .pt-rev-verified svg {
    width: 11px;
    height: 11px;
    stroke: #2e7d32;
    fill: none;
    stroke-width: 2.4;
  }


  /* ===== FAQ SECTION ===== */
  .faq-section {
    background: #FFF8F5;
  }

  .faq-item {
    margin-bottom: 16px;
    border: 1.5px solid var(--borderColor);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: all .3s ease;
  }

  .faq-item:hover {
    border-color: rgba(255, 0, 0, 0.281);
    box-shadow: 0 4px 12px rgba(90, 71, 28, .08);
  }

  .faq-item.active {
    border-color: var(--accentRed);
    box-shadow: 0 6px 20px rgba(207, 0, 1, .1);
  }

  .faq-header {
    padding: 18px 22px;
    cursor: pointer;
    transition: background .2s ease;
  }

  .faq-header:hover {
    background: #fdf5f2;
  }

  .faq-title {
    color: var(--textcolor);
    margin: 0;
    line-height: 1.4;
  }

  .faq-icon {
    width: 22px;
    height: 22px;
    color: var(--accentRed);
    flex-shrink: 0;
    transition: transform .3s ease;
  }

  .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    padding: 0 22px;
  }

  .faq-item.active .faq-content {
    padding: 8px 22px 18px 22px;
    max-height: 200px !important;
  }

  .faq-item.active .faq-header {
    background-color: #c900010f;
  }


  /* ===== ADDONS SECTION ===== */
  .pd-addons {
    border-top: 1px solid var(--borderColor);
    margin-top: 16px;
    padding-top: 16px;
  }

  .addons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  @media (max-width: 768px) {
    .addons-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
  }

  @media (max-width: 480px) {
    .addons-grid {
      grid-template-columns: 1fr;
    }
  }

  .addon-card {
    border: 1.5px solid var(--borderColor);
    border-radius: 6px;
    padding: 6px;
    transition: all .2s ease;
  }

  .addon-card:hover {
    border-color: var(--accentRed);
    box-shadow: 0 4px 12px rgba(90, 71, 28, .08);
    transform: translateY(-2px);
  }

  .addon-card img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 8px;
    display: block;
  }

  .addon-name {
    flex-grow: 1;
  }

  .addon-footer {
    margin-top: auto;
  }

  .addon-btn {
    background: var(--accentRed);
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer;
    transition: background .2s ease;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .addon-btn:hover {
    background: #a80001;
  }

  .addon-btn svg {
    width: 14px;
    height: 14px;
  }

  .addon-footer {
    .pd-qty-btn {
      height: 24px;
      width: 24px;
    }

    .pd-qty-val {
      width: 20px !important;
    }
  }