/* =========================================================================
   Satva Gold — Product Page V2 ("Editorial Luxury" redesign)
   Loaded only when ?v=2 is on the URL.
   pv2-* prefix throughout so legacy CSS cannot interfere.

   Design language:
     - Magazine-style asymmetric image grid
     - Bento-style info column with discrete tactile cards
     - Refined serif accents for headlines
     - Generous whitespace, sparing gold
     - Reveal-on-scroll micro-interactions
   ========================================================================= */

:root {
    --pv2-gold: #b58b44;
    --pv2-gold-soft: #d4a84b;
    --pv2-gold-deep: #8a6932;
    --pv2-gold-tint: #faf6ed;
    --pv2-cream: #fcfaf5;
    --pv2-charcoal: #1a1a1a;
    --pv2-ink: #2b2620;
    --pv2-text: #4a4540;
    --pv2-muted: #8c857c;
    --pv2-border: #ece4d2;
    --pv2-divider: #f1ebde;
    --pv2-success: #166f3a;
    --pv2-shadow-soft: 0 1px 6px rgba(40, 30, 10, 0.04);
    --pv2-shadow: 0 8px 28px rgba(40, 30, 10, 0.08);
    --pv2-shadow-strong: 0 18px 48px rgba(40, 30, 10, 0.12);
    --pv2-radius: 18px;
    --pv2-radius-sm: 10px;
    --pv2-radius-pill: 999px;
}

.pv2 *,
.pv2 *::before,
.pv2 *::after {
    box-sizing: border-box;
}

.pv2 {
    background: #fcfbf7;
    padding: 0 0 80px;
    color: var(--pv2-text);
    font-family: 'Mulish', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-feature-settings: "ss01", "kern";
}

.pv2-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 600px) {
    .pv2-container {
        padding: 0 16px;
    }
}

/* =========================================================================
   Breadcrumb
   ========================================================================= */
.pv2-crumb {
    padding: 24px 0 18px;
    font-size: 12px;
    color: var(--pv2-muted);
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.pv2-crumb a {
    color: var(--pv2-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.pv2-crumb a:hover {
    color: var(--pv2-gold);
    border-bottom-color: var(--pv2-gold);
}

.pv2-crumb-sep {
    margin: 0 10px;
    color: var(--pv2-border);
}

.pv2-crumb-current {
    color: var(--pv2-charcoal);
    font-weight: 600;
}

/* =========================================================================
   STAGE — gallery + info hero
   ========================================================================= */
.pv2-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, 1fr);
    gap: 40px;
    align-items: start;
    padding: 18px 0 60px;
}

/* Sticky gallery: left column stays in view while right scrolls.
   Releases when .pv2-stage finishes (right column complete) — page then
   scrolls naturally into "Crafted with Excellence" band. */
.pv2-stage>.pv2-gallery-wrap {
    position: sticky;
    top: 90px;
    align-self: start;
    z-index: 1;
}

@media (max-width: 1100px) {
    .pv2-stage {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pv2-stage>.pv2-gallery-wrap {
        position: static;
    }
}

/* Vertical decorative rail (desktop only) */
.pv2-rail {
    position: absolute;
    left: -60px;
    top: 60px;
    bottom: 60px;
    width: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    z-index: 1;
}

.pv2-rail-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--pv2-muted);
    text-transform: uppercase;
    margin: 16px 0;
    flex: 1;
    display: flex;
    align-items: center;
}

.pv2-rail-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pv2-gold);
    box-shadow: 0 0 0 4px rgba(181, 139, 68, 0.18);
}

@media (max-width: 1280px) {
    .pv2-rail {
        display: none;
    }
}

/* =========================================================================
   GALLERY — single hero card + horizontal thumbnail strip
   ========================================================================= */
.pv2-gallery-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

/* ---- Hero card ---- */
.pv2-hero {
    position: relative;
    background: #f4f4f0;
    border: 1px solid var(--pv2-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--pv2-shadow-soft);
}

.pv2-hero-stage {
    position: relative;
    aspect-ratio: 1 / 1;
}

/* Bootstrap tab-pane: ensure active is visible, others hidden cleanly */
.pv2-hero-stage .tab-pane {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
}

.pv2-hero-stage .tab-pane.active.show,
.pv2-hero-stage .tab-pane.active {
    opacity: 1;
    visibility: visible;
}

.pv2-hero-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
    text-decoration: none;
    padding: 36px;
}

.pv2-hero-cell img,
.pv2-hero-cell video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.pv2-hero-cell:hover img {
    transform: scale(1.04);
}

.pv2-hero-cell--vid {
    cursor: pointer;
    padding: 0;
    background: #000;
}

