/* Product detail page (pdpv2) styles — scoped under .pdpv2, safe to load sitewide.
 * Extracted from the design draft's second (namespaced) revision; the file's
 * first revision (unscoped *, body, a, img, header, footer, .btn rules) is
 * intentionally dropped — it would have bled into the shared header/footer. */

:root {
    --pdp-maroon: #701119;
    --pdp-maroon-dark: #4c0f18;
    --pdp-cream: #faf5ec;
    --pdp-cream-2: #f3ead9;
    --pdp-gold: #b8862f;
    --pdp-gold-soft: #d9b976;
    --pdp-ink: #2b211d;
    --pdp-ink-soft: #6b5f57;
    --pdp-line: #e7dcc9;
    --pdp-radius: 10px;
}

.pdpv2 {
    background: var(--pdp-cream);
    font-family: 'Karla', sans-serif;
    color: var(--pdp-ink);
}

.pdpv2-wrap {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 24px;
}

.pdpv2 h1,
.pdpv2 h2,
.pdpv2 h3 {
    font-family: 'Marcellus', serif;
    font-weight: 400;
    margin: 0;
}

.pdpv2 a {
    text-decoration: none;
    color: inherit;
}

.pdpv2-bread {
    padding-top: 16px;
    padding-bottom: 4px;
    font-size: 12.5px;
    color: var(--pdp-ink-soft);
}

.pdpv2-bread a {
    color: var(--pdp-ink-soft);
}

.pdpv2-bread .sep {
    margin: 0 6px;
    color: var(--pdp-gold);
}

.pdpv2-bread .current {
    color: var(--pdp-maroon);
    font-weight: 600;
}

.pdpv2-main {
    padding-top: 24px;
    padding-bottom: 8px;
}

.pdpv2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

.pdpv2-gallery {
    position: relative;
}

.pdpv2-gallery-main {
    background: #e9e2d4;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/4.3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pdpv2-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Wraps the main image for the click-to-lightbox (Fancybox) trigger. Must be
   block-level and fill the frame or the img's percentage width/height above
   can't resolve against it. Kept as a real CSS rule rather than an inline
   style — elevateZoom rewrites this element's inline style attribute on
   init/destroy and silently drops anything not its own, inline display:block
   included. */
.pdpv2-gallery-main .clickzoom {
    display: block;
    width: 100%;
    height: 100%;
}

.pdpv2-gallery-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 3;
    background: #000;
}

.pdpv2-sku-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(38, 26, 20, .82);
    color: #f4e6d8;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .02em;
    padding: 8px 14px 8px 10px;
    border-radius: 8px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdpv2-sku-tag .leaf {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--pdp-gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.pdpv2-fullscreen {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--pdp-ink);
    z-index: 2;
    cursor: pointer;
}

.pdpv2-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--pdp-ink);
    z-index: 2;
    cursor: pointer;
    border: none;
}

.pdpv2-nav-arrow.prev {
    left: 14px;
}

.pdpv2-nav-arrow.next {
    right: 14px;
}

.pdpv2-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.pdpv2-thumbs .thumb {
    width: 96px;
    height: 96px;
    border: 2px solid transparent;
    border-radius: 8px;
    background: #e9e2d4;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.pdpv2-thumbs .thumb.active {
    border-color: var(--pdp-maroon);
}

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

.pdpv2-thumbs .thumb.video::after {
    content: "▶";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .35);
    color: #fff;
    font-size: 16px;
}

.pdpv2-info .eyebrow {
    color: var(--pdp-gold);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
}

.pdpv2-info h1 {
    font-size: 30px;
    color: var(--pdp-maroon-dark);
    margin: 10px 0 6px;
    line-height: 1.22;
}

.pdpv2-info .code {
    font-size: 12.5px;
    color: var(--pdp-ink-soft);
}

.pdpv2-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
    font-size: 13px;
    color: var(--pdp-ink-soft);
}

