/* Product detail page — mockup-aligned layout */
.product-detail-page {
    --pdp-primary: var(--website-primary, #6347d9);
    --pdp-primary-soft: #ede9fe;
    --pdp-primary-hover: #5340c4;
    --pdp-border: #e5e7eb;
    --pdp-muted: #6b7280;
    --pdp-success: #16a34a;
    --pdp-danger: #dc2626;
    --pdp-radius: 12px;
    --pdp-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    padding-bottom: 0;
}

.product-detail-page .pdp-breadcrumb {
    font-size: 0.8125rem;
    margin-bottom: 1.25rem;
}

.product-detail-page .pdp-breadcrumb .breadcrumb-item a {
    color: var(--pdp-muted);
    text-decoration: none;
}

.product-detail-page .pdp-breadcrumb .breadcrumb-item.active {
    color: #111827;
    font-weight: 500;
}

/* Hero grid */
.pdp-hero {
    --bs-gutter-x: 1.5rem;
    margin-bottom: 2.5rem;
}

/* Gallery */
.pdp-gallery__stage {
    position: relative;
    background: #f9fafb;
    border: 1px solid var(--pdp-border);
    border-radius: var(--pdp-radius);
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp-gallery__stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 100%;
}

.pdp-gallery__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: var(--pdp-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    text-transform: uppercase;
}

.pdp-gallery__wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--pdp-border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    transition: color 0.15s, border-color 0.15s;
}

.pdp-gallery__wishlist:hover,
.pdp-gallery__wishlist.favorited {
    color: #e11d48;
    border-color: #fecdd3;
}

.pdp-gallery__wishlist.favorited {
    background: #fff1f2;
}

.pdp-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--pdp-border);
    background: rgba(255, 255, 255, 0.95);
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--pdp-shadow);
}

.pdp-gallery__nav:hover {
    background: #fff;
    color: var(--pdp-primary);
}

.pdp-gallery__nav--prev { left: 10px; }
.pdp-gallery__nav--next { right: 10px; }

.pdp-gallery__counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    left: auto;
    transform: none;
    z-index: 2;
    background: rgba(17, 24, 39, 0.72);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
}

.pdp-gallery__thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    overflow-x: auto;
    padding-bottom: 2px;
}

.pdp-gallery__thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    border-radius: 8px;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    background: #f3f4f6;
    padding: 0;
}

.pdp-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pdp-gallery__thumb.is-active,
.pdp-gallery__thumb:hover {
    border-color: var(--pdp-primary);
}

.pdp-gallery__thumb--more {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--pdp-muted);
    background: #f3f4f6;
}

.pdp-gallery__thumb[hidden] {
    display: none !important;
}

.pdp-gallery__placeholder {
    aspect-ratio: 1;
    border-radius: var(--pdp-radius);
    border: 1px dashed var(--pdp-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--pdp-muted);
    background: #f9fafb;
}

/* Info column */
.pdp-info__category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pdp-primary);
    background: var(--pdp-primary-soft);
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 0.65rem;
}

.pdp-info__title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.25;
    color: #111827;
    margin: 0 0 0.75rem;
}

.pdp-info__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.875rem;
    color: var(--pdp-muted);
    margin-bottom: 1rem;
}

.pdp-info__stock {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pdp-success);
    background: #dcfce7;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}

.pdp-info__stock.is-low {
    color: #b45309;
    background: #fef3c7;
}

.pdp-info__stock.is-out {
    color: var(--pdp-danger);
    background: #fee2e2;
}

.pdp-info__price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pdp-primary);
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.pdp-info__price-contact {
    font-size: 1.25rem;
    color: var(--pdp-muted);
    font-style: italic;
}

.pdp-info__lead {
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pdp-info__spec-box {
    width: 100%;
    border: 1px solid var(--pdp-border);
    border-radius: 8px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.pdp-info__spec-box th,
.pdp-info__spec-box td {
    padding: 0.55rem 0.85rem;
    border-bottom: 1px solid var(--pdp-border);
    vertical-align: middle;
}

.pdp-info__spec-box tr:last-child th,
.pdp-info__spec-box tr:last-child td {
    border-bottom: none;
}

.pdp-info__spec-box th {
    width: 46%;
    color: var(--pdp-muted);
    font-weight: 600;
    background: #f9fafb;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
}

.pdp-info__spec-box td {
    color: #111827;
    font-weight: 600;
}

.pdp-info__spec-box--wide {
    max-width: 520px;
}

/* Sidebar stack */
.pdp-sidebar-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 1rem;
}

.pdp-buy-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1.15rem;
    line-height: 1.2;
}