.pv2-hero-cell--vid video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- Floating chips on hero ---- */
.pv2-hero-chip {
    position: absolute;
    bottom: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    background: #fff;
    border: 1px solid var(--pv2-border);
    border-radius: var(--pv2-radius-pill);
    font-size: 12px;
    font-weight: 700;
    color: var(--pv2-ink);
    letter-spacing: 0.3px;
    box-shadow: 0 4px 14px rgba(40, 30, 10, 0.08);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.pv2-hero-chip:hover {
    transform: translateY(-1px);
    border-color: var(--pv2-gold);
    box-shadow: 0 6px 18px rgba(181, 139, 68, 0.18);
}

.pv2-hero-chip svg {
    width: 14px;
    height: 14px;
    color: var(--pv2-gold);
    flex-shrink: 0;
}

.pv2-hero-chip--left {
    left: 18px;
}

.pv2-hero-chip--right {
    right: 18px;
    border: none;
    background: var(--pv2-charcoal);
    color: #fff;
}

.pv2-hero-chip--right svg {
    color: var(--pv2-gold-soft);
}

.pv2-hero-chip--right:hover {
    background: #000;
    color: #fff;
}

/* ---- Thumbnail strip ---- */
.pv2-thumbs {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pv2-thumbs-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    padding: 4px 0;
}

.pv2-thumbs-track::-webkit-scrollbar {
    display: none;
}

.pv2-thumb {
    flex: 0 0 auto;
    width: 88px;
    height: 88px;
    border-radius: 14px;
    overflow: hidden;
    background: #f4f4f0;
    border: 2px solid var(--pv2-border);
    transition: border-color 0.18s ease, transform 0.18s ease;
    cursor: pointer;
    position: relative;
}

.pv2-thumb:hover {
    border-color: var(--pv2-gold);
}

.pv2-thumb:has(.nav-link.active),
.pv2-thumb.is-active {
    border-color: var(--pv2-charcoal);
    transform: translateY(-1px);
}

.pv2-thumb a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.pv2-thumb img,
.pv2-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pv2-thumb--vid::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.32);
    pointer-events: none;
}

.pv2-thumb--vid .fa-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--pv2-charcoal);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    z-index: 2;
}

.pv2-thumbs-nav {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--pv2-border);
    color: var(--pv2-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
    box-shadow: 0 2px 8px rgba(40, 30, 10, 0.06);
    padding: 0;
}

.pv2-thumbs-nav:hover {
    background: var(--pv2-charcoal);
    border-color: var(--pv2-charcoal);
    color: #fff;
}

.pv2-thumbs-nav svg {
    width: 16px;
    height: 16px;
}

.pv2-thumbs-nav[disabled] {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Hide hidden thumb-menu wrapper used by legacy code (we now use the visible track) */
.pv2-thumbs-hidden {
    display: none !important;
}

@media (max-width: 600px) {
    .pv2-hero {
        border-radius: 18px;
    }

    .pv2-hero-cell {
        padding: 22px;
    }

    .pv2-hero-chip {
        font-size: 11px;
        padding: 7px 11px;
        bottom: 12px;
    }

    .pv2-hero-chip--left {
        left: 12px;
    }

    .pv2-hero-chip--right {
        right: 12px;
    }

    .pv2-thumb {
        width: 68px;
        height: 68px;
        border-radius: 12px;
    }

    .pv2-thumbs-nav {
        display: none;
    }
}

/* =========================================================================
   INFO COLUMN — sticky bento layout
   ========================================================================= */
.pv2-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 0;
    min-width: 0;
    /* allow grid child to shrink properly */
    align-self: stretch;
    /* match height to gallery on desktop */
}

/* ---- Title block ---- */
.pv2-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: var(--pv2-gold-deep);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 22px;
}

.pv2-eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 16px;
    height: 1px;
    background: var(--pv2-gold);
}

.pv2-title {
    padding: 4px 0 4px;
}

.pv2-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--pv2-ink);
    line-height: 1.2;
    letter-spacing: -0.4px;
    margin: 0 0 12px;
}

@media (max-width: 600px) {
    .pv2-name {
        font-size: 22px;
    }
}

.pv2-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--pv2-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pv2-sku {
    font-weight: 600;
    color: var(--pv2-text);
}

.pv2-meta-dot {
    color: var(--pv2-border);
}

.pv2-meta-tag {
    color: var(--pv2-success);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pv2-meta-tag::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--pv2-success);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(22, 111, 58, 0.16);
}

/* ---- Bento stats (Weight | Purity | Colour) ---- */
.pv2-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border: 1px solid var(--pv2-border);
    border-radius: var(--pv2-radius);
    overflow: hidden;
    box-shadow: var(--pv2-shadow-soft);
}

.pv2-bento-cell {
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    border-right: 1px solid var(--pv2-divider);
    transition: background 0.25s ease;
}

.pv2-bento-cell:last-child {
    border-right: none;
}

.pv2-bento-cell:hover {
    background: var(--pv2-cream);
}

.pv2-bento-key {
    font-size: 9px;
    font-weight: 700;
    color: var(--pv2-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pv2-bento-val {
    font-size: 18px;
    font-weight: 700;
    color: var(--pv2-ink);
    line-height: 1.2;
    letter-spacing: -0.2px;
}

.pv2-bento-val em {
    font-size: 13px;
    color: var(--pv2-muted);
    font-style: normal;
    margin-left: 2px;
    font-family: 'Mulish', sans-serif;
    font-weight: 600;
}

/* ---- Price block ---- */
.pv2-price {
    background: linear-gradient(180deg, var(--pv2-cream) 0%, #fff 100%);
    border: 1px solid var(--pv2-border);
    border-radius: var(--pv2-radius);
    padding: 22px 24px;
    position: relative;
    overflow: hidden;
}

.pv2-price::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--pv2-gold) 0%, var(--pv2-gold-soft) 100%);
}

.pv2-price-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: var(--pv2-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.pv2-price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: var(--pv2-ink);
}

