    /* Scoped to .pdpV2New so this can't leak onto the surrounding layout's
       own nav/header/footer when embedded as a partial. */
    .pdpV2New {
        --cream: #FAF7F2;
        --white: #FFFFFF;
        --ink: #1A1410;
        --charcoal: #2D2520;
        --amber: var(--primary-theme-color);
        --amber-light: color-mix(in srgb, var(--primary-theme-color) 70%, white);
        --amber-dark: color-mix(in srgb, var(--primary-theme-color) 80%, black);
        --sage: #5A7A5A;
        --muted: #8A7E74;
        --border: rgba(26, 20, 16, 0.1);
        --border-mid: rgba(26, 20, 16, 0.15);
        --nav-h: 56px;
        color: var(--ink);
        font-family: 'DM Sans', sans-serif;
        -webkit-font-smoothing: antialiased;
    }

    .pdpV2New *,
    .pdpV2New *::before,
    .pdpV2New *::after {
        box-sizing: border-box;
    }

    /* The quick-view popup injects this markup into #product_deatils_div
       (.singleProductSlideCol), a position:fixed panel that has a CSS
       transform for its slide-in animation. A transform on an ancestor
       makes position:fixed descendants (.sticky-footer below) anchor to
       that ancestor's box instead of the real viewport, and
       responsive-new.css also puts overflow-y:auto on that same ancestor
       under 1199px — so the footer scrolls away with the page instead of
       staying pinned, ending up overlapping content with no visible
       scrollbar. Keep that ancestor a static, non-scrolling full-height
       frame and let .pdpV2New itself be the one scrolling container, so
       the "fixed" footer (anchored to the now-static ancestor) always
       stays pinned to the true viewport bottom. No-op when .pdpV2New is
       rendered standalone (view-new.php) since there's no such ancestor. */
    .singleProductSlideCol:has(> .pdpV2New) {
        overflow: hidden !important;
    }

    .singleProductSlideCol > .pdpV2New {
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* ══ NAV ══ */
    .pdpV2New .top-nav {
        position: sticky;
        top: 0;
        z-index: 80;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        height: var(--nav-h);
        display: flex;
        align-items: center;
        padding: 0 20px;
        gap: 10px;
    }

    .pdpV2New .back-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        background: none;
        border: none;
        text-decoration: none;
        cursor: pointer;
        font-family: inherit;
        font-size: 12px;
        font-weight: 700;
        color: var(--muted);
        letter-spacing: 1px;
        text-transform: uppercase;
        transition: color 0.2s;
        padding: 6px 0;
    }

    .pdpV2New .back-btn:hover {
        color: var(--ink);
    }

    /* ══════════════════════════════════════════
       SHARED COMPONENTS
    ══════════════════════════════════════════ */

    .pdpV2New .hero-image-zone {
        position: relative;
        overflow: hidden;
    }

    .pdpV2New .hero-image-zone img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .pdpV2New .hero-image-zone:hover img {
        transform: scale(1.03);
    }

    .pdpV2New .hero-image-zone::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(20, 14, 10, 0.68) 100%);
        pointer-events: none;
    }

    .pdpV2New .hero-price-badge {
        position: absolute;
        top: 16px;
        right: 16px;
        z-index: 5;
        background: var(--white);
        border-radius: 100px;
        padding: 7px 16px;
        display: flex;
        align-items: baseline;
        gap: 1px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    }

    .pdpV2New .hero-price-currency {
        font-size: 12px;
        font-weight: 600;
        color: var(--amber);
    }

    .pdpV2New .hero-price-amount {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        font-weight: 800;
        color: var(--ink);
        letter-spacing: -0.8px;
    }

    .pdpV2New .hero-overlay {
        position: absolute;
        bottom: 16px;
        left: 20px;
        z-index: 5;
    }

    .pdpV2New .hero-category {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        color: var(--amber-light);
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
        margin-bottom: 4px;
    }

    .pdpV2New .hero-title {
        font-family: 'Playfair Display', serif;
        font-size: 26px;
        font-weight: 800;
        color: #fff;
        letter-spacing: -0.4px;
        line-height: 1.1;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    }

    .pdpV2New .hero-body {
        padding: 16px 20px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
    }

    .pdpV2New .hero-desc {
        font-size: 13.5px;
        font-weight: 400;
        color: var(--muted);
        line-height: 1.55;
        flex: 1;
    }

    .pdpV2New .hero-meta {
        display: flex;
        gap: 8px;
        flex-shrink: 0;
        flex-direction: column;
        align-items: flex-end;
    }

    .pdpV2New .meta-pill {
        display: flex;
        align-items: center;
        gap: 5px;
        background: var(--cream);
        border: 1px solid var(--border);
        border-radius: 100px;
        padding: 5px 11px;
        font-size: 12px;
        font-weight: 500;
        color: var(--charcoal);
        white-space: nowrap;
    }

    .pdpV2New .fave-btn {
        background: none;
        border: none;
        cursor: pointer;
        color: var(--muted);
        padding: 4px;
        transition: color 0.2s, transform 0.15s;
        display: flex;
        align-items: center;
    }

    .pdpV2New .fave-btn:hover {
        color: #D63B2F;
        transform: scale(1.15);
    }

    .pdpV2New .fave-btn.active {
        color: #D63B2F;
    }

    .pdpV2New .fave-btn.active svg {
        fill: #D63B2F;
    }

    /* Allergen strip */
    .pdpV2New .allergen-strip {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        padding: 0 20px 16px;
    }

    .pdpV2New .ac {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 13px 6px 10px;
        border-radius: 100px;
        border: 1.5px solid rgba(26, 20, 16, 0.14);
        background: var(--white);
        font-size: 12.5px;
        font-weight: 500;
        color: var(--charcoal);
        white-space: nowrap;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }

    .pdpV2New .ac-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 16px;
        height: 16px;
    }

    /* Qty row */
    .pdpV2New .qty-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        border-top: 1px solid var(--border);
    }

    .pdpV2New .qty-label {
        font-size: 13px;
        font-weight: 600;
        color: var(--charcoal);
    }

    .pdpV2New .qty-stepper {
        display: flex;
        align-items: center;
        background: var(--cream);
        border: 1.5px solid var(--border-mid);
        border-radius: 100px;
        overflow: hidden;
    }

    .pdpV2New .qty-btn {
        width: 34px;
        height: 34px;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 20px;
        color: var(--ink);
        font-weight: 300;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.15s;
        user-select: none;
        line-height: 1;
    }

    .pdpV2New .qty-btn:hover {
        background: color-mix(in srgb, var(--primary-theme-color) 10%, transparent);
    }

    .pdpV2New .qty-value {
        width: 28px;
        min-width: 28px;
        max-width: 28px;
        text-align: center;
        font-size: 15px;
        font-weight: 700;
        color: var(--ink);
        border: none;
        background: transparent;
        padding: 0;
        pointer-events: none;
    }

    /* Filled in by products-order.js on init/selection change — matches the
       (+$X.XX) look the static .stepper-price/.option-price prices had. */
    .pdpV2New .price-wrap {
        font-size: 12px;
        font-weight: 500;
        color: var(--muted);
        margin-left: 4px;
    }

    /* Spice row */
    .pdpV2New .spice-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        border-top: 1px solid var(--border);
    }

    .pdpV2New .spice-label {
        font-size: 13px;
        font-weight: 600;
        color: var(--charcoal);
    }

    .pdpV2New .spice-select {
        appearance: none;
        -webkit-appearance: none;
        background: var(--cream) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%238A7E74' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 10px center;
        border: 1.5px solid var(--border-mid);
        border-radius: 100px;
        padding: 7px 30px 7px 14px;
        font-family: inherit;
        font-size: 13px;
        font-weight: 600;
        color: var(--ink);
        cursor: pointer;
        outline: none;
    }

    /* Upload image row */
    .pdpV2New .upload-image-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 8px;
        padding: 13px 20px;
        border-top: 1px solid var(--border);
    }

    .pdpV2New .upload-image-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--amber);
        color: #fff;
        border: none;
        border-radius: 100px;
        padding: 9px 20px;
        font-family: inherit;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.2px;
        cursor: pointer;
        transition: background 0.2s;
        text-decoration: none;
    }

    .pdpV2New .upload-image-btn:hover {
        background: var(--amber-dark);
        color: #fff;
    }

    .pdpV2New .upload-image-hint {
        font-size: 12px;
        color: #dc3545;
        width: 100%;
    }

    .pdpV2New .upload-image-hint.upload-image-success {
        color: #1a7f37;
    }

    /* Section cards */
    .pdpV2New .section-card {
        background: var(--white);
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 10px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 2px 10px rgba(0, 0, 0, 0.06);
    }

    .pdpV2New .section-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 18px;
        cursor: pointer;
        user-select: none;
        transition: background 0.15s;
        -webkit-tap-highlight-color: transparent;
    }

    .pdpV2New .section-header:hover {
        background: color-mix(in srgb, var(--primary-theme-color) 5%, transparent);
    }

    .pdpV2New .section-header-left {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .pdpV2New .section-title {
        font-size: 14px;
        font-weight: 700;
        color: var(--ink);
        letter-spacing: -0.1px;
    }

    .pdpV2New .section-summary {
        font-size: 12px;
        font-weight: 400;
        color: var(--muted);
        margin-top: 1px;
    }

    .pdpV2New .section-badge {
        background: var(--amber);
        color: white;
        border-radius: 100px;
        padding: 2px 9px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.3px;
    }

    .pdpV2New .section-chevron {
        color: var(--muted);
        transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        flex-shrink: 0;
    }

    .pdpV2New .section-card.open .section-chevron {
        transform: rotate(180deg);
    }

    .pdpV2New .section-divider {
        height: 1px;
        background: var(--border);
        margin: 0 18px;
        display: none;
    }

    .pdpV2New .section-card.open .section-divider,
    .pdpV2New .section-card.always-open .section-divider {
        display: block;
    }

    .pdpV2New .section-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .pdpV2New .section-card.open .section-body {
        max-height: 1200px;
    }

    .pdpV2New .section-card.always-open .section-body {
        max-height: none !important;
        overflow: visible !important;
    }

    .pdpV2New .section-card.always-open .section-header {
        cursor: default;
    }

    .pdpV2New .section-card.always-open .section-chevron {
        display: none;
    }

    /* Radio options */
    .pdpV2New .option-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 18px;
        border-bottom: 1px solid var(--border);
        cursor: pointer;
        transition: background 0.15s;
        -webkit-tap-highlight-color: transparent;
    }

    .pdpV2New .option-row:last-child {
        border-bottom: none;
    }

    .pdpV2New .option-row:hover {
        background: color-mix(in srgb, var(--primary-theme-color) 5%, transparent);
    }

    .pdpV2New .option-row.selected {
        background: color-mix(in srgb, var(--primary-theme-color) 8%, var(--cream));
    }

    .pdpV2New .option-label {
        font-size: 14px;
        font-weight: 500;
        color: var(--charcoal);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .pdpV2New .option-price {
        font-size: 12.5px;
        font-weight: 500;
        color: var(--muted);
        margin-left: 4px;
    }

    .pdpV2New .radio-circle {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        border: 2px solid var(--border-mid);
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: border-color 0.2s, background 0.2s;
    }

    .pdpV2New .option-row.selected .radio-circle {
        border-color: var(--amber);
        background: var(--amber);
    }

    .pdpV2New .radio-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: white;
        opacity: 0;
        transition: opacity 0.15s;
    }

    .pdpV2New .option-row.selected .radio-dot {
        opacity: 1;
    }

    /* Stepper rows */
    .pdpV2New .stepper-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 11px 18px;
        border-bottom: 1px solid var(--border);
    }

    .pdpV2New .stepper-row:last-child {
        border-bottom: none;
    }

    .pdpV2New .stepper-label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13.5px;
        font-weight: 500;
        color: var(--charcoal);
        flex: 1;
    }

    .pdpV2New .stepper-price {
        font-size: 12px;
        font-weight: 500;
        color: var(--muted);
    }

    .pdpV2New .ing-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .pdpV2New .ing-dot.green {
        background: #5A7A5A;
    }

    .pdpV2New .ing-dot.red {
        background: #D63B2F;
    }

    .pdpV2New .mini-stepper {
        display: flex;
        align-items: center;
        background: var(--cream);
        border: 1.5px solid var(--border-mid);
        border-radius: 100px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .pdpV2New .mini-btn {
        width: 30px;
        height: 30px;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 17px;
        color: var(--ink);
        font-weight: 300;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.15s;
        user-select: none;
        line-height: 1;
    }

    .pdpV2New .mini-btn:hover {
        background: color-mix(in srgb, var(--primary-theme-color) 12%, transparent);
    }

    .pdpV2New .mini-btn:disabled {
        color: #D0C8C0;
        cursor: default;
    }

    .pdpV2New .mini-btn:disabled:hover {
        background: none;
    }

    .pdpV2New .mini-value {
        width: 24px;
        min-width: 24px;
        max-width: 24px;
        text-align: center;
        font-size: 13px;
        font-weight: 700;
        color: var(--ink);
        border: none;
        background: transparent;
        padding: 0;
        pointer-events: none;
    }

    /* Comment box */
    .pdpV2New .comment-wrap {
        padding: 14px 18px 10px;
    }

    .pdpV2New .comment-textarea {
        width: 100%;
        min-height: 90px;
        resize: none;
        border: 1.5px solid var(--border-mid);
        border-radius: 14px;
        padding: 12px 14px;
        font-family: inherit;
        font-size: 14px;
        font-weight: 400;
        color: var(--ink);
        background: var(--cream);
        outline: none;
        line-height: 1.55;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

    .pdpV2New .comment-textarea::placeholder {
        color: #B8B0A8;
    }

    .pdpV2New .comment-textarea:focus {
        border-color: var(--amber);
        box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-theme-color) 10%, transparent);
    }

    .pdpV2New .comment-footer {
        display: flex;
        justify-content: flex-end;
        padding: 6px 2px 4px;
    }

    .pdpV2New .char-count {
        font-size: 11px;
        font-weight: 500;
        color: var(--muted);
    }

    /* Sticky footer */
    .pdpV2New .sticky-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: var(--white);
        border-top: 1px solid var(--border);
        padding: 14px 16px 28px;
    }

    .pdpV2New .footer-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        max-width: 540px;
        margin: 0 auto;
    }

    .pdpV2New .footer-total {
        margin-left: 0;
    }

    .pdpV2New .footer-total-amount {
        font-family: 'Playfair Display', serif;
        font-size: 26px;
        font-weight: 800;
        color: var(--amber);
        letter-spacing: -0.8px;
    }

    .pdpV2New .add-to-cart-btn {
        flex: none;
        width: 190px;
        height: 52px;
        margin-right: 48px;
        background: var(--amber);
        color: #fff;
        border: none;
        border-radius: 100px;
        font-family: inherit;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.4px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s, transform 0.15s;
        position: relative;
        overflow: hidden;
    }

    .pdpV2New .add-to-cart-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    }

    .pdpV2New .add-to-cart-btn:hover {
        background: var(--amber-dark);
        transform: scale(1.01);
    }

    .pdpV2New .add-to-cart-btn:active {
        transform: scale(0.98);
    }

    /* Fave button in image corner */
    .pdpV2New .fave-btn-img {
        display: flex;
        position: absolute;
        bottom: 14px;
        right: 14px;
        z-index: 10;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(6px);
        border-radius: 50%;
        border: none;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        color: var(--muted);
        transition: color 0.2s, transform 0.15s, background 0.2s;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    }

    .pdpV2New .fave-btn-img:hover {
        color: #D63B2F;
        transform: scale(1.1);
    }

    .pdpV2New .fave-btn-img.active {
        color: #D63B2F;
    }

    .pdpV2New .fave-btn-img.active svg {
        fill: #D63B2F;
    }

    /* Toast */
    .pdpV2New .toast {
        position: fixed;
        bottom: 110px;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        background: var(--ink);
        color: white;
        padding: 11px 20px;
        border-radius: 100px;
        font-size: 13px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 8px;
        z-index: 999;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s;
        opacity: 0;
        pointer-events: none;
    }

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

    .pdpV2New .toast-check {
        width: 18px;
        height: 18px;
        background: var(--sage);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 10px;
    }

    /* Mobile footer nudges — subtle inward shift */
    @media (max-width: 899px) {
        .pdpV2New .footer-total {
            margin-left: 48px;
        }

        .pdpV2New .add-to-cart-btn {
            margin-right: 48px;
        }
    }

    /* ══════════════════════════════════════════
       LAYOUT — one responsive layout for all
       viewports: a single stacked column by
       default, splitting into a sticky left
       panel + independently scrollable right
       panel from 900px up. No separate mobile
       markup — this is the same DOM at every size.
    ══════════════════════════════════════════ */
    .pdpV2New .desktop-wrap {
        max-width: 540px;
        margin: 0 auto;
        padding: 20px 16px 140px;
    }

    .pdpV2New .desktop-left {
        background: var(--white);
        border-radius: 24px;
        overflow: hidden;
        margin-bottom: 12px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 4px 16px rgba(0, 0, 0, 0.07);
    }

    .pdpV2New .desktop-left .hero-image-zone {
        height: 300px;
    }

    /* ══════════════════════════════════════════
       ≥ 900px — split into sticky left panel +
       scrollable right panel
    ══════════════════════════════════════════ */
    @media (min-width: 900px) {
        .pdpV2New {
            --nav-h: 64px;
            --left-w: 380px;
        }

        .pdpV2New .top-nav {
            padding: 0 48px;
            height: var(--nav-h);
        }

        /* Two-column grid */
        .pdpV2New .desktop-wrap {
            display: grid;
            grid-template-columns: var(--left-w) 1fr;
            min-height: calc(100vh - var(--nav-h));
            align-items: start;
            max-width: none;
            margin: 0;
            padding: 0;
        }

        /* ── LEFT PANEL: sticky ── */
        .pdpV2New .desktop-left {
            position: sticky;
            top: var(--nav-h);
            height: calc(100vh - var(--nav-h));
            display: flex;
            flex-direction: column;
            border-radius: 0;
            margin-bottom: 0;
            box-shadow: none;
            border-right: 1px solid var(--border);
            overflow: hidden;
        }

        /* Image fills top portion, square-ish */
        .pdpV2New .desktop-left .hero-image-zone {
            height: 340px;
            flex-shrink: 0;
            border-radius: 0;
        }

        .pdpV2New .desktop-left .hero-title {
            font-size: 28px;
        }

        /* Info area below image scrolls if needed. min-height:0 overrides
           the flex item's default min-height:auto — without it, the item
           refuses to shrink below its content's natural height, so instead
           of scrolling internally it grows past .desktop-left's fixed
           height and gets silently clipped by that ancestor's
           overflow:hidden (no scrollbar, content just disappears). Bottom
           padding matches .desktop-right's clearance for the fixed
           .sticky-footer so the last row (upload-image-row) can scroll
           clear of it instead of being stuck underneath. */
        .pdpV2New .desktop-left-body {
            flex: 1;
            min-height: 0;
            overflow-y: auto;
            padding: 0 0 130px;
        }

        .pdpV2New .desktop-left .hero-body {
            padding: 16px 24px 10px;
            flex-shrink: 0;
        }

        .pdpV2New .desktop-left .hero-desc {
            font-size: 13px;
        }

        /* Hide the timer/fave meta row on desktop — fave moves to image corner */
        .pdpV2New .desktop-left .hero-meta {
            display: none;
        }

        .pdpV2New .desktop-left .allergen-strip {
            padding: 0 24px 14px;
            flex-shrink: 0;
        }

        .pdpV2New .desktop-left .qty-row {
            padding: 12px 24px;
            border-top: 1px solid var(--border);
            flex-shrink: 0;
        }

        .pdpV2New .desktop-left .spice-row {
            padding: 12px 24px;
            border-top: 1px solid var(--border);
            flex-shrink: 0;
        }

        /* ── RIGHT PANEL: scrollable options ── */
        .pdpV2New .desktop-right {
            overflow-y: auto;
            height: calc(100vh - var(--nav-h));
            padding: 24px 40px 130px 32px;
        }

        .pdpV2New .desktop-right .section-card {
            border-radius: 16px;
            margin-bottom: 8px;
        }

        /* ── FOOTER: full width, both columns visible ── */
        .pdpV2New .sticky-footer {
            padding: 14px 40px 24px;
        }

        /* Reset mobile max-width constraint */
        .pdpV2New .footer-inner {
            max-width: none;
            margin: 0;
            /* Pad left to align total with right column content */
            padding-left: calc(var(--left-w) + 32px);
            justify-content: space-between;
        }

        .pdpV2New .footer-total {
            margin-left: 0;
        }

        .pdpV2New .add-to-cart-btn {
            width: 200px;
            margin-right: 0;
        }
    }
