/* =============================================================
   PATTERN — product.css  (Malabar-style single product page)
   Last updated: April 2026
   ============================================================= */

/* ── Layout ── */
.pg-product-layout-malabar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* ── Gallery wrapper ── */
.pg-gallery-wrap {
    display: flex;
    flex-direction: column;
    min-width: 0; /* Prevents thumbnails from breaking the grid container width */
}

/* ── Horizontal thumbnail strip ── */
.pg-thumbs-h {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0; /* Prevents breaking the flex column width */
}

.pg-thumbs-h-arrow {
    width: 32px; height: 68px;
    border: .5px solid rgba(212,175,55,.2);
    background: rgba(212,175,55,.05);
    border-radius: 4px;
    cursor: pointer;
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
}
.pg-thumbs-h-arrow:hover { background: rgba(212,175,55,.12); }

.pg-thumbs-h-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    min-width: 0; /* Ensures the scrolling track itself yields to parent width */
}
.pg-thumbs-h-track::-webkit-scrollbar { display: none; }

.pg-thumb-h {
    width: 68px; height: 68px;
    border: 1.5px solid #eaeaea;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color .2s;
    background: #ffffff;
}
.pg-thumb-h img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.pg-thumb-h.is-active,
.pg-thumb-h:hover {
    border-color: #ba1264;
}

/* ── Main gallery stage ── */
.pg-gallery-stage {
    width: 100%;
    position: relative;
    margin-bottom: 12px;
}

.pg-gallery-main-v {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #fbfbfb;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    border: 1px solid #eaeaea;
}
.pg-gallery-main-v img {
    width: 100%; height: 100%;
    object-fit: contain; display: block;
}

/* Zoom lens overlay */
.pg-zoom-lens {
    display: none;
    position: absolute;
    width: 120px; height: 120px;
    border: 1.5px solid #ba1264;
    background: rgba(186,18,100,.1);
    border-radius: 4px;
    pointer-events: none;
    z-index: 10;
}