.pv2-price-symbol {
    font-size: 20px;
    color: var(--pv2-gold-deep);
    font-weight: 700;
}

.pv2-price-figure {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1;
}

@media (max-width: 600px) {
    .pv2-price-figure {
        font-size: 26px;
    }
}

.pv2-price-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.pv2-price-orig {
    font-size: 13px;
    color: var(--pv2-muted);
    text-decoration: line-through;
}

.pv2-price-savings {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(22, 111, 58, 0.10);
    color: var(--pv2-success);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--pv2-radius-pill);
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.pv2-price-note {
    display: block;
    font-size: 11px;
    color: var(--pv2-muted);
    font-style: italic;
    margin-top: 8px;
}

/* ---- Form: variants + actions ---- */
.pv2-form {
    margin: 0;
}

.pv2-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.pv2-field {
    display: block;
    padding: 12px 14px 10px;
    background: #fff;
    border: 1px solid var(--pv2-border);
    border-radius: var(--pv2-radius-sm);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    margin: 0;
    position: relative;
}

.pv2-field:focus-within,
.pv2-field:hover {
    border-color: var(--pv2-gold);
    box-shadow: 0 4px 12px rgba(181, 139, 68, 0.10);
}

/* Custom chevron arrow (visual only — pointer-events: none) */
.pv2-field::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    margin-top: 4px;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid var(--pv2-gold);
    border-bottom: 1.5px solid var(--pv2-gold);
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
    transition: transform 0.2s ease;
}

.pv2-field-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    color: var(--pv2-muted);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 4px;
}

/* Override legacy custom.css line 545:
     .select2-container--default .select2-selection--single { border: 1px solid #b58b44 !important; }
   By scoping under .pv2-field we win on specificity.                   */
.pv2 .pv2-field .select2-container {
    width: 100% !important;
    display: block !important;
}

.pv2 .pv2-field .select2-container--default .select2-selection--single,
.pv2 .pv2-field span.select2.select2-container.select2-container--default .select2-selection--single {
    height: 26px !important;
    border: none !important;
    background: transparent !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    outline: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/* Override legacy color: #afafaf on select2 rendered text */
.pv2 .pv2-field .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 26px !important;
    color: var(--pv2-ink) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    padding: 0 24px 0 0 !important;
    background: transparent !important;
    text-align: left !important;
}

/* Hide select2's default arrow — we use a custom ::after chevron on .pv2-field */
.pv2 .pv2-field .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none !important;
}

.pv2 .pv2-field .select2-container--open .select2-selection--single {
    box-shadow: none !important;
}

/* Highlight + flip chevron when dropdown is open (modern browsers) */
.pv2-field:has(.select2-container--open) {
    border-color: var(--pv2-gold);
    box-shadow: 0 4px 14px rgba(181, 139, 68, 0.14);
}

.pv2-field:has(.select2-container--open)::after {
    transform: translateY(-25%) rotate(225deg);
    border-color: var(--pv2-gold-deep);
}

/* Native select fallback (before select2 init) */
.pv2-field select.form__input {
    width: 100% !important;
    height: 24px !important;
    border: none !important;
    background: transparent !important;
    padding: 0 22px 0 0 !important;
    color: var(--pv2-ink) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    line-height: 24px;
}

/* Select2 dropdown panel (the popup list) — refined to feel attached to the field */
body .select2-container--open .select2-dropdown {
    border: 1px solid var(--pv2-border) !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-shadow: 0 12px 32px rgba(40, 30, 10, 0.12) !important;
    overflow: hidden;
    margin-top: 6px;
    padding: 6px 0;
}

body .select2-container--open .select2-dropdown--above {
    margin-top: 0;
    margin-bottom: 6px;
}

body .select2-results>.select2-results__options {
    max-height: 260px;
    padding: 0 6px;
}

body .select2-results__option {
    padding: 11px 14px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: var(--pv2-ink) !important;
    letter-spacing: 0.2px;
    border-radius: 8px;
    margin: 2px 0;
    transition: background-color 0.15s ease, color 0.15s ease;
    cursor: pointer;
}

body .select2-container--default .select2-results__option--highlighted[aria-selected],
body .select2-container--default .select2-results__option--highlighted {
    background-color: var(--pv2-gold-tint) !important;
    color: var(--pv2-gold-deep) !important;
}

body .select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: #fff !important;
    color: var(--pv2-gold-deep) !important;
    font-weight: 700 !important;
    position: relative;
}

body .select2-container--default .select2-results__option[aria-selected="true"]::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 6px;
    height: 10px;
    border: solid var(--pv2-gold);
    border-width: 0 2px 2px 0;
    transform: translateY(-65%) rotate(45deg);
}

body .select2-container--default .select2-results__option[aria-selected="true"].select2-results__option--highlighted {
    background-color: var(--pv2-gold-tint) !important;
}

/* ---- CTA buttons ---- */
.pv2-cta {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

/* Primary CTA — high specificity (.pv2 .pv2-cta button.pv2-cta-primary)
   beats legacy `.btn-style-2:hover { background-color: #2e2e2e }`       */
.pv2 .pv2-cta button.pv2-cta-primary,
.pv2 .pv2-cta a.pv2-cta-primary {
    flex: 1 1 auto;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 16px 24px !important;
    background: linear-gradient(135deg, var(--pv2-gold) 0%, var(--pv2-gold-soft) 100%) !important;
    background-color: var(--pv2-gold) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--pv2-radius-sm) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    line-height: 1;
    min-height: 56px;
    box-shadow: 0 8px 22px rgba(181, 139, 68, 0.32);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.2s ease;
    position: relative;
    overflow: hidden;
}