.pdpv2-stars {
    color: var(--pdp-gold);
    letter-spacing: 1px;
}

.pdpv2-instock {
    color: #3f7d4f;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pdpv2-instock::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3f7d4f;
    display: inline-block;
}

.pdpv2-lede {
    font-size: 14.5px;
    color: var(--pdp-ink-soft);
    line-height: 1.6;
    margin: 14px 0 18px;
}

.pdpv2-price-block {
    margin: 8px 0 20px;
}

.pdpv2-price {
    font-family: 'Marcellus', serif;
    font-size: 32px;
    color: var(--pdp-maroon);
}

.pdpv2-price-note {
    font-size: 12px;
    color: var(--pdp-ink-soft);
    margin-top: 2px;
}

.pdpv2-option-block {
    margin-bottom: 20px;
}

.pdpv2-option-label {
    font-size: 12.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--pdp-ink-soft);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

/* ---- Finish / Design swatches (circular coin style) ---- */
.pdpv2-swatches {
    display: flex;
    gap: 18px;
}

.pdpv2-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: .15s;
}

.pdpv2-swatch-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2.5px solid transparent;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
    transition: .15s;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdpv2-swatch-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.pdpv2-swatch.active .pdpv2-swatch-circle {
    border-color: var(--pdp-maroon);
    box-shadow: 0 0 0 2px var(--pdp-maroon), 0 2px 8px rgba(0, 0, 0, .2);
}

.pdpv2-swatch span {
    font-size: 11px;
    color: var(--pdp-ink-soft);
    line-height: 1.3;
    text-align: center;
}

.pdpv2-swatch.active span {
    color: var(--pdp-maroon);
    font-weight: 700;
}

/* ---- Buy row ---- */
.pdpv2-buy-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pdpv2-qty {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--pdp-line);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.pdpv2-qty button {
    border: none;
    background: none;
    width: 38px;
    height: 46px;
    font-size: 20px;
    font-weight: 400;
    color: var(--pdp-ink);
    cursor: pointer;
    line-height: 1;
    font-family: 'Karla', sans-serif;
}

.pdpv2-qty button:hover {
    background: var(--pdp-cream-2);
}

.pdpv2-qty input {
    width: 38px;
    border: none;
    border-left: 1px solid var(--pdp-line);
    border-right: 1px solid var(--pdp-line);
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    background: #fff;
    height: 46px;
    outline: none;
    color: var(--pdp-ink);
    font-family: 'Karla', sans-serif;
}

.pdpv2-btn {
    border: none;
    border-radius: 8px;
    padding: 0 22px;
    height: 46px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: .06em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Karla', sans-serif;
}

.pdpv2-btn-primary {
    background: var(--pdp-maroon);
    color: #fff;
    flex: 1;
    justify-content: center;
    text-transform: uppercase;
}

.pdpv2-btn-primary:hover {
    background: var(--pdp-maroon-dark);
}

.pdpv2-btn-outline {
    background: #fff;
    border: 1.5px solid var(--pdp-maroon);
    color: var(--pdp-maroon);
    width: 46px;
    justify-content: center;
    padding: 0;
}

.pdpv2-btn-buynow {
    background: #fff;
    border: 1.5px solid var(--pdp-maroon);
    color: var(--pdp-maroon);
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.pdpv2-btn-buynow:hover {
    background: var(--pdp-cream-2);
}

.pdpv2-secondary-row {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.pdpv2-btn-wa {
    background: #fff;
    border: 1.5px solid #3f7d4f;
    color: #3f7d4f;
    flex: 1;
    justify-content: center;
    font-size: 13px;
    letter-spacing: .01em;
}

.pdpv2-btn-wa:hover {
    background: #f0faf3;
}

.pdpv2-btn-bulk {
    background: #fff;
    border: 1.5px solid var(--pdp-line);
    color: var(--pdp-ink-soft);
    flex: 1;
    justify-content: center;
    font-size: 13px;
    letter-spacing: .01em;
}

.pdpv2-btn-bulk:hover {
    border-color: var(--pdp-gold);
    color: var(--pdp-gold);
}

.pdpv2-trust-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 26px;
    padding: 18px 22px;
    background: var(--pdp-cream-2);
    border-radius: var(--pdp-radius);
    flex-wrap: nowrap;
}

.pdpv2-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--pdp-ink-soft);
    white-space: nowrap;
}