/* Zoom result panel */
.pg-zoom-result {
    display: none;
    position: absolute;
    left: calc(100% + 14px);
    top: 0;
    width: 380px;
    height: 380px;
    background-repeat: no-repeat;
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    z-index: 100;
    pointer-events: none;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Gallery action row */
.pg-gallery-actions-v {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.pg-gallery-counter-v {
    font-size: 11px;
    color: var(--muted);
    margin-left: auto;
}
.pg-gallery-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    letter-spacing: .06em;
    color: var(--muted);
    background: none;
    border: .5px solid rgba(212,175,55,.15);
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    transition: color .2s, border-color .2s;
    text-decoration: none;
}
.pg-gallery-action-btn:hover {
    color: var(--gold);
    border-color: rgba(212,175,55,.4);
}

/* Cert strip */
.pg-cert-strip {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 5;
    display: flex; gap: 6px;
}
.pg-cert-badge {
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(0,0,0,.7);
    color: var(--gold);
    border: .5px solid rgba(212,175,55,.3);
}

/* ─────────────────────────────────────────────────────
   PRODUCT SUMMARY
───────────────────────────────────────────────────── */
.pg-product-main {
    background-color: #ffffff;
    color: #111111;
    padding: 40px 0;
}
.pg-product-summary {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: sticky;
    top: 90px;
    background-color: #ffffff;
}
.pg-product-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.pg-product-badge {
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
}
.pg-badge-new  { background: rgba(212,175,55,.12); color: var(--gold); border: .5px solid rgba(212,175,55,.25); }
.pg-badge-cert { background: rgba(100,200,100,.08); color: #88cc88; border: .5px solid rgba(100,200,100,.2); }
.pg-product-sku { font-size: 11px; color: var(--muted); }
.pg-product-title {
    font-family: var(--font-serif);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 500;
    line-height: 1.25;
    color: var(--cream);
    margin: 0 0 12px;
}
.pg-product-rating-row {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 8px; margin-bottom: 16px; font-size: 13px;
}
.pg-stars-display { color: var(--gold); }
.pg-reviews-link { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.pg-reviews-link:hover { color: var(--gold); }
.pg-rating-sep { color: var(--muted); }
.pg-in-stock { color: #5a9a5a; font-size: 12px; letter-spacing: .04em; }
.pg-out-of-stock { color: #c0392b; }

/* ─────────────────────────────────────────────────────
   PRICE BLOCK
───────────────────────────────────────────────────── */
.pg-price-block { margin-bottom: 20px; }
.pg-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 4px;
}
.pg-price-current {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--gold);
}
.pg-price-original {
    font-size: 16px;
    color: var(--muted);
    text-decoration: line-through;
}
.pg-price-save {
    font-size: 12px;
    color: #5a9a5a;
    letter-spacing: .04em;
}
.pg-price-incl-vat {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .04em;
    margin-bottom: 10px;
}

/* Price breakdown */
.pg-price-breakdown {
    border: .5px solid rgba(212,175,55,.15);
    border-radius: 8px;
    overflow: hidden;
}
.pg-breakdown-toggle {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 14px;
    background: rgba(212,175,55,.04);
    border: none; cursor: pointer;
    color: var(--gold); font-size: 12px; letter-spacing: .06em;
    text-transform: uppercase; font-weight: 600;
    transition: background .2s;
}
.pg-breakdown-toggle:hover { background: rgba(212,175,55,.08); }
.pg-breakdown-chevron { transition: transform .25s; }
.pg-breakdown-chevron.is-open { transform: rotate(180deg); }

.pg-breakdown-table-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.pg-breakdown-table-wrap.is-open { max-height: 400px; }

.pg-breakdown-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}
.pg-breakdown-table td {
    padding: 8px 14px;
    border-bottom: .5px solid rgba(255,255,255,.05);
    color: #aaa;
}
.pg-breakdown-table td:last-child { text-align: right; }
.pg-bd-val { color: var(--cream); font-weight: 500; }
.pg-bd-vat td { color: #888; font-style: italic; }
.pg-bd-total td {
    color: var(--gold) !important;
    font-weight: 700;
    font-size: 13px;
    border-top: .5px solid rgba(212,175,55,.2);
    border-bottom: none;
}
.pg-breakdown-note {
    font-size: 10px;
    color: var(--muted);
    padding: 8px 14px 10px;
    margin: 0;
    border-top: .5px solid rgba(255,255,255,.04);
}

/* ─────────────────────────────────────────────────────
   OPTION GROUPS
───────────────────────────────────────────────────── */
.pg-option-group { margin-bottom: 18px; }
.pg-option-label-row {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 8px;
}
.pg-option-label {
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--cream);
    font-weight: 600;
}
.pg-option-selected { font-size: 12px; color: var(--gold); }
.pg-size-guide-link {
    font-size: 11px; color: var(--gold); background: none; border: none;
    cursor: pointer; letter-spacing: .04em; text-decoration: underline;
    text-underline-offset: 2px;
}

/* Metal colour dots */
.pg-metal-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pg-metal-dot-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: none;
    border: 1.5px solid rgba(255,255,255,.1);
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    min-width: 62px;
}
.pg-metal-dot-btn:hover:not(.is-unavailable) { border-color: rgba(212,175,55,.4); background: rgba(212,175,55,.04); }
.pg-metal-dot-btn.is-active { border-color: var(--gold); background: rgba(212,175,55,.07); }
.pg-metal-dot-btn.is-unavailable { opacity: .35; cursor: not-allowed; }
.pg-metal-dot-circle {
    width: 24px; height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    display: block;
}
.pg-metal-dot-label { font-size: 10px; color: var(--muted); letter-spacing: .04em; white-space: nowrap; }
.pg-metal-dot-btn.is-active .pg-metal-dot-label { color: var(--gold); }

/* Karat selector */
.pg-karat-selector { display: flex; gap: 8px; }
.pg-karat-btn {
    flex: 1;
    padding: 8px 12px;
    border: 1.5px solid rgba(212,175,55,.2);
    border-radius: 6px;
    background: rgba(212,175,55,.03);
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .08em;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    text-align: center;
}
.pg-karat-btn:hover { border-color: rgba(212,175,55,.4); color: var(--cream); }
.pg-karat-btn.is-active { border-color: var(--gold); background: rgba(212,175,55,.1); color: var(--gold); }

/* Size options */
.pg-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.pg-size-opt {
    width: 46px; height: 40px;
    border: 1px solid rgba(212,175,55,.2);
    border-radius: 6px;
    background: transparent;
    color: var(--muted);
    font-size: 12px;
    cursor: pointer;
    transition: all .2s;
}
.pg-size-opt:hover { border-color: rgba(212,175,55,.5); color: var(--cream); }
.pg-size-opt.is-active { border-color: var(--gold); background: rgba(212,175,55,.1); color: var(--gold); }

/* Engraving input */
.pg-engraving-input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255,255,255,.04);
    border: .5px solid rgba(212,175,55,.2);
    border-radius: 6px;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 13px;
    box-sizing: border-box;
    transition: border-color .2s;
}
.pg-engraving-input:focus {
    outline: none;
    border-color: rgba(212,175,55,.5);
    background: rgba(212,175,55,.04);
}
.pg-char-count { font-size: 11px; color: var(--muted); }