.pv2 .pv2-cta button.pv2-cta-primary>*,
.pv2 .pv2-cta a.pv2-cta-primary>* {
    position: relative;
    z-index: 1;
}

.pv2 .pv2-cta button.pv2-cta-primary:hover,
.pv2 .pv2-cta a.pv2-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(181, 139, 68, 0.50) !important;
    filter: brightness(1.05);
    background: linear-gradient(135deg, var(--pv2-gold-soft) 0%, var(--pv2-gold) 100%) !important;
    background-color: var(--pv2-gold) !important;
    color: #fff !important;
}

.pv2-cta-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.pv2-cta-primary:hover .pv2-cta-arrow {
    transform: translateX(4px);
}

.pv2-cta-aside {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
}

/* Icon buttons (Wishlist + WhatsApp). Use a high-specificity selector
   `.pv2 .pv2-cta-aside a.pv2-cta-icon` so the legacy product-page CSS
   (which targets `.product-details-action-bottom a`) cannot win.        */
.pv2 .pv2-cta-aside a.pv2-cta-icon,
.pv2 .pv2-cta-aside button.pv2-cta-icon {
    width: 56px !important;
    height: 56px !important;
    border: 1px solid var(--pv2-border) !important;
    background: #fff !important;
    background-image: none !important;
    background-color: #fff !important;
    border-radius: var(--pv2-radius-sm) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--pv2-gold) !important;
    cursor: pointer;
    transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none !important;
    flex-shrink: 0;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: var(--pv2-shadow-soft);
    line-height: 1;
}

/* The Font Awesome icon inside the button */
.pv2 .pv2-cta-aside a.pv2-cta-icon i,
.pv2 .pv2-cta-aside button.pv2-cta-icon i {
    font-size: 20px !important;
    line-height: 1 !important;
    color: var(--pv2-gold) !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    background: transparent !important;
    border: none !important;
}

.pv2 .pv2-cta-aside a.pv2-cta-icon:hover {
    border-color: var(--pv2-gold) !important;
    background: var(--pv2-gold-tint) !important;
    background-color: var(--pv2-gold-tint) !important;
    color: var(--pv2-gold-deep) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(181, 139, 68, 0.22);
}

.pv2 .pv2-cta-aside a.pv2-cta-icon:hover i {
    color: var(--pv2-gold-deep) !important;
}

/* Active (already in wishlist) — filled heart in gold */
.pv2 .pv2-cta-aside a.pv2-cta-icon.is-active {
    border-color: var(--pv2-gold) !important;
    background: var(--pv2-gold-tint) !important;
    background-color: var(--pv2-gold-tint) !important;
    color: var(--pv2-gold) !important;
}

.pv2 .pv2-cta-aside a.pv2-cta-icon.is-active i {
    color: var(--pv2-gold) !important;
}

/* WhatsApp variant — green */
.pv2 .pv2-cta-aside a.pv2-cta-icon-wa {
    background: #25D366 !important;
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: #fff !important;
}

.pv2 .pv2-cta-aside a.pv2-cta-icon-wa i {
    color: #fff !important;
    font-size: 22px !important;
}

.pv2 .pv2-cta-aside a.pv2-cta-icon-wa:hover {
    background: #128C7E !important;
    background-color: #128C7E !important;
    border-color: #128C7E !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.30);
}

.pv2 .pv2-cta-aside a.pv2-cta-icon-wa:hover i {
    color: #fff !important;
}

@keyframes pv2HeartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.18);
    }
}

.pv2-cta-icon:hover svg {
    animation: pv2HeartBeat 0.6s ease;
}

/* ---- Gift hamper banner (category-specific promo) ---- */
.pv2-gift {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--pv2-gold-tint) 0%, #fff8e8 100%);
    border: 1px solid var(--pv2-gold-tint);
    border-left: 3px solid var(--pv2-gold);
    border-radius: var(--pv2-radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--pv2-gold-deep);
}

.pv2-gift i {
    font-size: 18px;
    color: var(--pv2-gold);
}

/* ---- Expected delivery line ---- */
.pv2-delivery {
    margin: 14px 0 0;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid var(--pv2-border);
    border-radius: var(--pv2-radius-sm);
    font-size: 13px;
    color: var(--pv2-text);
    line-height: 1.6;
}

.pv2-delivery strong {
    color: var(--pv2-ink);
    font-weight: 700;
    margin-right: 6px;
}

.pv2-delivery span {
    color: var(--pv2-gold);
    font-weight: 700;
}

.pv2-delivery small {
    color: var(--pv2-muted);
    font-size: 11.5px;
}

.pv2-delivery a {
    color: var(--pv2-gold);
    font-weight: 700;
}

/* ---- Trust strip (3-up inline) ---- */
.pv2-strip {
    list-style: none;
    margin: 4px 0 0;
    padding: 14px 16px;
    background: var(--pv2-cream);
    border: 1px solid var(--pv2-border);
    border-radius: var(--pv2-radius-sm);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.pv2-strip li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--pv2-text);
    justify-content: center;
}