.pdp-buy-card__field {
    margin-bottom: 1.15rem;
}

.pdp-buy-card__hint {
    margin: 0.45rem 0 0;
    font-size: 0.75rem;
    color: var(--pdp-muted);
    line-height: 1.35;
}

.pdp-buy-card__primary {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.pdp-buy-card__secondary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.625rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--pdp-border);
}

.pdp-share-wrap {
    min-width: 0;
}

.pdp-share-wrap .dropdown-toggle::after {
    margin-left: auto;
}

/* Unified purchase buttons */
.pdp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    min-height: 44px;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.pdp-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.pdp-btn--cart {
    border: none;
    background: var(--pdp-primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(99, 71, 217, 0.22);
}

.pdp-btn--cart:hover:not(:disabled) {
    background: var(--pdp-primary-hover);
    color: #fff;
    box-shadow: 0 4px 12px rgba(99, 71, 217, 0.28);
}

.pdp-btn--buy {
    border: none;
    background: var(--pdp-primary-soft);
    color: var(--pdp-primary);
}

.pdp-btn--buy:hover:not(:disabled) {
    background: #ddd6fe;
    color: var(--pdp-primary-hover);
}

.pdp-btn--ghost {
    border: 1px solid var(--pdp-border);
    background: #fff;
    color: #374151;
    min-height: 42px;
    padding: 0.5rem 0.55rem;
    font-size: 0.8125rem;
    font-weight: 500;
}

.pdp-btn--ghost:hover:not(:disabled) {
    border-color: #cbd5e1;
    background: #f9fafb;
    color: #111827;
}

.pdp-btn--ghost .is-fav,
.pdp-btn--ghost .bi-heart-fill.is-fav {
    color: #e11d48;
}

.pdp-btn__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pdp-share-wrap > .pdp-btn--ghost {
    justify-content: center;
}

.pdp-share-wrap .dropdown-menu {
    min-width: 100%;
}

/* QR card (separate from purchase card) */
.pdp-qr-card {
    border: 1px solid var(--pdp-border);
    border-radius: var(--pdp-radius);
    background: #fff;
    box-shadow: var(--pdp-shadow);
    padding: 1rem;
}

.pdp-qr-card__head {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.pdp-qr-card__head i {
    color: var(--pdp-primary);
    font-size: 1rem;
}

.pdp-qr-card__sub {
    font-weight: 500;
}

.pdp-qr-card__body {
    border: 1px solid var(--pdp-border);
    border-radius: 10px;
    background: #fafafa;
    padding: 1rem 0.85rem;
    text-align: center;
}

.pdp-qr-card__img {
    width: 148px;
    height: 148px;
    object-fit: contain;
    margin: 0 auto 0.75rem;
    display: block;
    background: #fff;
    border-radius: 6px;
}

.pdp-qr-card__sku {
    font-size: 0.8125rem;
    color: #374151;
    font-weight: 600;
    margin: 0 0 0.25rem;
}

.pdp-qr-card__hint {
    font-size: 0.75rem;
    color: var(--pdp-muted);
    margin: 0;
    line-height: 1.4;
}

/* Trust strip below hero */
.pdp-trust-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.25rem 1rem;
    background: #fff;
    border: 1px solid var(--pdp-border);
    border-radius: var(--pdp-radius);
}

@media (min-width: 768px) {
    .pdp-trust-strip {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pdp-trust-strip__item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.25rem;
}

.pdp-trust-strip__item i {
    font-size: 1.35rem;
    color: var(--pdp-primary);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.pdp-trust-strip__item strong {
    display: block;
    font-size: 0.8125rem;
    color: #111827;
    line-height: 1.2;
}

.pdp-trust-strip__item span {
    display: block;
    font-size: 0.72rem;
    color: var(--pdp-muted);
    margin-top: 0.15rem;
    line-height: 1.3;
}

.pdp-info__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.pdp-info__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 0.45rem;
}

.pdp-info__features i {
    color: var(--pdp-primary);
    margin-top: 0.15rem;
}

.pdp-info__actions .btn {
    border-radius: 8px;
    font-weight: 500;
}

.pdp-info__actions .btn-outline-secondary {
    border-color: var(--pdp-border);
    color: #374151;
}

/* Purchase card */
.pdp-buy-card {
    border: 1px solid var(--pdp-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
    padding: 1.25rem 1.15rem 1.15rem;
}

.pdp-buy-card__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.45rem;
}

.pdp-qty-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--pdp-border);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    max-width: 100%;
}