/* Divider */
.pg-divider { border: none; border-top: .5px solid rgba(212,175,55,.1); margin: 18px 0; }

/* ─────────────────────────────────────────────────────
   EMIRATES DELIVERY CHECKER
───────────────────────────────────────────────────── */
.pg-delivery-checker {
    background: rgba(212,175,55,.03);
    border: .5px solid rgba(212,175,55,.12);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 16px;
}
.pg-delivery-checker-head {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: var(--cream);
    font-weight: 600; letter-spacing: .04em;
    margin-bottom: 10px;
}
.pg-delivery-checker-row { display: flex; gap: 8px; }
.pg-emirate-select {
    flex: 1;
    padding: 8px 12px;
    background: rgba(255,255,255,.04);
    border: .5px solid rgba(212,175,55,.2);
    border-radius: 6px;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 13px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' stroke='%23D4AF37' stroke-width='1.5'%3E%3Cpath d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}
.pg-emirate-select option { background: #111; color: #ddd; }
.pg-delivery-check-btn {
    padding: 8px 18px;
    background: var(--gold);
    border: none; border-radius: 6px;
    color: #000; font-size: 12px; font-weight: 700;
    letter-spacing: .06em; cursor: pointer;
    transition: opacity .2s;
    white-space: nowrap;
}
.pg-delivery-check-btn:hover { opacity: .88; }
.pg-delivery-result {
    margin-top: 10px;
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: var(--cream);
    padding: 8px 10px;
    background: rgba(100,180,100,.06);
    border: .5px solid rgba(100,180,100,.2);
    border-radius: 6px;
}

/* ─────────────────────────────────────────────────────
   EMI PANEL
───────────────────────────────────────────────────── */
.pg-emi-panel {
    border: .5px solid rgba(212,175,55,.12);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 18px;
}
.pg-emi-toggle {
    width: 100%;
    display: flex; align-items: center; gap: 8px;
    padding: 12px 14px;
    background: rgba(212,175,55,.04);
    border: none; cursor: pointer;
    color: var(--cream); font-size: 12px; font-weight: 600;
    letter-spacing: .04em; text-align: left;
    transition: background .2s;
}
.pg-emi-toggle:hover { background: rgba(212,175,55,.08); }
.pg-emi-chevron { margin-left: auto; transition: transform .25s; color: var(--muted); }
.pg-emi-chevron.is-open { transform: rotate(180deg); }
.pg-emi-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.pg-emi-content.is-open { max-height: 300px; }
.pg-emi-subtitle { font-size: 11px; color: var(--muted); padding: 10px 14px 0; margin: 0; }
.pg-emi-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 10px 14px;
}
.pg-emi-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border: .5px solid rgba(212,175,55,.15);
    border-radius: 6px;
    padding: 10px 8px;
    background: rgba(212,175,55,.03);
}
.pg-emi-months { font-size: 11px; color: var(--muted); }
.pg-emi-amount { font-size: 13px; font-weight: 700; color: var(--gold); }
.pg-emi-note { font-size: 10px; color: var(--muted); padding: 0 14px 12px; margin: 0; line-height: 1.5; }

