/*
 * product-detail.css
 * Styles for the single product page (WooCommerce).
 * All classes are prefixed with pd- to avoid conflicts.
 */

/* ── BREADCRUMB ── */
.pd-bc-bar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
.pd-bc {
    font-size: 12px;
    color: var(--dim);
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: 1280px;
    margin: 0 auto;
    font-family: var(--mono);
    letter-spacing: .02em;
    padding: 12px 60px;
}
.pd-bc a { color: var(--dim); transition: color var(--ease); }
.pd-bc a:hover { color: var(--link); }
.pd-bc-sep { opacity: .3; }

/* ── PRODUCT LAYOUT ── */
.pd-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 60px 72px;
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 60px;
    align-items: start;
}

/* ── GALLERY ── */
.pd-gallery {
    position: sticky;
    top: 82px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pd-gallery-main {
    background: linear-gradient(145deg, #0f1e40 0%, #070e26 100%);
    border: 1px solid var(--border-hi);
    border-radius: var(--r-lg);
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.pd-gallery-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 55%, rgba(41,82,200,.24) 0%, transparent 62%);
}
.pd-gallery-main img.pd-main-img-el,
.pd-gallery-main .pd-main-img-el {
    position: relative;
    z-index: 2;
    max-height: 340px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    animation: pd-float 5s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.55)) drop-shadow(0 0 30px rgba(27,58,140,.3));
}
@keyframes pd-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.pd-badge-instock {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    background: rgba(61,184,122,.13);
    border: 1px solid rgba(61,184,122,.25);
    border-radius: 100px;
    padding: 5px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--green);
}
.pd-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 6px var(--green);
}
.pd-badge-outstock {
    background: rgba(224,90,90,.13);
    border-color: rgba(224,90,90,.25);
    color: var(--red);
}
.pd-badge-outstock .pd-badge-dot {
    background: var(--red);
    box-shadow: 0 0 6px var(--red);
}
.pd-badge-comingsoon {
    background: rgba(232,197,58,.13);
    border-color: rgba(232,197,58,.25);
    color: var(--yellow);
}
.pd-badge-comingsoon .pd-badge-dot {
    background: var(--yellow);
    box-shadow: 0 0 6px var(--yellow);
}
.pd-badge-bs {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    background: rgba(201,168,76,.13);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 10.5px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: .07em;
}
.pd-gallery-thumbs {
    display: flex;
    gap: 8px;
}
.pd-thumb {
    flex: 1;
    height: 80px;
    background: linear-gradient(145deg, #0f1e40, #070e26);
    border: 1px solid var(--border);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color var(--ease);
    overflow: hidden;
    font-size: 11px;
    font-family: var(--mono);
    color: var(--faint);
    letter-spacing: .04em;
}
.pd-thumb img {
    height: 54px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
    object-fit: contain;
    max-width: 100%;
}
.pd-thumb.active,
.pd-thumb:hover { border-color: var(--accent-li); }

/* ── PRODUCT INFO ── */
.pd-info { }
.pd-info-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(41,82,200,.12);
    border: 1px solid rgba(107,143,232,.18);
    border-radius: 100px;
    padding: 4px 12px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--link);
    margin-bottom: 14px;
    text-decoration: none;
}
.pd-info h1 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.1;
    margin-bottom: 4px;
    color: var(--text);
}
.pd-info-sub {
    font-size: 13px;
    color: var(--dim);
    margin-bottom: 20px;
    font-weight: 400;
}

/* Price */
.pd-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.pd-price-main {
    font-size: 38px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.03em;
    line-height: 1;
}
.pd-price-per { font-size: 13px; color: var(--dim); }
/* WC price update region */
.pd-price-row .woocommerce-Price-amount { font-size: 38px; font-weight: 800; color: var(--text); letter-spacing: -.03em; line-height: 1; }
.pd-price-row .woocommerce-Price-currencySymbol { font-size: 24px; }
.pd-price-row ins { text-decoration: none; }
.pd-price-row del { display: none; }

/* Trust row */
.pd-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 22px;
}
.pd-tpill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 5px 11px;
    font-size: 11.5px;
    color: var(--dim);
    font-weight: 500;
    white-space: nowrap;
}
.pd-tpill svg { color: var(--link); flex-shrink: 0; }