.pv2-strip li svg {
    width: 18px;
    height: 18px;
    color: var(--pv2-gold);
    flex-shrink: 0;
}

.pv2-strip li strong {
    font-weight: 700;
    color: var(--pv2-ink);
    letter-spacing: 0.3px;
}

@media (max-width: 480px) {
    .pv2-strip {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .pv2-strip li {
        justify-content: flex-start;
    }
}

/* ---- Concierge card (video call) ---- */
.pv2-concierge {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    background: linear-gradient(135deg, var(--pv2-charcoal) 0%, #221d18 100%);
    border-radius: var(--pv2-radius);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pv2-concierge::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(181, 139, 68, 0.30) 0%, transparent 70%);
    pointer-events: none;
}

.pv2-concierge::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pv2-gold), transparent);
    opacity: 0.5;
}

.pv2-concierge-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(181, 139, 68, 0.15);
    border: 1px solid rgba(181, 139, 68, 0.40);
    color: var(--pv2-gold-soft);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.pv2-concierge-icon svg {
    width: 26px;
    height: 26px;
}

.pv2-concierge-body {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.pv2-concierge-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.25;
}

.pv2-concierge-sub {
    font-size: 12px;
    color: #c8c2b8;
    margin: 0 0 12px;
    line-height: 1.5;
}

.pv2-concierge-cta {
    background: transparent;
    color: var(--pv2-gold-soft);
    border: 1px solid var(--pv2-gold-soft);
    padding: 9px 18px;
    border-radius: var(--pv2-radius-pill);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.pv2-concierge-cta:hover {
    background: var(--pv2-gold);
    color: #fff;
    border-color: var(--pv2-gold);
}

.pv2-concierge-arrow {
    transition: transform 0.3s ease;
}

.pv2-concierge-cta:hover .pv2-concierge-arrow {
    transform: translateX(3px);
}

/* ---- Pincode availability ---- */
.pv2-pin {
    background: #fff;
    border: 1px solid var(--pv2-border);
    border-radius: var(--pv2-radius-sm);
    padding: 16px 18px;
}

.pv2-pin-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--pv2-text);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.pv2-pin-head svg {
    width: 16px;
    height: 16px;
    color: var(--pv2-gold);
}

.pv2-pin-input-row {
    display: flex;
    gap: 8px;
}

.pv2-pin-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--pv2-border);
    border-radius: var(--pv2-radius-sm);
    background: var(--pv2-cream);
    color: var(--pv2-ink);
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: all 0.2s ease;
}

.pv2-pin-input:focus {
    border-color: var(--pv2-gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(181, 139, 68, 0.12);
}

.pv2-pin-btn {
    padding: 10px 18px;
    background: var(--pv2-charcoal);
    color: #fff;
    border: none;
    border-radius: var(--pv2-radius-sm);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pv2-pin-btn:hover {
    background: var(--pv2-gold);
}

.pv2-pin-result {
    margin: 8px 0 0;
    font-size: 12px;
    font-weight: 600;
    min-height: 14px;
}

.pv2-pin-result.is-success {
    color: var(--pv2-success);
}

.pv2-pin-result.is-error {
    color: #d04545;
}

/* ---- Tabs (Story | Specifications | Pricing) ---- */
.pv2-tabs {
    background: #fff;
    border: 1px solid var(--pv2-border);
    border-radius: var(--pv2-radius);
    overflow: hidden;
}

.pv2-tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--pv2-divider);
}

.pv2-tab {
    flex: 1;
    padding: 16px 12px;
    background: transparent;
    border: none;
    color: var(--pv2-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}

.pv2-tab:hover {
    color: var(--pv2-ink);
}

.pv2-tab.is-active {
    color: var(--pv2-ink);
}

.pv2-tab.is-active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 24px;
    height: 2px;
    background: var(--pv2-gold);
    transform: translateX(-50%);
    border-radius: 2px;
}

.pv2-pane {
    display: none;
    padding: 22px;
    animation: pv2FadeIn 0.4s ease;
}

.pv2-pane.is-active {
    display: block;
}

@keyframes pv2FadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pv2-pane-quote {
    font-size: 14px;
    line-height: 1.7;
    color: var(--pv2-text);
    margin: 0 0 16px;
    position: relative;
    padding: 14px 16px;
    background: var(--pv2-cream);
    border-left: 3px solid var(--pv2-gold);
    border-radius: 0 var(--pv2-radius-sm) var(--pv2-radius-sm) 0;
    font-weight: 500;
}

.pv2-pane-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.pv2-pane-bullets li {
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--pv2-divider);
    border-radius: var(--pv2-radius-sm);
    font-size: 12px;
    color: var(--pv2-text);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border-color 0.2s ease;
}

.pv2-pane-bullets li:hover {
    border-color: var(--pv2-gold);
}