.pdpv2-trust-item .ic {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pdp-gold);
    flex-shrink: 0;
}

.pdpv2-trust-item .ic svg {
    width: 22px;
    height: 22px;
}

.pdpv2-trust-item strong {
    color: var(--pdp-ink);
}

.pdpv2-delivery-est {
    padding-left: 20px;
    border-left: 1px solid var(--pdp-line);
    font-size: 12px;
    color: var(--pdp-ink-soft);
    line-height: 1.6;
    white-space: nowrap;
    flex-shrink: 0;
}

.pdpv2-delivery-est strong {
    display: block;
    color: var(--pdp-ink);
    font-size: 12.5px;
    margin-bottom: 1px;
}

.pdpv2-delivery-est .pincode {
    text-decoration: underline;
    color: var(--pdp-ink-soft);
}

.pdpv2-delivery-est .change-link {
    color: var(--pdp-gold);
    font-weight: 600;
    text-decoration: underline;
    margin-left: 2px;
}

.pdpv2-tabs-section {
    padding-top: 48px;
    padding-bottom: 48px;
}

.pdpv2-tabs-nav {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--pdp-line);
    margin-bottom: 28px;
    overflow-x: auto;
}

.pdpv2-tabs-nav button {
    background: none;
    border: none;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--pdp-ink-soft);
    text-transform: uppercase;
    letter-spacing: .04em;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    border-bottom: 2px solid transparent;
}

.pdpv2-tabs-nav button.active {
    color: var(--pdp-maroon);
    border-color: var(--pdp-maroon);
}

.pdpv2-tab-panel {
    display: none;
}

.pdpv2-tab-panel.active {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.pdpv2-tab-panel p {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--pdp-ink-soft);
}

.pdpv2-tab-panel h3 {
    font-size: 16px;
    color: var(--pdp-maroon-dark);
    margin-bottom: 10px;
}

.pdpv2-why-card {
    background: var(--pdp-cream-2);
    border-radius: var(--pdp-radius);
    padding: 26px 28px;
    height: fit-content;
    position: relative;
    overflow: hidden;
}

.pdpv2-why-card::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    width: 280px;
    height: 280px;
    background: url('../images/om-mandala.svg') center/contain no-repeat;
    opacity: .16;
    pointer-events: none;
}

.pdpv2-why-card>* {
    position: relative;
    z-index: 1;
}

.pdpv2-why-card h3 {
    font-family: 'Karla', sans-serif;
    font-weight: 800;
    font-size: 14.5px;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--pdp-maroon-dark);
    margin-bottom: 16px;
}

.pdpv2-why-card ul {
    margin: 0;
    padding-left: 18px;
    font-size: 13.5px;
    color: var(--pdp-ink-soft);
    line-height: 1.9;
}

.pdpv2-spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}

.pdpv2-spec-table td {
    padding: 11px 0;
    border-bottom: 1px solid var(--pdp-line);
}

.pdpv2-spec-table td:first-child {
    color: var(--pdp-ink-soft);
    width: 42%;
    font-weight: 600;
}

.pdpv2-includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: var(--pdp-ink-soft);
}