/* Size selector */
.pd-opt-label {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--faint);
    margin-bottom: 8px;
    display: block;
}
.pd-size-grid {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.pd-size-opt {
    flex: 1;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 11px 8px;
    text-align: center;
    cursor: pointer;
    transition: all var(--ease);
}
.pd-size-opt:hover { border-color: var(--border-hi); }
.pd-size-opt.active {
    background: rgba(41,82,200,.13);
    border-color: var(--accent-li);
}
.pd-size-opt-n {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}
.pd-size-opt-p {
    font-size: 11.5px;
    color: var(--dim);
    margin-top: 2px;
}
.pd-size-opt.active .pd-size-opt-n { color: var(--link); }

/* Hide native WC variation selects (we use custom buttons) */
.pd-info .variations { display: none !important; }
.pd-info .woocommerce-variation-add-to-cart .qty { display: none; }
.pd-info .single_add_to_cart_button { display: none; }
.pd-info .reset_variations { display: none; }
.pd-info .woocommerce-variation-description { display: none; }
.pd-info .woocommerce-variation-price { display: none; }

/* CTA */
.pd-cta-row {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}
.pd-qty-wrap {
    display: flex;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
}
.pd-qbtn {
    width: 38px;
    height: 48px;
    background: none;
    border: none;
    color: var(--dim);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--ease);
    font-family: var(--font);
}
.pd-qbtn:hover { background: var(--surface); color: var(--text); }
.pd-qval {
    width: 36px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    background: none;
    border: none;
    outline: none;
    font-family: var(--font);
}
.pd-btn-cart {
    flex: 1;
    background: var(--accent-li);
    color: #fff;
    border: none;
    border-radius: var(--r);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: background var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    letter-spacing: .02em;
}
.pd-btn-cart:hover { background: #3460D4; }
.pd-btn-cart.added { background: var(--green); }
.pd-btn-cart:disabled { opacity: .6; cursor: default; }
.pd-btn-wl {
    width: 48px;
    height: 48px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dim);
    cursor: pointer;
    transition: all var(--ease);
    flex-shrink: 0;
    text-decoration: none;
}
.pd-btn-wl:hover { border-color: var(--border-hi); color: var(--text); }
.pd-btn-wl.in-wishlist svg { fill: #E05A5A; stroke: #E05A5A; }
.pd-btn-wl.in-wishlist { border-color: rgba(224,90,90,.4); color: #E05A5A; }

/* ── MY ACCOUNT WISHLIST ──────────────────────────────────────────────────── */
.bc-wl-heading {
    font-family: var(--font);
    font-size: 20px;
    font-weight: 700;
    color: var(--text, #e8e8e8);
    margin: 0 0 24px;
    letter-spacing: -.01em;
}
.bc-wl-empty {
    color: var(--dim, #888);
    font-size: 14px;
    margin-bottom: 16px;
}
.bc-wl-shop-link {
    display: inline-block;
    padding: 10px 20px;
    background: var(--accent, #3B6FFF);
    color: #fff;
    border-radius: var(--r, 4px);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
}
.bc-wl-shop-link:hover { background: #3460D4; color: #fff; }
.bc-wl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.bc-wl-item {
    background: var(--card, #1a1a1a);
    border: 1px solid var(--border, #2a2a2a);
    border-radius: var(--r-lg, 8px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color .2s;
}
.bc-wl-item:hover { border-color: var(--border-hi, #333); }
.bc-wl-img { display: block; overflow: hidden; }
.bc-wl-img img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; transition: transform .3s; }
.bc-wl-img:hover img { transform: scale(1.04); }
.bc-wl-no-img { width: 100%; aspect-ratio: 1/1; background: var(--surface, #101010); }
.bc-wl-body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.bc-wl-name a {
    font-size: 13px;
    font-weight: 600;
    color: var(--text, #e8e8e8);
    text-decoration: none;
    line-height: 1.4;
}
.bc-wl-name a:hover { color: var(--accent, #3B6FFF); }
.bc-wl-price { font-size: 14px; font-weight: 700; color: var(--text, #e8e8e8); }
.bc-wl-price .woocommerce-Price-amount { color: inherit; }
.bc-wl-stock { font-size: 11px; }
.bc-wl-instock  { color: var(--green, #3ecf8e); font-weight: 600; }
.bc-wl-outstock { color: var(--dim, #888);      font-weight: 600; }
.bc-wl-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 10px;
}
.bc-wl-view {
    flex: 1;
    text-align: center;
    padding: 8px 10px;
    background: var(--accent, #3B6FFF);
    color: #fff;
    border-radius: var(--r, 4px);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
}
.bc-wl-view:hover { background: #3460D4; color: #fff; }
.bc-wl-remove {
    padding: 8px 10px;
    background: transparent;
    border: 1px solid var(--border, #2a2a2a);
    border-radius: var(--r, 4px);
    color: var(--dim, #888);
    font-size: 12px;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}
.bc-wl-remove:hover { border-color: #E05A5A; color: #E05A5A; }
.bc-wl-remove:disabled { opacity: .5; cursor: default; }
@media (max-width: 640px) {
    .bc-wl-grid { grid-template-columns: 1fr 1fr; }
}

/* BAC Water Alert */
.pd-bac-alert {
    background: rgba(224,90,90,.08);
    border: 1px solid rgba(224,90,90,.28);
    border-left: 3px solid #E05A5A;
    border-radius: var(--r);
    padding: 14px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.pd-bac-alert-ico {
    width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(224,90,90,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E05A5A;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 800;
}
.pd-bac-alert-body { flex: 1; }
.pd-bac-alert-title {
    font-size: 12.5px;
    font-weight: 700;
    color: #f0b0b0;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pd-bac-alert-title span {
    background: #E05A5A;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 100px;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.pd-bac-alert-text {
    font-size: 12px;
    color: rgba(224,90,90,.7);
    line-height: 1.5;
    margin-bottom: 10px;
}
.pd-bac-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #E05A5A;
    color: #fff;
    border: none;
    border-radius: var(--r);
    font-size: 12px;
    font-weight: 700;
    padding: 7px 14px;
    cursor: pointer;
    font-family: var(--font);
    transition: background var(--ease);
    text-decoration: none;
}
.pd-bac-add-btn:hover { background: #c94444; color: #fff; }

/* Ship note */
.pd-ship-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--dim);
    margin-bottom: 22px;
}
.pd-ship-note svg { color: var(--green); flex-shrink: 0; }
.pd-ship-note b { color: var(--text); font-weight: 600; }

/* Spec grid */
.pd-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 18px;
}
.pd-spec-cell {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 12px 14px;
}
.pd-spec-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--faint);
    margin-bottom: 4px;
}
.pd-spec-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}
.pd-spec-val.green { color: var(--green); }
.pd-spec-val.mono { font-family: var(--mono); font-size: 11px; }

/* COA strip */
.pd-coa-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 13px 16px;
    cursor: pointer;
    transition: border-color var(--ease);
    text-decoration: none;
}
.pd-coa-strip:hover { border-color: var(--border-hi); }
.pd-coa-ico {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    background: rgba(41,82,200,.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--link);
    flex-shrink: 0;
}
.pd-coa-text { flex: 1; }
.pd-coa-t { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 1px; }
.pd-coa-s { font-size: 11.5px; color: var(--dim); }
.pd-coa-arr { color: var(--link); flex-shrink: 0; }

/* ── WC NOTICES BAR ── */
.pd-notices-bar {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
}
.pd-notices-bar:empty { display: none; }
.pd-notices-inner:empty { display: none; }
.pd-notices-bar .woocommerce-message,
.pd-notices-bar .woocommerce-error,
.pd-notices-bar .woocommerce-info {
    margin-top: 20px;
    border-radius: var(--r, 4px);
}

/* ── TABS ── */
.pd-tabs-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px 72px;
}
.pd-tabs-bar {
    display: flex;
    border-bottom: 1px solid var(--border);
    margin-bottom: 36px;
}
.pd-tab-btn {
    padding: 12px 20px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dim);
    background: none;
    border: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all var(--ease);
    font-family: var(--font);
    letter-spacing: .01em;
}
.pd-tab-btn:hover { color: var(--text); }
.pd-tab-btn.active {
    color: var(--link);
    border-bottom-color: var(--accent-li);
}
.pd-tab-panel { display: none; }
.pd-tab-panel.active { display: block; }

/* Description tab */
.pd-desc-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}
.pd-desc-body p {
    font-size: 14px;
    color: white;
    line-height: 1.82;
    margin-bottom: 14px;
}
.pd-desc-body p:last-child { margin-bottom: 0; }
.pd-desc-body strong { color: var(--text); font-weight: 600; }
.pd-hi-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pd-hi-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 14px;
}
.pd-hi-ico {
    width: 32px;
    min-width: 32px;
    height: 32px;
    border-radius: 7px;
    background: rgba(41,82,200,.13);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--link);
}
.pd-hi-t { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.pd-hi-b { font-size: 12px; color: var(--dim); line-height: 1.5; }

/* COA tab */
.pd-coa-intro {
    font-size: 14px;
    color: var(--dim);
    line-height: 1.8;
    margin-bottom: 28px;
}
.pd-results-tbl {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 13px;
}
.pd-results-tbl th {
    text-align: left;
    padding: 10px 16px;
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--dim);
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}
.pd-results-tbl td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}
.pd-results-tbl tr:last-child td { border-bottom: none; }
.pd-results-tbl tr:hover td { background: rgba(107,143,232,.03); }
.pd-td-n { font-weight: 700; color: var(--text); }
.pd-td-m { font-family: var(--mono); font-size: 11.5px; color: var(--dim); }
.pd-td-s { color: var(--dim); }
.pd-td-r { font-weight: 700; color: var(--green); }
.pd-pass {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(61,184,122,.1);
    border: 1px solid rgba(61,184,122,.2);
    color: var(--green);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 100px;
    letter-spacing: .05em;
    font-family: var(--mono);
}
.pd-lab-cert {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--green);
    border-radius: var(--r);
    padding: 16px 18px;
}
.pd-lab-cert-ico { color: var(--green); flex-shrink: 0; }
.pd-lab-cert-t { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.pd-lab-cert-s { font-size: 12px; color: var(--dim); }
.pd-lab-cert-s a { color: var(--link); }

/* FAQ tab */
.pd-faq-item { border-bottom: 1px solid var(--border); }
.pd-faq-item:first-child { border-top: 1px solid var(--border); }
.pd-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    font-family: var(--font);
}
.pd-faq-q { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.4; }
.pd-faq-ico {
    width: 24px;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--border-hi);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--link);
    font-size: 16px;
    transition: all var(--ease);
    flex-shrink: 0;
}
.pd-faq-item.open .pd-faq-ico {
    background: var(--accent-li);
    border-color: var(--accent-li);
    color: #fff;
    transform: rotate(45deg);
}
.pd-faq-item.open .pd-faq-q { color: var(--link); }
.pd-faq-ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s cubic-bezier(.4,0,.2,1), padding .3s;
}
.pd-faq-item.open .pd-faq-ans { max-height: 300px; padding-bottom: 16px; }
.pd-faq-ans p { font-size: 13.5px; color: var(--dim); line-height: 1.78; }
.pd-faq-ans a { color: var(--link); }

/* ── RELATED PRODUCTS (upsell-style) ── */
.pd-related {
    background: var(--bg2);
    border-top: 1px solid var(--border);

}
.pd-related-inner { max-width: 1280px; margin: 0 auto; padding: 56px 60px 72px; }
.pd-related-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
}
.pd-related-eyebrow {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--link);
    margin-bottom: 6px;
}
.pd-related-heading {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--text);
    margin: 0;
}
.pd-related-heading span { color: var(--dim); font-weight: 400; }
.pd-related-view {
    font-size: 13px;
    color: var(--link);
    font-weight: 500;
    white-space: nowrap;
    margin-left: 16px;
    text-decoration: none;
}
.pd-related-view:hover { text-decoration: underline; }
.pd-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.pd-rc {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--ease);
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.pd-rc:hover {
    border-color: var(--border-hi);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
.pd-rc-img {
    background: linear-gradient(145deg, #0f1e40, #070e26);
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.pd-rc-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 60%, rgba(41,82,200,.15) 0%, transparent 65%);
}
.pd-rc-img img {
    height: 90px;
    width: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.45));
    object-fit: contain;
    max-width: 90%;
}
.pd-rc-body {
    padding: 12px 14px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.pd-rc-tag {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--link);
    margin-bottom: 5px;
}
.pd-rc-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
    line-height: 1.2;
    flex: 1;
}
.pd-rc-desc { font-size: 11.5px; color: var(--dim); margin-bottom: 10px; line-height: 1.4; }
.pd-rc-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.pd-rc-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.02em;
}
.pd-rc-add {
    background: var(--accent-li);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 700;
    padding: 7px 14px;
    cursor: pointer;
    font-family: var(--font);
    transition: background var(--ease);
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}
.pd-rc-add:hover { background: #3460D4; color: #fff; }

/* Separator */
.pd-hr { height: 1px; background: var(--border); margin-bottom: 18px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .pd-wrap {
        grid-template-columns: 1fr;
        padding: 32px 32px 56px;
        gap: 40px;
    }
    .pd-gallery { position: static; }
    .pd-bc-bar { padding: 12px 32px; }
    .pd-tabs-wrap { padding: 0 32px 56px; }
    .pd-related { padding: 40px 32px 56px; }
    .pd-related-grid { grid-template-columns: repeat(2, 1fr); }
    .pd-desc-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .pd-wrap { padding: 24px 20px 40px; }
    .pd-bc-bar { padding: 10px 20px; }
    .pd-notices-bar { padding: 0 20px; }
    .pd-info h1 { font-size: 24px; }
    .pd-price-main,
    .pd-price-row .woocommerce-Price-amount { font-size: 28px; }
    .pd-gallery-main { height: 300px; }
    .pd-tabs-wrap { padding: 0 20px 40px; }
    .pd-related { padding: 32px 20px 40px; }
    .pd-related-grid { grid-template-columns: 1fr 1fr; }
    .pd-bc-bar { padding: 10px 20px; }
    .pd-size-grid { flex-wrap: wrap; }
    .pd-faq-item.open .pd-faq-ans{max-height: fit-content;}
}

/* ── NOTIFY ME BUTTON ── */
.pd-btn-notify {
    flex: 1;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: var(--r);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: background var(--ease), opacity var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.pd-btn-notify:hover { background: #b07830; }
.pd-btn-notify--coming-soon { background: var(--yellow); color: #1a1200; }
.pd-btn-notify--coming-soon:hover { background: #c9a000; }
.pd-btn-notify svg { flex-shrink: 0; }

/* ── NOTIFY ME MODAL OVERLAY ── */
.pd-notify-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(1, 2, 10, .82);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* ── NOTIFY ME MODAL CARD ── */
.pd-notify-modal {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 460px;
    padding: 32px 28px 28px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .6), 0 0 0 1px rgba(91,143,232,.1);
    animation: pd-notify-in .22s cubic-bezier(.4,0,.2,1);
}
@keyframes pd-notify-in {
    from { opacity: 0; transform: translateY(16px) scale(.97); }
    to   { opacity: 1; transform: none; }
}

.pd-notify-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: var(--dim);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: var(--radius);
    transition: color var(--ease), background var(--ease);
}
.pd-notify-close:hover { color: var(--text); background: var(--surface); }

/* Header row: bell icon + NOTIFY ME label */
.pd-notify-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--orange);
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.pd-notify-header svg { color: var(--orange); flex-shrink: 0; }

/* Product name */
.pd-notify-product-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.01em;
    margin-bottom: 4px;
    font-family: 'Barlow Semi Condensed', sans-serif;
}

/* Divider */
.pd-notify-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 14px 0;
}

/* Body text */
.pd-notify-body {
    font-size: 13px;
    color: var(--dim);
    margin-bottom: 18px;
    line-height: 1.55;
}

/* Email input wrapper */
.pd-notify-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0 14px;
    height: 48px;
    margin-bottom: 12px;
    transition: border-color var(--ease);
}
.pd-notify-input-wrap:focus-within { border-color: var(--orange); }
.pd-notify-input-wrap svg { color: var(--dim); flex-shrink: 0; }
.pd-notify-input-wrap input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-family: var(--font);
    font-size: 14px;
    color: var(--text);
}
.pd-notify-input-wrap input::placeholder { color: var(--dim); }

/* Submit button */
.pd-notify-submit {
    width: 100%;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    transition: background var(--ease), opacity var(--ease);
    margin-bottom: 10px;
}
.pd-notify-submit:hover { background: #b07830; }
.pd-notify-submit:disabled { opacity: .65; cursor: default; }

/* Status message */
.pd-notify-msg {
    font-size: 12.5px;
    text-align: center;
    min-height: 18px;
    transition: opacity .2s;
}
.pd-notify-msg.success { color: var(--green); }
.pd-notify-msg.error   { color: var(--red); }

@media (max-width: 480px) {
    .pd-notify-modal { padding: 24px 18px 20px; }
    .pd-notify-product-name { font-size: 16px; }
}