:root {
    --pd-primary: #003d9b;
    --pd-primary-container: #0052cc;
    --pd-secondary: #4648d4;
    --pd-bg: #faf8ff;
    --pd-surface: #ffffff;
    --pd-low: #f3f3fd;
    --pd-mid: #ededf8;
    --pd-high: #e1e2ec;
    --pd-line: #c3c6d6;
    --pd-text: #191b23;
    --pd-muted: #434654;
    --pd-outline: #737685;
    --pd-red: #ef4444;
    --pd-green: #22c55e;
    --pd-gold: #f59e0b;
    --pd-display: "Plus Jakarta Sans", system-ui, sans-serif;
    --pd-body: "Inter", system-ui, sans-serif;
}
* { box-sizing: border-box; }
body.ldm-product-page {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--pd-bg);
    color: var(--pd-text);
    font-family: var(--pd-body);
}
.ldm-product-page a { color: inherit; text-decoration: none; }
.material-symbols-outlined { line-height: 1; vertical-align: middle; }
.pd-live-bar {
    position: sticky;
    top: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 44px;
    padding: 8px 32px;
    background: var(--pd-red);
    color: #fff;
}
.pd-live-bar a {
    border-radius: 999px;
    background: #fff;
    color: var(--pd-red);
    font-size: 12px;
    font-weight: 900;
    padding: 5px 16px;
    text-transform: uppercase;
}
.pd-mobile-head { display: none; }
.pd-sidebar {
    position: fixed;
    top: 44px;
    bottom: 0;
    left: 0;
    z-index: 50;
    width: 288px;
    overflow: hidden auto;
    border-right: 1px solid rgba(195, 198, 214, .35);
    background: var(--pd-low);
    transition: width .28s ease;
}
.pd-sidebar__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
}
.pd-sidebar__head a {
    color: var(--pd-primary);
    font-family: var(--pd-display);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -.03em;
}
.pd-sidebar button {
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--pd-muted);
    padding: 8px;
}
.pd-sidebar button:hover { background: var(--pd-mid); }
.pd-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 16px;
}
.pd-sidebar nav a {
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 12px;
    color: var(--pd-muted);
    font-weight: 800;
    padding: 12px 16px;
}
.pd-sidebar nav a:hover,
.pd-sidebar nav a.is-active {
    background: rgba(0, 61, 155, .1);
    color: var(--pd-primary);
}
.pd-sidebar nav small {
    color: var(--pd-outline);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    padding: 14px 16px 8px;
    text-transform: uppercase;
}
.pd-sidebar hr {
    border-color: rgba(195, 198, 214, .35);
    margin: 14px 0;
}
.pd-pro-card {
    border: 1px solid rgba(0, 61, 155, .1);
    border-radius: 16px;
    background: rgba(0, 61, 155, .05);
    margin: 22px 16px;
    padding: 16px;
}
.pd-pro-card p {
    color: var(--pd-primary);
    font-size: 12px;
    font-weight: 900;
    margin: 0 0 4px;
}
.pd-pro-card span {
    display: block;
    color: var(--pd-muted);
    font-size: 12px;
    margin-bottom: 12px;
}
.pd-pro-card button {
    width: 100%;
    border-radius: 8px;
    background: var(--pd-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    padding: 9px;
}
.pd-sidebar.is-collapsed { width: 80px; }
.pd-sidebar.is-collapsed b,
.pd-sidebar.is-collapsed small,
.pd-sidebar.is-collapsed .pd-sidebar__head a,
.pd-sidebar.is-collapsed .pd-pro-card { display: none; }
.pd-sidebar.is-collapsed .pd-sidebar__head { justify-content: center; padding-inline: 0; }
.pd-sidebar.is-collapsed nav a { justify-content: center; padding-inline: 0; }
.pd-shell {
    margin-left: 288px;
    transition: margin-left .28s ease;
}
.pd-shell.is-collapsed { margin-left: 80px; }
.pd-topnav {
    position: sticky;
    top: 44px;
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 22px;
    border-bottom: 1px solid rgba(195, 198, 214, .35);
    background: rgba(250, 248, 255, .86);
    backdrop-filter: blur(18px);
    padding: 16px 32px;
}
.pd-brand {
    display: none;
    color: var(--pd-primary);
    font-family: var(--pd-display);
    font-size: 28px;
    font-weight: 900;
}
.pd-links {
    display: flex;
    gap: 24px;
}
.pd-links a {
    color: var(--pd-muted);
    font-size: 14px;
    font-weight: 800;
}
.pd-links a.is-active {
    border-bottom: 2px solid var(--pd-primary);
    color: var(--pd-primary);
}
.pd-search {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 260px;
    border-radius: 999px;
    background: var(--pd-mid);
    margin-left: auto;
    padding: 8px 14px;
}
.pd-search span { color: var(--pd-outline); }
.pd-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 14px;
}
.pd-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 999px;
    color: var(--pd-muted);
}
.pd-icon:hover { background: var(--pd-low); color: var(--pd-primary); }
.pd-main {
    width: min(100% - 64px, 1240px);
    margin: 0 auto;
    padding: 32px 0 0;
}
.pd-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--pd-outline);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 24px;
}
.pd-breadcrumbs .material-symbols-outlined { font-size: 17px; }
.pd-breadcrumbs span:last-child { color: var(--pd-text); }
.pd-product-grid {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
    gap: 24px;
    align-items: start;
}
.pd-gallery { display: grid; gap: 18px; }
.pd-hero-img {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--pd-high);
    box-shadow: 0 18px 40px rgba(25, 27, 35, .12);
    aspect-ratio: 16 / 10;
}
.pd-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pd-live-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: var(--pd-red);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    padding: 7px 12px;
    text-transform: uppercase;
}
.pd-live-badge i {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #fff;
    animation: pdPulse 1.4s infinite;
}
.pd-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.pd-thumbs button {
    overflow: hidden;
    border: 1px solid var(--pd-line);
    border-radius: 10px;
    background: var(--pd-surface);
    color: var(--pd-muted);
    padding: 0;
    aspect-ratio: 1;
}
.pd-thumbs button.is-active {
    border: 2px solid var(--pd-primary);
}
.pd-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pd-video-thumb {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 800;
}
.pd-tabs {
    display: grid;
    gap: 22px;
    padding-top: 20px;
}
.pd-tabs > div {
    display: flex;
    gap: 28px;
    border-bottom: 1px solid var(--pd-line);
}
.pd-tabs button {
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--pd-muted);
    font-weight: 900;
    padding: 0 0 12px;
}
.pd-tabs button.is-active {
    border-color: var(--pd-primary);
    color: var(--pd-primary);
}
.pd-tabs article {
    display: none;
}
.pd-tabs article.is-active {
    display: block;
}
.pd-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}
.pd-spec-grid p {
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--pd-line);
    border-radius: 10px;
    background: var(--pd-low);
}
.pd-spec-grid small {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--pd-muted);
    letter-spacing: 0.5px;
}
.pd-spec-grid b {
    font-size: 14px;
    font-weight: 900;
    color: var(--pd-text);
}
.pd-tabs h2,
.pd-review-section h2,
.pd-related h2 {
    font-family: var(--pd-display);
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 12px;
}
.pd-tabs p {
    color: var(--pd-muted);
    line-height: 1.7;
}
.pd-tabs ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.pd-tabs li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.pd-tabs li span { color: var(--pd-green); }
.pd-buy-box {
    position: sticky;
    top: 122px;
    display: grid;
    gap: 20px;
}
.pd-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.pd-pill {
    border-radius: 4px;
    background: #dae2ff;
    color: #001848;
    font-size: 12px;
    font-weight: 900;
    padding: 4px 8px;
}
.pd-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--pd-gold);
}
.pd-stars .material-symbols-outlined {
    font-size: 18px;
    font-variation-settings: "FILL" 1;
}
.pd-stars b {
    color: var(--pd-muted);
    font-size: 14px;
    margin-left: 6px;
}
.pd-buy-box h1 {
    font-family: var(--pd-display);
    font-size: 32px;
    font-weight: 800;
    line-height: 40px;
    margin: -8px 0 0;
}
.pd-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}
.pd-price strong {
    color: var(--pd-primary);
    font-family: var(--pd-display);
    font-size: 48px;
    font-weight: 800;
}
.pd-price del {
    color: var(--pd-muted);
    font-size: 18px;
}
.pd-price span {
    border-radius: 6px;
    background: rgba(255, 218, 214, .65);
    color: var(--pd-red);
    font-size: 14px;
    font-weight: 900;
    padding: 5px 8px;
}
.pd-stock { display: grid; gap: 8px; }
.pd-stock div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--pd-muted);
    font-size: 14px;
    font-weight: 800;
}
.pd-stock b { color: var(--pd-red); }
.pd-stock progress {
    width: 100%;
    height: 8px;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
}
.pd-stock progress::-webkit-progress-bar { background: var(--pd-mid); }
.pd-stock progress::-webkit-progress-value { background: linear-gradient(90deg, var(--pd-green), var(--pd-gold), var(--pd-red)); }
.pd-option-block { display: grid; gap: 12px; }
.pd-option-block h2 {
    font-size: 14px;
    font-weight: 900;
    margin: 0;
}
.pd-option-block h2 span {
    color: var(--pd-muted);
    font-weight: 500;
}
.pd-swatches,
.pd-storage {
    display: flex;
    gap: 12px;
}
.pd-swatches button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--pd-line);
    border-radius: 999px;
    background: var(--swatch);
}
.pd-swatches button.is-selected {
    border: 2px solid var(--pd-primary);
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--pd-primary);
}
.pd-storage button {
    flex: 1;
    border: 1px solid var(--pd-line);
    border-radius: 10px;
    background: #fff;
    font-weight: 900;
    padding: 10px 14px;
}
.pd-storage button.is-selected {
    border: 2px solid var(--pd-primary);
    background: rgba(0, 61, 155, .06);
    color: var(--pd-primary);
}
.pd-quantity {
    display: inline-flex;
    align-items: stretch;
    gap: 0;
    width: fit-content;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.pd-quantity button {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 0;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.pd-quantity button:first-child {
    border-right: 1.5px solid #e5e7eb;
}
.pd-quantity button:last-child {
    border-left: 1.5px solid #e5e7eb;
}
.pd-quantity button:hover:not(:disabled) {
    background: #f3f4f6;
}
.pd-quantity button:active:not(:disabled) {
    background: #e5e7eb;
}
.pd-quantity button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.pd-quantity button .material-symbols-outlined {
    font-size: 20px;
    font-weight: 400;
    color: #374151;
    transition: color 0.2s ease;
}
.pd-quantity input {
    width: 140px;
    height: 46px;
    border: 0;
    background: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    -moz-appearance: textfield;
    outline: none;
}
.pd-quantity input::-webkit-outer-spin-button,
.pd-quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.pd-quantity input:focus {
    background: #fafafa;
}
.pd-purchase-type {
    display: grid;
    gap: 12px;
}
.pd-purchase-type label {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid var(--pd-line);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    padding: 15px;
}
.pd-purchase-type label:has(input:checked) {
    border-color: var(--pd-primary);
    background: rgba(0, 61, 155, .05);
}
.pd-purchase-type span {
    display: grid;
    flex: 1;
    gap: 2px;
}
.pd-purchase-type small { color: var(--pd-muted); }
.pd-purchase-type strong { color: var(--pd-green); }
.pd-actions {
    display: grid;
    gap: 12px;
}
.pd-actions button,
.pd-mobile-buy button,
.pd-mobile-buy a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border-radius: 999px;
    font-family: var(--pd-display);
    font-size: 22px;
    font-weight: 800;
    padding: 16px;
}
.pd-add-cart {
    border: 0;
    background: var(--pd-primary);
    color: #fff;
    box-shadow: 0 12px 24px rgba(0, 61, 155, .18);
}
.pd-buy-now {
    border: 2px solid var(--pd-primary);
    background: transparent;
    color: var(--pd-primary);
}
.pd-vendor-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(195, 198, 214, .35);
    border-radius: 14px;
    background: var(--pd-low);
    padding: 14px;
}
.pd-vendor-card img {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    object-fit: cover;
}
.pd-vendor-card p {
    margin: 0;
    font-weight: 800;
}
.pd-vendor-card b,
.pd-vendor-card a { color: var(--pd-primary); }
.pd-vendor-card small {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--pd-outline);
}
.pd-vendor-card small span {
    color: var(--pd-gold);
    font-size: 15px;
}
.pd-vendor-card a { font-weight: 900; }
.pd-contact-seller {
    display: none;
}
.pd-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(195, 198, 214, .35);
}
.pd-trust span {
    display: grid;
    justify-items: center;
    gap: 5px;
    background: #f8fafc;
    color: var(--pd-muted);
    font-size: 10px;
    font-weight: 900;
    padding: 13px 8px;
    text-align: center;
    text-transform: uppercase;
}
.pd-trust i { color: var(--pd-primary); }
.pd-mobile-accordions { display: none; }
.pd-review-section,
.pd-related {
    border-top: 1px solid var(--pd-line);
    margin-top: 64px;
    padding-top: 56px;
}
.pd-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}
.pd-section-head p {
    color: var(--pd-muted);
    margin: 0;
}
.pd-section-head button {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    background: var(--pd-high);
    color: var(--pd-text);
    font-weight: 900;
    padding: 12px 18px;
}
.pd-review-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.pd-review-card {
    display: grid;
    gap: 16px;
    border: 1px solid rgba(195, 198, 214, .35);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(25, 27, 35, .05);
    padding: 24px;
}
.pd-review-card > div {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    align-items: start;
    gap: 12px;
}
.pd-review-card > div > span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 999px;
    background: #dae2ff;
    color: var(--pd-primary);
    font-weight: 900;
}
.pd-review-card section {
    display: grid;
    gap: 2px;
}
.pd-review-card small {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--pd-green);
    font-size: 12px;
    font-weight: 900;
}
.pd-review-card p {
    color: var(--pd-muted);
    font-style: italic;
    line-height: 1.65;
    margin: 0;
}
.pd-review-card img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
}
.pd-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}
.pd-related article {
    display: grid;
    gap: 10px;
}
.pd-related img {
    width: 100%;
    border-radius: 18px;
    background: var(--pd-mid);
    object-fit: cover;
    aspect-ratio: 1;
}
.pd-related b { font-size: 14px; }
.pd-related span {
    color: var(--pd-primary);
    font-weight: 900;
}
.pd-footer {
    border-top: 1px solid var(--pd-line);
    background: var(--pd-high);
    margin-top: 80px;
}
.pd-footer > div {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 24px;
    width: min(100% - 64px, 1240px);
    margin: 0 auto;
    padding: 48px 0;
}
.pd-footer h2 {
    color: var(--pd-primary);
    font-family: var(--pd-display);
    font-weight: 900;
}
.pd-footer p,
.pd-footer a {
    color: var(--pd-muted);
}
.pd-footer nav {
    display: grid;
    align-content: start;
    gap: 10px;
}
.pd-footer nav b {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.pd-footer > p {
    border-top: 1px solid rgba(115, 118, 133, .25);
    margin: 0 auto;
    width: min(100% - 64px, 1240px);
    padding: 22px 0;
    text-align: center;
}
.pd-mobile-buy,
.pd-mobile-bottom { display: none; }
@keyframes pdPulse {
    50% { opacity: .45; transform: scale(.85); }
}
@media (max-width: 1100px) {
    .pd-sidebar { display: none; }
    .pd-shell,
    .pd-shell.is-collapsed { margin-left: 0; }
    .pd-brand { display: block; }
    .pd-product-grid { grid-template-columns: 1fr; }
    .pd-buy-box { position: static; }
    .pd-hero-img { aspect-ratio: 4 / 3; }
    .pd-review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .pd-review-card:nth-child(2) { display: none; }
}
@media (max-width: 760px) {
    .pd-live-bar { display: none; }
    .pd-mobile-head {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 90;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        border-bottom: 1px solid rgba(195, 198, 214, .35);
        background: rgba(250, 248, 255, .85);
        backdrop-filter: blur(12px);
        padding: 14px 16px;
    }
    .pd-mobile-head button {
        border: 0;
        border-radius: 999px;
        background: transparent;
        color: var(--pd-muted);
        padding: 6px;
    }
    .pd-mobile-head strong {
        min-width: 0;
        color: var(--pd-primary);
        font-family: var(--pd-display);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .pd-mobile-head div { display: flex; gap: 4px; }
    .pd-topnav,
    .pd-breadcrumbs,
    .pd-tabs,
    .pd-footer { display: none; }
    .pd-main {
        width: 100%;
        padding-top: 64px;
        padding-bottom: 128px;
    }
    .pd-product-grid { gap: 0; }
    .pd-gallery { gap: 0; }
    .pd-hero-img {
        border-radius: 0;
        box-shadow: none;
        aspect-ratio: 1;
    }
    .pd-thumbs {
        display: flex;
        gap: 6px;
        overflow-x: auto;
        padding: 10px 16px 0;
        scrollbar-width: none;
    }
    .pd-thumbs::-webkit-scrollbar {
        display: none;
    }
    .pd-thumbs button {
        min-width: 56px;
        max-width: 56px;
        height: 56px;
        border-radius: 8px;
        border: 1px solid var(--pd-line);
        overflow: hidden;
        flex-shrink: 0;
    }
    .pd-thumbs button.is-active {
        border: 2px solid var(--pd-primary);
        box-shadow: 0 0 0 1px var(--pd-primary);
    }
    .pd-thumbs button img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .pd-thumbs .pd-video-thumb {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        background: var(--pd-low);
        padding: 4px;
    }
    .pd-thumbs .pd-video-thumb span {
        font-size: 20px;
        color: var(--pd-primary);
    }
    .pd-thumbs .pd-video-thumb b {
        font-size: 8px;
        font-weight: 700;
        text-align: center;
        line-height: 1.2;
        color: var(--pd-muted);
    }
    .pd-buy-box {
        gap: 14px;
        padding: 18px 16px;
    }
    .pd-buy-box h1 {
        font-size: 24px;
        line-height: 32px;
    }
    .pd-price strong { font-size: 32px; }
    .pd-actions,
    .pd-purchase-type,
    .pd-vendor-card { display: none; }
    .pd-contact-seller {
        display: block;
    }
    .pd-ask-seller {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        border: 1.5px solid var(--pd-primary);
        border-radius: 10px;
        background: #fff;
        color: var(--pd-primary);
        font-size: 15px;
        font-weight: 700;
        padding: 14px 20px;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .pd-ask-seller:active {
        background: rgba(0, 61, 155, 0.05);
        transform: scale(0.98);
    }
    .pd-ask-seller .material-symbols-outlined {
        font-size: 22px;
    }
    .pd-quantity {
        width: 100%;
        max-width: 280px;
    }
    .pd-quantity button {
        width: 42px;
        height: 42px;
    }
    .pd-quantity button .material-symbols-outlined {
        font-size: 18px;
    }
    .pd-quantity input {
        width: auto;
        flex: 1;
        height: 42px;
        font-size: 14px;
    }
    .pd-trust { grid-template-columns: 1fr; }
    .pd-mobile-accordions {
        display: grid;
        padding: 0 16px;
    }
    .pd-mobile-accordions details {
        border-top: 1px solid rgba(195, 198, 214, .45);
        padding: 16px 0;
    }
    .pd-mobile-accordions summary {
        cursor: pointer;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: .12em;
        text-transform: uppercase;
    }
    .pd-mobile-accordions ul { padding-left: 18px; }
    .pd-spec-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding-top: 14px;
    }
    .pd-spec-grid p {
        margin: 0;
    }
    .pd-spec-grid small {
        display: block;
        color: var(--pd-muted);
        font-size: 11px;
        text-transform: uppercase;
    }
    .pd-review-section {
        border-top: 0;
        margin-top: 24px;
        padding: 0 16px;
    }
    .pd-section-head {
        align-items: start;
        margin-bottom: 16px;
    }
    .pd-section-head button { display: none; }
    .pd-review-grid,
    .pd-related-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .pd-review-card > div {
        grid-template-columns: 40px minmax(0, 1fr);
    }
    .pd-review-card .pd-stars { grid-column: 1 / -1; }
    .pd-related {
        border-top: 0;
        margin-top: 30px;
        padding: 0 16px;
    }
    .pd-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .pd-mobile-buy {
        position: fixed;
        right: 0;
        bottom: 67px;
        left: 0;
        z-index: 80;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        border-top: 1px solid rgba(195, 198, 214, .45);
        background: rgba(255, 255, 255, .92);
        backdrop-filter: blur(12px);
        padding: 12px 16px;
    }
    .pd-mobile-buy button,
    .pd-mobile-buy a {
        border: 0;
        font-family: var(--pd-body);
        font-size: 14px;
        padding: 13px;
    }
    .pd-mobile-buy button {
        background: var(--pd-primary);
        color: #fff;
    }
    .pd-mobile-buy a {
        border: 2px solid var(--pd-primary);
        color: var(--pd-primary);
    }
    .pd-mobile-bottom {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 80;
        display: flex;
        justify-content: space-around;
        border-top: 1px solid rgba(195, 198, 214, .45);
        background: rgba(250, 248, 255, .86);
        backdrop-filter: blur(12px);
        padding: 8px 0;
    }
    .pd-mobile-bottom a {
        display: grid;
        justify-items: center;
        gap: 2px;
        color: var(--pd-muted);
        font-size: 10px;
        font-weight: 900;
    }
    .pd-mobile-bottom a.is-active {
        color: var(--pd-primary);
    }
}

/* Delivery options */
.pd-delivery {
    border: 1px solid var(--pd-border, rgba(195,198,214,.4));
    border-radius: 10px;
    background: var(--pd-surface, #f9f9fb);
    padding: 14px 16px;
    margin-bottom: 12px;
}
.pd-delivery__row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--pd-text, #1a1c25);
}
.pd-delivery__row i { color: var(--pd-primary, #0052cc); font-size: 18px; }
.pd-delivery__select {
    width: 100%;
    border: 1px solid var(--pd-border, rgba(195,198,214,.6));
    border-radius: 8px;
    background: #fff;
    color: var(--pd-text, #1a1c25);
    font-size: 13px;
    padding: 8px 10px;
    cursor: pointer;
}

.pd-ask-seller{display:inline-flex;align-items:center;gap:6px;margin-top:10px;padding:8px 14px;border:1px solid var(--ldm-primary);border-radius:20px;background:transparent;color:var(--ldm-primary);font-size:13px;font-weight:600;cursor:pointer;transition:background 0.15s,color 0.15s;font-family:var(--ldm-font-body)}
.pd-ask-seller:hover{background:var(--ldm-primary);color:#fff}
.pd-ask-seller .material-symbols-outlined{font-size:16px}