.pdpv2-includes-list li {
    padding: 9px 0;
    border-bottom: 1px solid var(--pdp-line);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pdpv2-includes-list li::before {
    content: "✓";
    color: var(--pdp-gold);
    font-weight: 700;
}

.pdpv2-artisan-banner {
    background: var(--pdp-maroon-dark);
    color: #f4e6d8;
    border-radius: var(--pdp-radius);
    padding: 36px 40px;
    margin: 8px 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pdpv2-artisan-banner h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
}

.pdpv2-artisan-banner p {
    font-size: 13.5px;
    color: #e6d3c4;
    max-width: 52ch;
    line-height: 1.7;
    margin: 0;
}

.pdpv2-artisan-banner .om {
    font-family: 'Marcellus', serif;
    font-size: 52px;
    color: var(--pdp-gold-soft);
}

.pdpv2-similar {
    padding: 8px 0 60px;
}

.pdpv2-similar h2 {
    font-size: 24px;
    color: var(--pdp-maroon-dark);
    margin-bottom: 4px;
}

.pdpv2-similar .sub {
    color: var(--pdp-ink-soft);
    font-size: 13.5px;
    margin-bottom: 22px;
}

.pdpv2-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--pdp-gold);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
}

.pdpv2-p-body {
    padding: 12px 14px 14px;
}

.pdpv2-p-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--pdp-ink);
    margin-bottom: 6px;
    line-height: 1.35;
}

.pdpv2-p-price {
    font-size: 13.5px;
    color: var(--pdp-maroon);
    font-weight: 700;
}

.pdpv2-p-price .old {
    font-size: 12px;
    color: var(--pdp-ink-soft);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 6px;
}

.pdpv2-p-add {
    margin-top: 10px;
    width: 100%;
    background: var(--pdp-cream-2);
    border: none;
    border-radius: 6px;
    padding: 9px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--pdp-maroon);
    cursor: pointer;
}

.pdpv2-p-add:hover {
    background: var(--pdp-maroon);
    color: #fff;
}

/* ---- Size selector buttons ---- */
.pdpv2-size-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pdpv2-size-btn {
    border: 1.5px solid var(--pdp-line);
    background: #fff;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--pdp-ink-soft);
    cursor: pointer;
    transition: .15s;
    font-family: 'Karla', sans-serif;
}

.pdpv2-size-btn:hover {
    border-color: var(--pdp-maroon);
    color: var(--pdp-maroon);
}

.pdpv2-size-btn.active {
    background: var(--pdp-maroon);
    border-color: var(--pdp-maroon);
    color: #fff;
}

.pdpv2-size-link {
    font-size: 12px;
    color: var(--pdp-gold);
    text-decoration: underline;
    cursor: pointer;
    align-self: center;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ---- Feature icons strip ---- */
.pdpv2-feat-strip {
    display: flex;
    gap: 22px;
    margin: 18px 0;
    flex-wrap: wrap;
}

.pdpv2-feat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--pdp-ink-soft);
    text-align: center;
    width: 76px;
    line-height: 1.35;
}

.pdpv2-feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(160deg, #fff, var(--pdp-cream-2));
    border: 1.5px solid var(--pdp-gold-soft);
    box-shadow: 0 0 0 3px var(--pdp-cream-2), 0 2px 6px rgba(184, 134, 47, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--pdp-gold);
}

/* ---- Reviews section ---- */
.pdpv2-reviews-ymal-row {
    display: grid;
    grid-template-columns: 0.85fr 0.85fr 4fr;
    gap: 32px;
    align-items: start;
    padding: 40px 0 60px;
}

/* Without this, the "You May Also Like" column's own min-content width — the
   full unwrapped run of every card in the horizontally-scrolling product
   strip, easily 1500px+ — sets the min size grid uses for its 2.3fr track,
   which then grows past its intended share and crushes the other two
   columns down to a sliver. min-width: 0 on every grid item lets each track
   actually respect the 1.05 / 1.05 / 2.3 proportions instead. */
.pdpv2-reviews-ymal-row>* {
    min-width: 0;
}