.pdp-qty-row button,
.pdp-qty-row .pdp-qty-btn {
    flex: 0 0 42px;
    width: 42px;
    min-height: 42px;
    border: none;
    background: #f9fafb;
    color: #374151;
    font-size: 1.05rem;
    line-height: 1;
}

.pdp-qty-row button:hover,
.pdp-qty-row .pdp-qty-btn:hover {
    background: var(--pdp-primary-soft);
    color: var(--pdp-primary);
}

.pdp-qty-row input,
.pdp-qty-row .pdp-qty-input {
    flex: 1 1 48px;
    width: 48px;
    min-width: 48px;
    max-width: 72px;
    border: none;
    border-left: 1px solid var(--pdp-border);
    border-right: 1px solid var(--pdp-border);
    text-align: center;
    font-weight: 700;
    font-size: 0.9375rem;
    background: #fff;
    padding: 0;
    -moz-appearance: textfield;
}

.pdp-qty-row .pdp-qty-input::-webkit-outer-spin-button,
.pdp-qty-row .pdp-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pdp-qty-row .pdp-qty-input:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px var(--pdp-primary-soft);
}

.pdp-qty-row .pdp-qty-unit {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.85rem;
    min-width: 3.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--pdp-muted);
    background: #f9fafb;
    border-left: 1px solid var(--pdp-border);
}

.pdp-buy-card__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.pdp-buy-card__subtotal strong {
    font-size: 1.125rem;
    color: var(--pdp-primary);
}

.pdp-buy-card .btn-pdp-primary {
    background: var(--pdp-primary);
    border-color: var(--pdp-primary);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.65rem 1rem;
}

.pdp-buy-card .btn-pdp-primary:hover {
    background: var(--pdp-primary-hover);
    border-color: var(--pdp-primary-hover);
    color: #fff;
}

.pdp-buy-card .btn-pdp-secondary {
    background: var(--pdp-primary-soft);
    border: 1px solid transparent;
    color: var(--pdp-primary);
    font-weight: 600;
    border-radius: 8px;
    padding: 0.65rem 1rem;
}

.pdp-buy-card .btn-pdp-secondary:hover {
    background: #ddd6fe;
    color: var(--pdp-primary-hover);
}

.pdp-buy-card__meta {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    border-top: 1px solid var(--pdp-border);
    padding-top: 1rem;
}

.pdp-buy-card__meta li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.pdp-buy-card__meta i {
    color: var(--pdp-primary);
    margin-top: 0.1rem;
}

/* QR in buy card */
.pdp-qr-panel {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--pdp-border);
    text-align: center;
}

.pdp-qr-panel__title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.35rem;
}

.pdp-qr-panel__hint {
    font-size: 0.75rem;
    color: var(--pdp-muted);
    margin-bottom: 0.75rem;
}

.pdp-qr-panel__img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.pdp-qr-panel__link {
    display: inline-block;
    margin-top: 0.65rem;
    font-size: 0.8125rem;
    color: var(--pdp-primary);
    text-decoration: none;
    font-weight: 500;
}

.pdp-qr-panel__link:hover {
    text-decoration: underline;
}

/* Tabs */
.pdp-tabs {
    margin-bottom: 2.5rem;
}

.pdp-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    border-bottom: 1px solid var(--pdp-border);
    margin-bottom: 1.5rem;
}

.pdp-tabs__btn {
    border: none;
    background: transparent;
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--pdp-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    border-radius: 0;
}

.pdp-tabs__btn:hover {
    color: var(--pdp-primary);
}

.pdp-tabs__btn.is-active {
    color: var(--pdp-primary);
    border-bottom-color: var(--pdp-primary);
    font-weight: 600;
}

.pdp-tab-content__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .pdp-tab-content__grid {
        grid-template-columns: 2fr 1.2fr 1fr;
    }
}

.pdp-tab-pane h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #111827;
}

.pdp-spec-table {
    width: 100%;
    font-size: 0.875rem;
}