.pv2-pane-bullets li::before {
    content: "✓";
    width: 20px;
    height: 20px;
    background: var(--pv2-gold-tint);
    color: var(--pv2-gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}

.pv2-pane-bullets li strong {
    color: var(--pv2-ink);
    font-weight: 700;
    margin-right: 4px;
}

.pv2-pane-subhead {
    font-size: 13px;
    font-weight: 700;
    color: var(--pv2-ink);
    margin: 18px 0 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pv2-spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.pv2-spec-table th,
.pv2-spec-table td {
    padding: 10px 0;
    border-bottom: 1px solid var(--pv2-divider);
    text-align: left;
    vertical-align: top;
}

.pv2-spec-table tr:last-child th,
.pv2-spec-table tr:last-child td {
    border-bottom: none;
}

.pv2-spec-table th {
    color: var(--pv2-muted);
    font-weight: 600;
    width: 40%;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.6px;
    padding-right: 12px;
}

.pv2-spec-table td {
    color: var(--pv2-ink);
    font-weight: 600;
}

.pv2-spec-table td a {
    color: var(--pv2-gold-deep);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

.pv2-diamonds {
    margin-top: 8px;
    border: 1px solid var(--pv2-divider);
    border-radius: var(--pv2-radius-sm);
    overflow: hidden;
}

.pv2-diamonds th,
.pv2-diamonds td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--pv2-divider);
    width: auto;
    font-size: 12px;
    text-transform: none;
    letter-spacing: 0;
}

.pv2-diamonds thead th {
    background: var(--pv2-cream);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pv2-muted);
    font-weight: 700;
}

.pv2-spec-total {
    background: var(--pv2-cream);
}

.pv2-spec-total th {
    color: var(--pv2-ink) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 11px;
}

/* ---- Price breakup table ---- */
.pv2-breakup {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.pv2-breakup th,
.pv2-breakup td {
    padding: 11px 0;
    border-bottom: 1px solid var(--pv2-divider);
    vertical-align: middle;
    text-align: left;
}

.pv2-breakup th {
    color: var(--pv2-text);
    font-weight: 500;
}

.pv2-breakup-rate {
    color: var(--pv2-muted);
    font-size: 11px;
    text-align: center;
    width: 90px;
    white-space: nowrap;
}

.pv2-breakup-amt {
    color: var(--pv2-ink);
    font-weight: 700;
    text-align: right;
    width: 130px;
    white-space: nowrap;
}

.pv2-breakup-was {
    margin-left: 8px;
    color: var(--pv2-muted);
    font-weight: 400;
    font-size: 11px;
}

.pv2-breakup-final th,
.pv2-breakup-final td {
    background: linear-gradient(135deg, var(--pv2-charcoal) 0%, #2a2a2a 100%);
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-top: 2px solid var(--pv2-gold);
    border-bottom: none;
    padding: 14px 16px;
}

.pv2-breakup-final th {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px !important;
}

.pv2-breakup-final td {
    color: var(--pv2-gold-soft) !important;
    text-align: right;
    padding-right: 16px;
}

@media (max-width: 480px) {
    .pv2-breakup-rate {
        display: none;
    }
}

/* ---- Fallback styles for AJAX-injected rows (get-table.php returns generic markup
       without pv2-breakup-* classes; we re-skin them positionally so the breakup
       keeps the V2 look after a purity/colour change). ------------------------- */
.pv2-breakup tbody tr:has(td + td) td:first-of-type {
    color: var(--pv2-muted);
    font-size: 11px;
    text-align: center;
    width: 90px;
    white-space: nowrap;
}

.pv2-breakup tbody tr td:last-of-type {
    color: var(--pv2-ink);
    font-weight: 700;
    text-align: right;
    width: 130px;
    white-space: nowrap;
}

.pv2-breakup tbody tr td:last-of-type del {
    margin-left: 8px;
    color: var(--pv2-muted);
    font-weight: 400;
    font-size: 11px;
}

/* Total row uses class="cole" in V1 markup */
.pv2-breakup tbody tr:has(.cole) th,
.pv2-breakup tbody tr:has(.cole) td {
    background: linear-gradient(135deg, var(--pv2-charcoal) 0%, #2a2a2a 100%);
    color: #fff !important;
    font-weight: 700 !important;
    border-top: 2px solid var(--pv2-gold);
    border-bottom: none;
    padding: 14px 16px;
}

.pv2-breakup tbody tr:has(.cole) th {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px !important;
}

.pv2-breakup tbody tr:has(.cole) td {
    color: var(--pv2-gold-soft) !important;
    font-size: 16px !important;
    text-align: right;
    padding-right: 16px;
}

@media (max-width: 480px) {
    .pv2-breakup tbody tr:has(td + td) td:first-of-type {
        display: none;
    }
}

/* ---- Share row ---- */
.pv2-share-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0 4px;
    border-top: 1px dashed var(--pv2-divider);
}

.pv2-share-row span {
    font-size: 10px;
    font-weight: 700;
    color: var(--pv2-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-right: 8px;
}

.pv2-share-row a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--pv2-cream);
    border: 1px solid var(--pv2-border);
    color: var(--pv2-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 13px;
}

.pv2-share-row a:hover {
    background: var(--pv2-gold) !important;
    color: #fff !important;
    border-color: var(--pv2-gold) !important;
    transform: translateY(-2px) !important;
}

/* =========================================================================
   STORY BAND — editorial full-width banner
   ========================================================================= */
.pv2-band {
    margin: 80px 0 60px;
    padding: 80px 0;
    background:
        radial-gradient(ellipse at top left, rgba(181, 139, 68, 0.06), transparent 40%),
        radial-gradient(ellipse at bottom right, rgba(181, 139, 68, 0.05), transparent 40%),
        linear-gradient(180deg, #fffbf2 0%, #faf6ed 100%);
    border-top: 1px solid var(--pv2-border);
    border-bottom: 1px solid var(--pv2-border);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.pv2-band.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.pv2-band-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.pv2-band-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: var(--pv2-gold-deep);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 18px;
    position: relative;
}

.pv2-band-eyebrow::before,
.pv2-band-eyebrow::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--pv2-gold);
}

.pv2-band-eyebrow::before {
    right: calc(100% + 14px);
}

.pv2-band-eyebrow::after {
    left: calc(100% + 14px);
}

.pv2-band-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--pv2-ink);
    line-height: 1.25;
    letter-spacing: -0.4px;
    margin: 0 0 20px;
}