/* ─────────────────────────────────────────────────────
   QTY ROW + CART BUTTONS
───────────────────────────────────────────────────── */
.pg-qty-row {
    display: flex; gap: 10px; align-items: stretch;
    margin-bottom: 10px;
}
.pg-qty-stepper,
.pg-qty-stepper input[type="number"] {
    height: 50px !important;
}
.pg-add-to-cart {
    flex: 1;
    height: 50px;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: transparent;
    border: 1.5px solid var(--gold);
    border-radius: 6px;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 13px; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.pg-add-to-cart:hover { background: rgba(212,175,55,.1); }
.pg-buy-now {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; height: 50px;
    background: var(--gold);
    border: none; border-radius: 6px;
    color: #000;
    font-family: var(--font-body);
    font-size: 13px; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer; text-decoration: none;
    transition: opacity .2s, transform .15s;
    margin-bottom: 18px;
}
.pg-buy-now:hover { opacity: .9; transform: translateY(-1px); }

/* ─────────────────────────────────────────────────────
   WHATSAPP SERVICES STRIP
───────────────────────────────────────────────────── */
.pg-services-strip {
    display: flex;
    justify-content: space-between;
    gap: 4px;
    border: .5px solid rgba(212,175,55,.1);
    border-radius: 8px;
    padding: 12px 8px;
    background: rgba(212,175,55,.02);
    margin-bottom: 18px;
}
.pg-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
    text-decoration: none;
    padding: 6px 4px;
    border-radius: 6px;
    transition: background .2s;
    cursor: pointer;
    background: none; border: none;
}
.pg-service-item:hover { background: rgba(212,175,55,.06); }
.pg-service-icon { color: var(--gold); display: flex; }
.pg-service-label { font-size: 10px; color: var(--muted); letter-spacing: .03em; text-align: center; }
.pg-service-item:hover .pg-service-label { color: var(--cream); }

/* ─────────────────────────────────────────────────────
   TRUST BADGES
───────────────────────────────────────────────────── */
.pg-trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}
.pg-trust-badge {
    display: flex; flex-direction: column; align-items: center;
    gap: 4px; text-align: center;
    padding: 10px 6px;
    border: .5px solid rgba(255,255,255,.06);
    border-radius: 6px;
    background: rgba(255,255,255,.02);
}
.pg-trust-icon { font-size: 18px; }
.pg-trust-badge span:last-child { font-size: 10px; color: var(--muted); line-height: 1.3; }

/* ─────────────────────────────────────────────────────
   OUT OF STOCK
───────────────────────────────────────────────────── */
.pg-out-of-stock-notice {
    background: rgba(192,57,43,.06);
    border: .5px solid rgba(192,57,43,.2);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 18px;
}
.pg-out-of-stock-notice p { font-size: 13px; color: #c0392b; margin: 0; }

/* ─────────────────────────────────────────────────────
   LIGHTBOX
───────────────────────────────────────────────────── */
.pg-lightbox {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9999;
    display: flex !important;
    align-items: center; justify-content: center;
}
.pg-lightbox[style*="display:none"] { display: none !important; }
.pg-lightbox-close {
    position: absolute; top: 30px; right: 30px;
    font-size: 32px; color: #aaa;
    background: rgba(0,0,0,0.4); border: .5px solid rgba(255,255,255,0.15); border-radius: 50%;
    cursor: pointer;
    line-height: 1; transition: all .2s; z-index: 999;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
}
.pg-lightbox-close:hover { color: #fff; background: rgba(0,0,0,0.8); border-color: rgba(212,175,55,0.5); transform: scale(1.05); }
.pg-lightbox-img-wrap {
    max-width: 90vw; max-height: 90vh;
    display: flex; align-items: center; justify-content: center;
}
.pg-lightbox-img {
    max-width: 100%; max-height: 90vh;
    object-fit: contain; border-radius: 4px;
}
.pg-lightbox-prev,
.pg-lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.08);
    border: .5px solid rgba(255,255,255,.15);
    border-radius: 50%;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; cursor: pointer; transition: background .2s;
    z-index: 10;
}
.pg-lightbox-prev { left: 24px; }
.pg-lightbox-next { right: 24px; }
.pg-lightbox-prev:hover, .pg-lightbox-next:hover { background: rgba(255,255,255,.18); }
.pg-lightbox-counter {
    position: absolute; bottom: 20px;
    font-size: 13px; color: #888; letter-spacing: .06em;
}