.pdp-spec-table th {
    color: var(--pdp-muted);
    font-weight: 500;
    padding: 0.4rem 0.75rem 0.4rem 0;
    width: 42%;
    vertical-align: top;
}

.pdp-spec-table td {
    color: #111827;
    font-weight: 500;
    padding: 0.4rem 0;
    vertical-align: top;
}

.pdp-trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pdp-trust-list li {
    display: flex;
    gap: 0.65rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.pdp-trust-list__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--pdp-primary-soft);
    color: var(--pdp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pdp-trust-list strong {
    display: block;
    color: #111827;
    font-size: 0.8125rem;
}

.pdp-trust-list span {
    color: var(--pdp-muted);
    font-size: 0.75rem;
}

.pdp-prose {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #4b5563;
}

.pdp-prose ul {
    padding-left: 1.2rem;
}

/* Related carousel */
.pdp-related {
    margin-bottom: 2rem;
}

.pdp-related__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.pdp-related__head h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.pdp-related__nav button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--pdp-border);
    background: #fff;
    color: #374151;
    margin-left: 0.35rem;
}

.pdp-related__nav button:hover {
    border-color: var(--pdp-primary);
    color: var(--pdp-primary);
}

.pdp-related__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
}

.pdp-related__track::-webkit-scrollbar {
    height: 6px;
}

.pdp-related__card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    border: 1px solid var(--pdp-border);
    border-radius: var(--pdp-radius);
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s;
}

.pdp-related__card:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.pdp-related__card-img {
    height: 160px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pdp-related__card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 0.5rem;
    box-sizing: border-box;
}

.pdp-related__card-body {
    padding: 0.85rem;
}

.pdp-related__card-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 0.35rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5em;
}

.pdp-related__card-price {
    color: var(--pdp-primary);
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 0.65rem;
}

.pdp-related__card .btn {
    width: 100%;
    font-size: 0.8125rem;
    border-radius: 8px;
}

/* Trust footer bar */
.pdp-trust-bar {
    background: linear-gradient(180deg, #f5f3ff 0%, #f9fafb 100%);
    border-top: 1px solid var(--pdp-border);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 2rem 0;
    width: 100vw;
    max-width: 100vw;
}

.pdp-trust-bar__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pdp-trust-bar__inner {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pdp-trust-bar__item {
    text-align: center;
    padding: 0 0.5rem;
}

.pdp-trust-bar__item i {
    font-size: 1.75rem;
    color: var(--pdp-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.pdp-trust-bar__item strong {
    display: block;
    font-size: 0.875rem;
    color: #111827;
    margin-bottom: 0.2rem;
}

.pdp-trust-bar__item span {
    font-size: 0.75rem;
    color: var(--pdp-muted);
}

.pdp-tier-note {
    font-size: 0.8125rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    margin-top: 0.75rem;
}

@media (max-width: 991.98px) {
    .pdp-sidebar-stack {
        position: static;
    }

    .pdp-buy-card {
        position: static;
        margin-top: 0.5rem;
    }
}

/* Product gallery hover interaction and readable breadcrumbs */
.product-detail-page .pdp-breadcrumb { font-size: 0.9375rem; }
.product-detail-page .pdp-gallery__stage img { object-fit: contain; }
.product-detail-page .pdp-gallery__nav {
    opacity: 0;
    transition: opacity 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
.product-detail-page .pdp-gallery__nav:hover,
.product-detail-page .pdp-gallery__nav:focus-visible { opacity: 1; }
@media (hover: none), (pointer: coarse) {
    .product-detail-page .pdp-gallery__nav { opacity: 1; }
}
.pdp-gallery__zoom{position:absolute;right:16px;bottom:16px;z-index:3;display:grid;place-items:center;width:44px;height:44px;border:1px solid #dbe3ea;border-radius:50%;background:#fff;color:#334155;box-shadow:0 5px 16px rgba(15,23,42,.12)}
.pdp-lightbox[hidden]{display:none}
.pdp-lightbox{position:fixed;z-index:1200;inset:0;display:grid;place-items:center;padding:32px;background:rgba(2,6,23,.92)}
.pdp-lightbox>img{max-width:94vw;max-height:90vh;object-fit:contain}
.pdp-lightbox>button{position:absolute;top:20px;right:20px;display:grid;place-items:center;width:48px;height:48px;border:0;border-radius:50%;background:#fff;color:#0f172a}
body.pdp-lightbox-open{overflow:hidden}