.pdpv2-rating-summary {
    text-align: left;
}

.pdpv2-rating-summary .kicker {
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--pdp-maroon-dark);
    margin-bottom: 14px;
    white-space: nowrap;
}

.pdpv2-rating-big {
    font-family: 'Marcellus', serif;
    font-size: 46px;
    color: var(--pdp-maroon-dark);
    line-height: 1;
}

.pdpv2-rating-stars-big {
    color: var(--pdp-gold);
    font-size: 16px;
    margin: 6px 0;
}

.pdpv2-rating-count {
    font-size: 12px;
    color: var(--pdp-ink-soft);
}

.pdpv2-rating-bars {
    margin-top: 16px;
}

.pdpv2-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 11.5px;
    color: var(--pdp-ink-soft);
}

.pdpv2-bar-track {
    flex: 1;
    height: 5px;
    background: #e6d8c2;
    border-radius: 3px;
    overflow: hidden;
}

.pdpv2-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--pdp-gold);
}

.pdpv2-bar-count {
    min-width: 22px;
    text-align: right;
}

.pdpv2-write-review-btn {
    margin-top: 18px;
    border: none;
    background: var(--pdp-maroon);
    color: #fff;
    white-space: nowrap;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pdpv2-write-review-btn:hover {
    background: var(--pdp-maroon-dark);
}

/* ---- Review carousel (single card + arrows) ---- */
.pdpv2-review-carousel {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
}

.pdpv2-rc-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--pdp-line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--pdp-ink-soft);
    cursor: pointer;
    flex-shrink: 0;
    transition: .15s;
}

.pdpv2-rc-arrow:hover {
    border-color: var(--pdp-maroon);
    color: var(--pdp-maroon);
}

.pdpv2-review-cards {
    flex: 1;
    min-width: 0;
    position: relative;
    min-height: 150px;
}

.pdpv2-review-card {
    display: none;
}

.pdpv2-review-card.active {
    display: block;
}

.pdpv2-review-card .stars {
    color: var(--pdp-gold);
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.pdpv2-review-card h4 {
    font-size: 14px;
    color: var(--pdp-ink);
    margin-bottom: 8px;
    font-weight: 700;
}

.pdpv2-review-text {
    font-size: 13px;
    color: var(--pdp-ink-soft);
    line-height: 1.6;
    margin-bottom: 12px;
}

.pdpv2-review-author {
    font-size: 12.5px;
    color: var(--pdp-ink-soft);
}

/* ---- You may also like (carousel) ---- */
.pdpv2-ymal-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.pdpv2-ymal-header h2 {
    font-size: 16px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--pdp-maroon-dark);
    font-weight: 700;
}

.pdpv2-ymal-viewall {
    font-size: 13px;
    color: var(--pdp-gold);
    font-weight: 600;
    text-decoration: none;
}

.pdpv2-ymal-carousel {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pdpv2-product-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    min-width: 0;
    scrollbar-width: none;
}

.pdpv2-product-grid::-webkit-scrollbar {
    display: none;
}

.pdpv2-p-card {
    background: #fff;
    border: 1.5px solid var(--pdp-line);
    border-radius: var(--pdp-radius);
    overflow: hidden;
    transition: .15s;
    flex: 0 0 calc(25% - 12px);
    min-width: 150px;
}

.pdpv2-p-card:hover {
    border-color: var(--pdp-gold-soft);
    box-shadow: 0 6px 18px rgba(76, 15, 24, .08);
}

.pdpv2-p-card .media {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    background: var(--pdp-cream-2);
    display: block;
}

.pdpv2-p-card .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdpv2-p-card:hover .media img {
    transform: scale(1.04);
}

.pdpv2-p-card .media img {
    transition: .25s;
}

/* ---- Artisan banner with image (paired with size guide) ---- */
.pdpv2-artisan-sizerow {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 24px;
    margin: 8px 0 48px;
    align-items: stretch;
}