/* ─────────────────────────────────────────────────────
   TABS SECTION
───────────────────────────────────────────────────── */
.pg-tabs-section { padding: 60px 0; background: var(--card); }
.pg-tabs-nav {
    display: flex; gap: 0;
    border-bottom: .5px solid rgba(212,175,55,.15);
    margin-bottom: 32px;
    overflow-x: auto;
    scrollbar-width: none;
}
.pg-tabs-nav::-webkit-scrollbar { display: none; }
.pg-tab-btn {
    padding: 14px 24px;
    background: none; border: none;
    border-bottom: 2px solid transparent;
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
    cursor: pointer; transition: color .2s, border-color .2s;
    white-space: nowrap;
    margin-bottom: -1px;
}
.pg-tab-btn:hover { color: var(--cream); }
.pg-tab-btn.is-active { color: var(--gold); border-bottom-color: var(--gold); }
.pg-tab-panel { display: none; }
.pg-tab-panel.is-active { display: block; }

/* Description tab */
.pg-tab-desc-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
}
.pg-tab-desc-text { font-size: 14px; color: #aaa; line-height: 1.8; }
.pg-tab-desc-text h3 { font-family: var(--font-serif); font-size: 22px; color: var(--cream); margin-bottom: 12px; }
.pg-tab-desc-features { display: flex; flex-direction: column; gap: 20px; }
.pg-desc-feature { display: grid; grid-template-columns: 36px 1fr; gap: 0 12px; }
.pg-desc-feature-icon { font-size: 20px; grid-row: span 2; padding-top: 2px; }
.pg-desc-feature h5 { font-size: 13px; font-weight: 600; color: var(--cream); margin: 0 0 4px; }
.pg-desc-feature p { font-size: 12px; color: var(--muted); margin: 0; line-height: 1.5; }

/* Specs tab */
.pg-specs-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.pg-specs-group h4 { font-family: var(--font-serif); font-size: 16px; color: var(--gold); margin-bottom: 14px; }
.pg-specs-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.pg-specs-table td { padding: 9px 0; border-bottom: .5px solid rgba(255,255,255,.05); color: #aaa; }
.pg-specs-table td:first-child { color: var(--muted); width: 45%; }
.pg-cert-download { margin-top: 32px; }
.pg-cert-card {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px;
    border: .5px solid rgba(212,175,55,.2);
    border-radius: 8px; background: rgba(212,175,55,.03);
}
.pg-cert-card-icon { font-size: 28px; }
.pg-cert-card-info h5 { font-size: 13px; font-weight: 600; color: var(--cream); margin: 0 0 3px; }
.pg-cert-card-info p { font-size: 12px; color: var(--muted); margin: 0; }

/* Delivery tab */
.pg-delivery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pg-delivery-card { padding: 20px; border: .5px solid rgba(255,255,255,.06); border-radius: 8px; }
.pg-delivery-icon { font-size: 24px; margin-bottom: 10px; }
.pg-delivery-card h4 { font-size: 14px; font-weight: 600; color: var(--cream); margin: 0 0 8px; }
.pg-delivery-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ─────────────────────────────────────────────────────
   STICKY BAR
───────────────────────────────────────────────────── */
.pg-sticky-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(13,12,10,.97);
    border-top: .5px solid rgba(212,175,55,.2);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    backdrop-filter: blur(12px);
}
.pg-sticky-bar.is-visible { transform: translateY(0); }
.pg-sticky-bar-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 12px 24px; max-width: 1440px; margin: 0 auto;
}
.pg-sticky-bar-info { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.pg-sticky-bar-img { width: 44px; height: 44px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.pg-sticky-bar-name { font-size: 13px; color: var(--cream); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0; }
.pg-sticky-bar-price { font-size: 14px; font-weight: 700; color: var(--gold); margin: 0; }
.pg-sticky-bar-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.pg-sticky-add-to-cart {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 18px;
    border: 1.5px solid var(--gold);
    border-radius: 6px; background: transparent;
    color: var(--gold); font-size: 12px; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase; cursor: pointer;
    transition: background .2s;
}
.pg-sticky-add-to-cart:hover { background: rgba(212,175,55,.1); }
.pg-sticky-buy-now {
    display: inline-flex; align-items: center;
    padding: 10px 20px;
    background: var(--gold); border-radius: 6px;
    color: #000; font-size: 12px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    text-decoration: none; cursor: pointer;
    transition: opacity .2s;
}
.pg-sticky-buy-now:hover { opacity: .88; }
.pg-sticky-whatsapp {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    border: .5px solid rgba(37,211,102,.3);
    border-radius: 50%; background: rgba(37,211,102,.06);
    color: #25d366; text-decoration: none;
    transition: background .2s;
}
.pg-sticky-whatsapp:hover { background: rgba(37,211,102,.15); }

/* Related product rows */
.pg-row-products { padding: 60px 0; }
.pg-row-products-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 28px;
}
.pg-row-products-titles { display: flex; flex-direction: column; gap: 4px; }
.pg-row-products-title {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 500; color: var(--cream); margin: 0;
}
.pg-row-view-all {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    border-bottom: .5px solid transparent;
    transition: border-color .2s;
}
.pg-row-view-all:hover { border-bottom-color: var(--gold); }
.pg-4col-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none; margin: 0; padding: 0;
}