@media (max-width: 600px) {
    .pv2-band {
        padding: 50px 0;
        margin: 50px 0 40px;
    }

    .pv2-band-title {
        font-size: 22px;
    }
}

.pv2-band-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--pv2-text);
    margin: 0 auto 36px;
    max-width: 580px;
}

.pv2-band-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    border-top: 1px solid var(--pv2-border);
    padding-top: 30px;
}

@media (max-width: 600px) {
    .pv2-band-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

.pv2-band-stats>div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.pv2-band-stats strong {
    font-size: 24px;
    font-weight: 800;
    color: var(--pv2-gold-deep);
    line-height: 1;
    letter-spacing: -0.4px;
}

.pv2-band-stats sup {
    font-size: 18px;
    color: var(--pv2-gold);
}

.pv2-band-stats span {
    font-size: 11px;
    color: var(--pv2-muted);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 600;
}

/* =========================================================================
   TRUST BLOCK — Why Shop With Us
   ========================================================================= */
.pv2-trust {
    margin: 60px 0;
    padding: 48px 30px;
    background: #fff;
    border-radius: var(--pv2-radius);
    border: 1px solid var(--pv2-border);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.pv2-trust.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.pv2-trust-head {
    text-align: center;
    margin-bottom: 36px;
}

.pv2-trust-head h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--pv2-ink);
    margin: 6px 0 0;
    letter-spacing: -0.3px;
}

.pv2-trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

@media (max-width: 1199px) {
    .pv2-trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .pv2-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.pv2-trust-card {
    padding: 28px 16px;
    background: var(--pv2-cream);
    border-radius: var(--pv2-radius-sm);
    border: 1px solid var(--pv2-border);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.pv2-trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(181, 139, 68, 0.16);
    border-color: rgba(181, 139, 68, 0.4);
    background: #fff;
}

.pv2-trust-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    color: var(--pv2-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 26px;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(181, 139, 68, 0.20);
}

.pv2-trust-icon i,
.pv2-trust-icon .fa {
    color: var(--pv2-gold);
    font-size: 26px;
    line-height: 1;
}

.pv2-trust-card:hover .pv2-trust-icon {
    transform: scale(1.08) rotate(-3deg);
    background: linear-gradient(135deg, var(--pv2-gold), var(--pv2-gold-soft));
    box-shadow: 0 10px 22px rgba(181, 139, 68, 0.40);
}

.pv2-trust-card:hover .pv2-trust-icon i,
.pv2-trust-card:hover .pv2-trust-icon .fa {
    color: #fff;
}

.pv2-trust-icon img {
    width: 32px !important;
    height: 32px !important;
    transition: filter 0.3s ease;
}

.pv2-trust-card:hover .pv2-trust-icon img {
    filter: brightness(0) invert(1);
}

.pv2-trust-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--pv2-ink);
    margin: 0 0 6px;
    line-height: 1.25;
}

.pv2-trust-card p {
    font-size: 12px;
    color: var(--pv2-muted);
    line-height: 1.5;
    margin: 0;
}

/* =========================================================================
   Section header (related products etc.)
   ========================================================================= */
.pv2-section-head {
    text-align: center;
    margin-bottom: 32px;
}

.pv2-section-head h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--pv2-ink);
    letter-spacing: -0.3px;
    margin: 6px 0 14px;
}

.pv2-section-head h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background: var(--pv2-gold);
    margin: 14px auto 0;
}

/* =========================================================================
   Related products
   ========================================================================= */
.pv2-related {
    margin: 60px 0 30px;
    padding-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.pv2-related.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.pv2-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 24px;
}

@media (max-width: 991px) {
    .pv2-related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .pv2-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.pv2-related-card {
    background: #fff;
    border-radius: var(--pv2-radius-sm);
    overflow: hidden;
    border: 1px solid var(--pv2-border);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.pv2-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(181, 139, 68, 0.14);
    border-color: rgba(181, 139, 68, 0.30);
}

.pv2-related-img {
    aspect-ratio: 1 / 1;
    background: var(--pv2-cream);
    overflow: hidden;
    position: relative;
}

.pv2-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pv2-related-card:hover .pv2-related-img img {
    transform: scale(1.05);
}

.pv2-related-body {
    padding: 16px;
}

.pv2-related-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--pv2-ink);
    margin: 0 0 4px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pv2-related-code {
    font-size: 10px;
    font-weight: 700;
    color: var(--pv2-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 8px;
}

.pv2-related-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--pv2-gold-deep);
}

.pv2-related-price del {
    color: var(--pv2-muted);
    font-size: 12px;
    font-weight: 400;
    margin-left: 6px;
}

/* =========================================================================
   Modals — restyle Bootstrap modals consistently
   ========================================================================= */