.pdpv2-artisan-full {
    position: relative;
    border-radius: var(--pdp-radius);
    overflow: hidden;
    min-height: 230px;
}

.pdpv2-artisan-full img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.pdpv2-artisan-full::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(100deg, var(--pdp-maroon-dark) 8%, rgba(76, 15, 24, .94) 42%, rgba(76, 15, 24, .25) 78%, rgba(76, 15, 24, 0) 100%);
}

.pdpv2-artisan-text {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 78%;
    color: #f4e6d8;
}

.pdpv2-artisan-text h3 {
    color: #fff;
    font-size: 19px;
    line-height: 1.3;
    margin-bottom: 10px;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.pdpv2-artisan-text p {
    font-size: 12.5px;
    color: #e6d3c4;
    line-height: 1.65;
    margin: 0 0 18px;
}

.pdpv2-artisan-text .learn-btn {
    display: inline-block;
    border: 1.5px solid var(--pdp-gold-soft);
    color: var(--pdp-gold-soft);
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
}

/* ---- Size guide table ---- */
.pdpv2-size-guide {
    background: var(--pdp-cream-2);
    border-radius: var(--pdp-radius);
    padding: 26px 28px;
}

.pdpv2-size-guide h3 {
    font-size: 15px;
    color: var(--pdp-maroon-dark);
    margin-bottom: 16px;
}

.pdpv2-sg-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.pdpv2-sg-table th {
    text-align: left;
    padding: 8px 10px;
    color: var(--pdp-ink-soft);
    font-weight: 600;
    border-bottom: 2px solid var(--pdp-line);
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.pdpv2-sg-table td {
    padding: 10px 10px;
    border-bottom: 1px solid var(--pdp-line);
    color: var(--pdp-ink);
}

.pdpv2-sg-table tr:last-child td {
    border-bottom: none;
}

.pdpv2-sg-table tr.active-row td {
    background: #fff;
    font-weight: 700;
    color: var(--pdp-maroon);
}

.pdpv2-sg-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3f7d4f;
    font-size: 13px;
    margin-top: 14px;
    text-decoration: none;
    font-weight: 600;
}

@media(max-width:900px) {

    .pdpv2-grid,
    .pdpv2-tab-panel.active,
    .pdpv2-reviews-ymal-row,
    .pdpv2-artisan-sizerow {
        grid-template-columns: 1fr;
    }

    .pdpv2-artisan-full {
        min-height: 220px;
    }

    .pdpv2-artisan-text {
        max-width: 100%;
    }

    .pdpv2-p-card {
        flex: 0 0 calc(50% - 8px);
    }

    .pdpv2-wrap {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

/* ===== MOBILE RESPONSIVE (pdpv2) ===== */
@media(max-width:767px) {
    .pdpv2-wrap {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .pdpv2-grid {
        gap: 28px;
    }

    .pdpv2-grid>*,
    .pdpv2-tab-panel.active>*,
    .pdpv2-reviews-ymal-row>* {
        min-width: 0;
    }

    .pdpv2-tabs-nav {
        justify-content: flex-start;
        gap: 2px;
    }

    .pdpv2-tabs-nav button {
        padding: 10px 12px;
        font-size: 12px;
        flex-shrink: 0;
    }

    .pdpv2-tabs-nav button:first-child {
        padding-left: 2px;
    }

    .pdpv2-spec-table td,
    .pdpv2-includes-list li,
    .pdpv2-p-name,
    .pdpv2-review-text,
    .pdpv2-lede {
        word-break: break-word;
    }

    .pdpv2-swatch span {
        width: 56px;
    }

    .pdpv2-sg-wa {
        white-space: normal;
        word-break: break-word;
    }

    .pdpv2-info h1 {
        font-size: 24px;
    }

    .pdpv2-price {
        font-size: 28px;
    }

    .pdpv2-gallery-main {
        aspect-ratio: 4/4.5;
    }

    .pdpv2-thumbs {
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: none;
    }

    .pdpv2-thumbs::-webkit-scrollbar {
        display: none;
    }

    .pdpv2-thumbs .thumb {
        width: 72px;
        height: 72px;
    }

    .pdpv2-sku-tag {
        font-size: 10.5px;
        padding: 6px 10px 6px 8px;
        top: 10px;
        left: 10px;
    }

    .pdpv2-sku-tag .leaf {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }

    .pdpv2-fullscreen {
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .pdpv2-nav-arrow {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .pdpv2-nav-arrow.prev {
        left: 10px;
    }

    .pdpv2-nav-arrow.next {
        right: 10px;
    }

    .pdpv2-swatches {
        gap: 14px;
    }

    .pdpv2-swatch-circle {
        width: 52px;
        height: 52px;
    }

    .pdpv2-swatch span {
        font-size: 10px;
    }

    .pdpv2-buy-row {
        gap: 8px;
    }

    .pdpv2-qty button {
        width: 32px;
        height: 44px;
    }

    .pdpv2-qty input {
        width: 34px;
        height: 44px;
    }

    .pdpv2-btn {
        padding: 0 14px;
        height: 44px;
        font-size: 12.5px;
    }

    .pdpv2-secondary-row {
        flex-direction: column;
        gap: 8px;
    }

    .pdpv2-btn-wa,
    .pdpv2-btn-bulk {
        width: 100%;
        flex: 0 1 auto;
        min-width: 0;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
        padding: 0 10px;
    }

    .pdpv2-btn-wa svg,
    .pdpv2-btn-bulk svg {
        flex-shrink: 0;
    }

    .pdpv2-trust-strip {
        flex-wrap: wrap;
        gap: 12px;
        padding: 16px;
    }

    .pdpv2-trust-item {
        white-space: normal;
        flex: 1 1 calc(50% - 12px);
        min-width: 140px;
        font-size: 11.5px;
    }

    .pdpv2-delivery-est {
        white-space: normal;
        flex-shrink: 1;
        flex-basis: 100%;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--pdp-line);
        padding-top: 12px;
        margin-top: 4px;
    }

    .pdpv2-tabs-section {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .pdpv2-tab-panel.active {
        gap: 24px;
    }

    .pdpv2-why-card {
        padding: 20px 18px;
    }

    .pdpv2-size-guide {
        padding: 20px 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pdpv2-sg-table {
        white-space: nowrap;
        min-width: 440px;
    }

    .pdpv2-artisan-banner {
        padding: 28px 20px;
    }

    .pdpv2-artisan-banner .om {
        font-size: 40px;
    }

    .pdpv2-artisan-full {
        min-height: auto;
    }

    .pdpv2-artisan-text {
        padding: 24px 20px;
        max-width: 100%;
        height: auto;
        min-height: 220px;
    }

    .pdpv2-artisan-text h3 {
        font-size: 16px;
    }

    .pdpv2-reviews-ymal-row {
        padding: 24px 0 36px;
        gap: 28px;
    }

    .pdpv2-rating-summary .kicker {
        white-space: normal;
    }

    .pdpv2-spec-table {
        font-size: 12.5px;
    }

    .pdpv2-spec-table td {
        padding: 9px 0;
    }

    .pdpv2-includes-list {
        font-size: 13px;
    }

    .pdpv2-feat-strip {
        gap: 14px;
    }

    .pdpv2-feat-item {
        width: 64px;
        font-size: 10.5px;
    }

    .pdpv2-feat-icon {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }

    .pdpv2-rating {
        flex-wrap: wrap;
        gap: 6px;
    }

    .pdpv2-bread {
        font-size: 11.5px;
    }

    .pdpv2-option-label {
        font-size: 11.5px;
    }

    .pdpv2-size-btn {
        padding: 7px 12px;
        font-size: 12px;
    }

    .pdpv2-price-note {
        font-size: 11px;
    }

    .pdpv2-lede {
        font-size: 13.5px;
    }

    .pdpv2-tab-panel p {
        font-size: 13.5px;
    }

    .pdpv2-tab-panel h3 {
        font-size: 15px;
    }

    .pdpv2-why-card h3 {
        font-size: 13.5px;
    }

    .pdpv2-why-card ul {
        font-size: 13px;
    }

    .pdpv2-review-cards {
        min-height: 170px;
    }

    .pdpv2-review-text {
        font-size: 12.5px;
    }

    .pdpv2-rc-arrow {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    .pdpv2-ymal-viewall {
        font-size: 12px;
    }

    .pdpv2-p-name {
        font-size: 12px;
    }

    .pdpv2-p-price {
        font-size: 12.5px;
    }

    .pdpv2-sg-wa {
        font-size: 12px;
    }

    .pdpv2-sg-table th {
        font-size: 11px;
        padding: 7px 8px;
    }

    .pdpv2-sg-table td {
        font-size: 12px;
        padding: 9px 8px;
    }

    .pdpv2-write-review-btn {
        padding: 9px 14px;
        font-size: 11.5px;
    }

    .pdpv2-rating-big {
        font-size: 38px;
    }

    .pdpv2-rating-stars-big {
        font-size: 14px;
    }

    .pdpv2-bar-row {
        font-size: 11px;
    }

    .pdpv2-ymal-header {
        margin-bottom: 14px;
    }

    .pdpv2-product-grid {
        gap: 12px;
    }

    .pdpv2-p-card {
        flex: 0 0 calc(50% - 6px);
        min-width: 0;
    }

    .pdpv2-p-body {
        padding: 10px 12px 12px;
    }

    .pdpv2-p-add {
        padding: 8px;
        font-size: 12px;
    }

    .pdpv2-why-card::after {
        width: 200px;
        height: 200px;
        right: -100px;
    }
}

@media(max-width:480px) {
    .pdpv2-buy-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .pdpv2-qty {
        width: 100%;
        justify-content: space-between;
    }

    .pdpv2-qty button {
        width: 48px;
        flex: 0 0 48px;
        height: 48px;
        font-size: 22px;
    }

    .pdpv2-qty input {
        flex: 1;
        width: auto;
        height: 48px;
        font-size: 16px;
    }

    .pdpv2-btn-primary {
        flex-basis: 100%;
        height: 48px;
    }

    .pdpv2-trust-item {
        flex: 1 1 100%;
    }

    .pdpv2-swatches {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .pdpv2-gallery-main {
        aspect-ratio: 4/4.1;
    }

    .pdpv2-ymal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

@media(max-width:380px) {
    .pdpv2-swatches {
        gap: 10px;
        justify-content: space-between;
    }

    .pdpv2-swatch-circle {
        width: 46px;
        height: 46px;
    }

    .pdpv2-swatch span {
        font-size: 9.5px;
        width: 52px;
    }

    .pdpv2-trust-item {
        flex: 1 1 100%;
    }
}

/* ---- Additions: the draft never actually rendered a struck-through MRP in the
   main price block (its sample product had no discount), and the "You may also
   like" wishlist button reuses .pdpv2-p-add so it needs its own active state. ---- */
.pdpv2-price .old {
    font-size: 16px;
    color: var(--pdp-ink-soft);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 8px;
}

.pdpv2-p-add.wishlist-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #fff;
    border: 1.5px solid var(--pdp-line);
    color: var(--pdp-ink-soft);
}

.pdpv2-p-add.wishlist-btn:hover {
    background: var(--pdp-cream-2);
    color: var(--pdp-maroon);
}

.pdpv2-p-add.wishlist-btn.is-active {
    border-color: var(--pdp-maroon);
    color: var(--pdp-maroon);
}