/* =============================================================
   ACCORDIONS & CAROUSELS (NEW MALABAR STYLE)
   ============================================================= */
.pg-details-accordion details summary::-webkit-details-marker,
.pg-faq-accordion details summary::-webkit-details-marker {
    display: none;
}
.pg-details-accordion details[open] summary,
.pg-faq-accordion details[open] summary {
    margin-bottom: 16px;
}
.pg-scrolling-carousel::-webkit-scrollbar {
    display: none;
}
.pg-scrolling-carousel {
    -ms-overflow-style: none;
}

/* =============================================================
   MOBILE RESPONSIVE  (≤ 1023px)
   ============================================================= */
@media (max-width: 1023px) {
    .pg-product-layout-malabar { grid-template-columns: 1fr; gap: 32px; }
    .pg-gallery-wrap { position: static; }
    .pg-zoom-result { display: none !important; } /* no zoom on tablet */
    .pg-tab-desc-grid { grid-template-columns: 1fr; }
    .pg-specs-full-grid { grid-template-columns: 1fr; gap: 24px; }
    .pg-4col-grid { grid-template-columns: repeat(2, 1fr); }
    .pg-trust-badges { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 767px) {
    .pg-gallery-wrap { flex-direction: column-reverse; }
    .pg-thumbs-v {
        flex-direction: row;
        width: 100%; overflow-x: auto;
        scrollbar-width: none;
    }
    .pg-thumbs-v::-webkit-scrollbar { display: none; }
    .pg-thumbs-v-track { flex-direction: row; max-height: none; overflow-x: auto; }
    .pg-thumbs-v-up, .pg-thumbs-v-down { display: none; }
    .pg-thumb-v { width: 56px; height: 56px; }
    .pg-emi-options { grid-template-columns: repeat(3,1fr); }
    .pg-delivery-grid { grid-template-columns: 1fr; }
    .pg-sticky-bar-info { display: none; }
    .pg-sticky-bar-inner { justify-content: center; }
    .pg-services-strip { gap: 0; }
    .pg-service-label { display: none; }
    .pg-service-item { padding: 8px; min-width: 40px; }
}

@media (max-width: 479px) {
    .pg-price-current { font-size: 24px; }
    .pg-product-title { font-size: 20px; }
    .pg-metal-dots { gap: 6px; }
    .pg-metal-dot-btn { min-width: 52px; padding: 6px 7px; }
    .pg-karat-selector { flex-wrap: wrap; }
    .pg-4col-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
    .pg-trust-badges { grid-template-columns: repeat(2,1fr); }
    .pg-emi-options { grid-template-columns: 1fr 1fr 1fr; }
    .pg-sticky-add-to-cart span { display: none; }
}