body .modal-content {
    border-radius: var(--pv2-radius);
    border: none;
    overflow: hidden;
    box-shadow: var(--pv2-shadow-strong);
}

body .modal-header {
    background: linear-gradient(135deg, var(--pv2-charcoal) 0%, #2a2a2a 100%);
    border-bottom: none;
    padding: 22px 26px;
}

body .modal-header .modal-title,
body .modal-header h2,
body .modal-header p.modal-title {
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    border: none !important;
    padding: 0 !important;
    text-transform: uppercase;
}

body .modal-header .close {
    color: #fff;
    opacity: 0.85;
    text-shadow: none;
    font-size: 24px;
}

body .modal-body {
    padding: 26px;
}

body .modal-footer {
    border-top: 1px solid var(--pv2-border);
    padding: 14px 22px;
}

/* =========================================================================
   Animations
   ========================================================================= */
.pv2-info>* {
    animation: pv2FadeUp 0.55s ease both;
}

.pv2-info>*:nth-child(1) {
    animation-delay: 0.05s;
}

.pv2-info>*:nth-child(2) {
    animation-delay: 0.10s;
}

.pv2-info>*:nth-child(3) {
    animation-delay: 0.15s;
}

.pv2-info>*:nth-child(4) {
    animation-delay: 0.20s;
}

.pv2-info>*:nth-child(5) {
    animation-delay: 0.25s;
}

.pv2-info>*:nth-child(6) {
    animation-delay: 0.30s;
}

.pv2-info>*:nth-child(7) {
    animation-delay: 0.35s;
}

.pv2-info>*:nth-child(8) {
    animation-delay: 0.40s;
}

.pv2-info>*:nth-child(9) {
    animation-delay: 0.45s;
}

@keyframes pv2FadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html {
    scroll-behavior: smooth;
}

/* =========================================================================
   MODALS — video call + request details
   Scoped to the V2-emitted modals so V1 styling stays untouched.
   ========================================================================= */
#videoCallModal .modal-content,
#forMoreDetails .modal-content {
    background: #fff;
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(20, 14, 4, 0.30);
}

#videoCallModal .modal-header,
#forMoreDetails .modal-header {
    background: linear-gradient(135deg, var(--pv2-charcoal) 0%, #2a2a2a 100%) !important;
    border-bottom: 2px solid var(--pv2-gold) !important;
    padding: 20px 24px !important;
    position: relative;
}

#videoCallModal .modal-title,
#forMoreDetails .modal-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
    border: none;
    text-align: center;
    flex: 1;
}

#videoCallModal .modal-header .close,
#forMoreDetails .modal-header .close {
    color: #fff !important;
    opacity: 0.85 !important;
    text-shadow: none !important;
    font-size: 28px !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    position: absolute;
    right: 18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

#videoCallModal .modal-header .close:hover,
#forMoreDetails .modal-header .close:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

#videoCallModal .modal-body,
#forMoreDetails .modal-body {
    background: var(--pv2-cream);
    padding: 24px;
}

#videoCallModal .videoCall__inquiryForm-body,
#forMoreDetails form {
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    border: 1px solid var(--pv2-border);
    box-shadow: 0 4px 14px rgba(40, 30, 10, 0.04);
}

#videoCallModal .title-info {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pv2-gold-deep);
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--pv2-divider);
}

#videoCallModal .form-group,
#forMoreDetails .form-group {
    margin-bottom: 14px;
}

#videoCallModal .form-control,
#forMoreDetails .form-control {
    border: 1px solid var(--pv2-border);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14px;
    color: var(--pv2-ink);
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    width: 100%;
    height: auto;
}

#videoCallModal .form-control:focus,
#forMoreDetails .form-control:focus {
    border-color: var(--pv2-gold);
    box-shadow: 0 0 0 3px rgba(181, 139, 68, 0.10);
    outline: none;
}

#videoCallModal textarea.form-control,
#forMoreDetails textarea.form-control {
    min-height: 90px;
    resize: vertical;
}

#videoCallModal .btn-schedule,
#forMoreDetails button[type="submit"] {
    width: 100%;
    background: linear-gradient(135deg, var(--pv2-charcoal) 0%, #2a2a2a 100%);
    color: #fff;
    border: 2px solid var(--pv2-charcoal);
    border-radius: var(--pv2-radius-pill);
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease;
    margin-top: 6px;
}

#videoCallModal .btn-schedule:hover:not([disabled]),
#forMoreDetails button[type="submit"]:hover {
    background: linear-gradient(135deg, var(--pv2-gold) 0%, var(--pv2-gold-deep) 100%);
    border-color: var(--pv2-gold);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(181, 139, 68, 0.30);
}

#videoCallModal .btn-schedule[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    height: auto;
}

#videoCallModal .videoSuccessMsg,
#videoCallModal .videoErrorMsg {
    margin: 10px 0 0;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

#videoCallModal .videoSuccessMsg {
    background: #e6f5eb;
    color: var(--pv2-success);
    border: 1px solid #c6e7d2;
}

#videoCallModal .videoErrorMsg {
    background: #fdecec;
    color: #b13a3a;
    border: 1px solid #f4c4c4;
}

@media (max-width: 600px) {

    #videoCallModal .modal-body,
    #forMoreDetails .modal-body {
        padding: 16px;
    }

    #videoCallModal .videoCall__inquiryForm-body,
    #forMoreDetails form {
        padding: 16px;
    }
}