/**
 * Single product page — mockup WPTHEME
 */

.product-page {
    --pp-teal: #0a9bb8;
    --pp-teal-2: #087ea4;
    --pp-soft: #f3f6f9;
    --pp-card: #ffffff;
    --pp-text: #1b2430;
    --pp-muted: #64748b;
    --pp-line: #e6edf5;
    --pp-navy: #0b1220;
    background: var(--pp-soft);
    color: var(--pp-text);
    padding: 1.5rem 0 4rem;
    /* visible: evita romper position:sticky del sidebar */
    overflow-x: visible;
    max-width: 100%;
}

[data-theme="dark"] .product-page {
    --pp-teal: var(--primary-color);
    --pp-teal-2: var(--secondary-color);
    --pp-soft: var(--darker-bg);
    --pp-card: var(--card-bg);
    --pp-text: var(--text-primary);
    --pp-muted: var(--text-secondary);
    --pp-line: var(--border-color);
    background: var(--darker-bg);
}

.product-page__inner {
    max-width: 1180px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

/* Breadcrumbs */
.pp-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.45rem;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
    color: var(--pp-muted);
}

.pp-breadcrumbs a {
    color: var(--pp-muted);
    text-decoration: none;
}

.pp-breadcrumbs a:hover {
    color: var(--pp-teal);
}

.pp-breadcrumbs__sep {
    opacity: 0.5;
}

.pp-breadcrumbs__current {
    color: var(--pp-text);
    font-weight: 600;
}

/* Buttons */
.pp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    height: 46px;
    padding: 0 1.15rem;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pp-btn--primary {
    background: var(--pp-teal);
    color: #fff;
    box-shadow: 0 8px 18px rgba(8, 126, 164, 0.28);
}

.pp-btn--primary:hover {
    background: var(--pp-teal-2);
    color: #fff;
}

.pp-btn--ghost {
    background: var(--pp-card);
    color: var(--pp-text);
    border-color: var(--pp-line);
}

.pp-btn--ghost:hover {
    border-color: var(--pp-teal);
    color: var(--pp-teal);
}

.pp-btn--block {
    width: 100%;
}

.pp-btn.is-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}

/* Hero */
.pp-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.85fr);
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 1.75rem;
    min-width: 0;
    max-width: 100%;
}

.pp-hero__media,
.pp-hero__buy {
    min-width: 0;
    max-width: 100%;
}

.pp-media-card {
    background: #eef2f6;
    border: 1px solid var(--pp-line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.pp-media-card__img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    object-position: center;
    background: #eef2f6;
}

.pp-media-card__placeholder {
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pp-muted);
    background: linear-gradient(135deg, #e8eef4, #dce6ef);
}

.pp-media-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.9rem;
    min-width: 0;
}

.pp-media-actions .pp-btn {
    width: 100%;
    min-width: 0;
    padding: 0 0.75rem;
    box-sizing: border-box;
}

.pp-buy-card {
    background: var(--pp-card);
    border: 1px solid var(--pp-line);
    border-radius: 16px;
    padding: 1.35rem 1.35rem 1.4rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.pp-buy-card__price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
}

.pp-price-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pp-muted);
}

.pp-price-values {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-end;
    gap: 0.45rem;
}

.pp-price-main {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--pp-text);
    line-height: 1;
}

.pp-price-old {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pp-muted);
    text-decoration: line-through;
}

.pp-price-badge {
    display: inline-flex;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    background: #fee2e2;
    color: #b91c1c;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.pp-buy-hint {
    margin: 0.55rem 0 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--pp-muted);
}

.product-page .pricing-sidebar {
    margin-bottom: 1rem;
    border: 1px solid var(--pp-line);
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
}

[data-theme="dark"] .product-page .pricing-sidebar {
    background: rgba(255, 255, 255, 0.03);
}

.product-page .pricing-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--pp-line);
}

.product-page .pricing-sidebar-label {
    font-size: 0.85rem;
    color: var(--pp-muted);
    font-weight: 600;
}

.product-page .pricing-sidebar-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--pp-teal);
}

.product-page .pricing-options {
    display: grid;
    gap: 0;
}

.product-page .pricing-tier-option {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    width: 100%;
    text-align: left;
    padding: 0.9rem 1rem;
    border: none;
    border-top: 1px solid var(--pp-line);
    background: transparent;
    cursor: pointer;
    color: var(--pp-text);
}

.product-page .pricing-tier-option.active {
    background: rgba(10, 155, 184, 0.08);
}

.product-page .pricing-tier-name {
    display: block;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.product-page .pricing-tier-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--pp-muted);
    line-height: 1.4;
}

.product-page .product-purchase {
    margin-top: 0.25rem;
}

.product-page .product-coupon {
    margin-bottom: 0.9rem;
}

.pp-owned {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.05rem;
    border-radius: 12px;
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    text-align: left;
}

.pp-free-msg {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 0.85rem;
    padding: 1rem 1.05rem;
    border-radius: 12px;
    text-align: left;
    font-size: 0.92rem;
    line-height: 1.45;
}

.pp-free-msg--ok {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #047857;
}

.pp-free-msg strong {
    display: block;
    font-size: 1rem;
    color: #065f46;
}

.pp-free-msg span {
    opacity: 0.9;
}

.pp-owned__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #10b981;
    color: #fff;
}

.pp-owned__body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.pp-owned__body strong {
    color: #065f46;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.3;
}

.pp-owned__body a {
    color: #047857;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: underline;
}

.pp-owned__body a:hover {
    color: #065f46;
}

[data-theme="dark"] .pp-owned {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.45);
}

[data-theme="dark"] .pp-owned__body strong {
    color: #6ee7b7;
}

[data-theme="dark"] .pp-owned__body a {
    color: #a7f3d0;
}

.pp-alert {
    margin-top: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-size: 0.88rem;
}

.pp-alert--warn {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    color: #92400e;
}

.pp-reqs {
    margin: 0;
    padding: 1.15rem 1.2rem;
    background: var(--pp-card);
    border-radius: 16px;
    border: 1px solid var(--pp-line);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

[data-theme="dark"] .pp-reqs {
    background: var(--pp-card);
}

.product-page .product-requirements-title {
    margin: 0 0 0.85rem;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--pp-text);
}

.product-page .product-requirements-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.product-page .product-requirements-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    padding-left: 0;
    font-size: 0.9rem;
    color: var(--pp-muted);
    line-height: 1.4;
}

.product-page .product-requirements-list li::before {
    display: none;
}

.pp-reqs__check {
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: var(--pp-teal);
}

.pp-trust {
    list-style: none;
    margin: 1.15rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.pp-trust li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: var(--pp-text);
}

.pp-trust__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pp-teal);
    background: rgba(10, 155, 184, 0.12);
    flex-shrink: 0;
}

.pp-trust__text {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    min-width: 0;
    line-height: 1.3;
}

.pp-trust__text strong {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--pp-text);
}

.pp-trust__text small {
    font-size: 0.78rem;
    color: var(--pp-muted);
}

/* Benefits */
/* Benefits — un solo bloque */
.pp-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 1.75rem;
    background: var(--pp-card);
    border: 1px solid var(--pp-line);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.pp-benefits__item {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 1.25rem 1.2rem;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: relative;
}

.pp-benefits__item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18%;
    bottom: 18%;
    right: 0;
    width: 1px;
    background: var(--pp-line);
}

.pp-benefits__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pp-teal);
    background: rgba(10, 155, 184, 0.12);
    flex-shrink: 0;
}

.pp-benefits__item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
    color: var(--pp-text);
}

.pp-benefits__item p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--pp-muted);
}

/* Main grid — stretch para que el aside tenga altura de fila (sticky) */
.pp-main {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.85fr);
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 2.5rem;
    min-width: 0;
    max-width: 100%;
}

.product-page .product-tabs {
    background: var(--pp-card);
    border: 1px solid var(--pp-line);
    border-radius: 16px;
    padding: 0 0 1.5rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.product-page .product-tabs-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    border-bottom: 1px solid var(--pp-line);
    padding: 0 0.5rem;
    margin: 0;
    background: transparent;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.product-page .product-tabs-nav::-webkit-scrollbar {
    display: none;
}

.product-page .product-tab-link,
.product-page .product-tab-link:hover,
.product-page .product-tab-link:focus-visible,
.product-page .product-tab-link.active,
.product-page .product-tab-link.active:hover {
    appearance: none;
    flex: 1 1 0;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin: 0;
    padding: 1rem 0.5rem;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none;
    transform: none !important;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--pp-text);
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.product-page .product-tab-link__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: block;
    color: inherit;
}

.product-page .product-tab-link:hover {
    color: var(--pp-teal);
}

.product-page .product-tab-link.active,
.product-page .product-tab-link.active:hover {
    color: var(--pp-teal);
    font-weight: 700;
}

/* Línea simple bajo la pestaña activa (como mockup) */
.product-page .product-tab-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--pp-teal);
    border-radius: 2px 2px 0 0;
}

.product-page .product-tab-content {
    display: none;
    padding: 1.5rem 1.4rem 0.25rem;
}

.product-page .product-tab-content.active {
    display: block;
}

.product-page .product-tab-heading {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    font-weight: 800;
}

.product-page .product-description {
    color: var(--pp-text);
    line-height: 1.7;
}

.product-page .product-description h2,
.product-page .product-description h3 {
    margin: 1.4rem 0 0.7rem;
}

.pp-section-title {
    margin: 0 0 1rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--pp-text);
}

.pp-does,
.pp-quick-use {
    margin-top: 1.75rem;
}

.pp-does + .pp-quick-use {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--pp-line);
}

.pp-does__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.pp-does__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--pp-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pp-does__icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--pp-teal);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.pp-quick-use__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.95rem 1.5rem;
    counter-reset: none;
}

.pp-quick-use__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--pp-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pp-quick-use__num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--pp-teal);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 0.05rem;
}

@media (max-width: 700px) {
    .pp-quick-use__list {
        grid-template-columns: 1fr;
    }
}

.product-page .product-comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    border: 1px solid var(--pp-line);
    border-radius: 12px;
    background: transparent;
}

.product-page .product-comparison-table {
    width: 100%;
    max-width: 100%;
    min-width: 0 !important;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.product-page .product-comparison-table th,
.product-page .product-comparison-table td {
    padding: 0.7rem 0.65rem;
    border: 1px solid var(--pp-line);
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    vertical-align: middle;
}

.product-page .product-comparison-table th:first-child,
.product-page .product-comparison-table td:first-child {
    width: 34%;
}

.product-page .product-comparison-table th:not(:first-child),
.product-page .product-comparison-table td:not(:first-child) {
    width: 22%;
    text-align: center;
}

.product-page .product-comparison-table th {
    background: #f8fafc;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--pp-muted);
}

[data-theme="dark"] .product-page .product-comparison-table th {
    background: rgba(255, 255, 255, 0.04);
    color: var(--pp-muted);
}

.pp-empty,
.pp-reviews-meta {
    color: var(--pp-muted);
}

.pp-reviews-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.pp-review-form,
.pp-note,
.review-item {
    background: #f8fafc;
    border: 1px solid var(--pp-line);
    border-radius: 12px;
    padding: 1.15rem;
    margin-bottom: 1rem;
}

[data-theme="dark"] .pp-review-form,
[data-theme="dark"] .pp-note,
[data-theme="dark"] .review-item {
    background: rgba(255, 255, 255, 0.03);
}

.pp-field {
    margin-bottom: 0.9rem;
}

.pp-field label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.pp-field input,
.pp-field textarea {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--pp-line);
    border-radius: 8px;
    background: var(--pp-card);
    color: var(--pp-text);
}

.star-rating-input {
    display: flex;
    gap: 0.25rem;
    font-size: 1.75rem;
    cursor: pointer;
    color: #fbbf24;
}

.star-rating {
    color: #fbbf24;
    margin: 0.25rem 0 0.5rem;
}

.review-item__top {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
    color: var(--pp-muted);
    font-size: 0.85rem;
}

.review-item h4 {
    margin: 0 0 0.35rem;
    color: var(--pp-text);
}

.review-item p {
    margin: 0;
    color: var(--pp-muted);
    line-height: 1.55;
}

.pp-review-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

/* Gallery */
.pp-gallery {
    margin-top: 1.25rem;
    background: var(--pp-card);
    border: 1px solid var(--pp-line);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.pp-gallery__title {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 800;
}

.product-page .gallery-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.85rem;
}

.product-page .thumbnail {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
}

.product-page .thumbnail.active {
    border-color: var(--pp-teal);
}

.product-page .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-page .main-image {
    width: 100%;
    border-radius: 12px;
    display: block;
    cursor: zoom-in;
}

/* Side cards — columna estirada; sticky vive dentro */
.pp-main__side {
    min-width: 0;
}

/* Sidebar completo (4 bloques): sticky hasta productos relacionados */
.pp-main__sticky {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: calc(var(--wptheme-adminbar-offset, 0px) + 3.75rem);
    z-index: 4;
    align-self: start;
    width: 100%;
    max-height: calc(100vh - var(--wptheme-adminbar-offset, 0px) - 4.25rem);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
}

@media (max-width: 900px) {
    .pp-main__sticky {
        position: static;
        max-height: none;
        overflow: visible;
    }
}

.pp-info-card,
.pp-help-card,
.pp-secure-card {
    background: var(--pp-card);
    border: 1px solid var(--pp-line);
    border-radius: 16px;
    padding: 1.2rem 1.25rem;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.pp-info-card h3,
.pp-help-card h3 {
    margin: 0 0 0.9rem;
    font-size: 1.05rem;
    font-weight: 800;
}

.pp-meta {
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.pp-meta > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid var(--pp-line);
    font-size: 0.9rem;
}

.pp-meta > div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pp-meta dt {
    color: var(--pp-text);
    font-weight: 700;
}

.pp-meta dd {
    margin: 0;
    font-weight: 400;
    color: var(--pp-muted);
    text-align: right;
    overflow-wrap: anywhere;
    word-break: break-word;
    min-width: 0;
}

.pp-meta a {
    color: var(--pp-teal);
}

.pp-help-card {
    position: relative;
    overflow: hidden;
}

.pp-help-card__body {
    position: relative;
    z-index: 1;
}

.pp-help-card h3 {
    margin: 0 0 0.45rem;
}

.pp-help-card p {
    margin: 0 0 1.05rem;
    color: var(--pp-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 17rem;
}

.pp-help-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    max-width: 100%;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    background: #fff;
    color: var(--pp-teal);
    border: 1px solid rgba(10, 155, 184, 0.18);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.pp-help-card__btn span {
    min-width: 0;
}

.pp-help-card__btn:hover {
    border-color: var(--pp-teal);
    box-shadow: 0 8px 18px rgba(8, 126, 164, 0.14);
    color: var(--pp-teal-2);
}

.pp-help-card__btn-icon {
    flex-shrink: 0;
}

.pp-help-card__btn-arrow {
    font-weight: 700;
    line-height: 1;
}

.pp-help-card__art {
    position: absolute;
    right: -0.35rem;
    bottom: -0.65rem;
    width: 7.5rem;
    height: 7.5rem;
    color: rgba(100, 116, 139, 0.16);
    pointer-events: none;
    z-index: 0;
}

.pp-help-card__art svg {
    display: block;
    width: 100%;
    height: 100%;
}

html[data-theme="dark"] .pp-help-card__btn {
    background: var(--pp-card);
    border-color: var(--pp-line);
}

html[data-theme="dark"] .pp-help-card__art {
    color: rgba(148, 163, 184, 0.18);
}

.pp-secure-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.15rem 1.25rem;
    box-shadow: none;
}

.pp-secure-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pp-teal);
    flex-shrink: 0;
    line-height: 0;
}

.pp-secure-card__icon svg {
    width: 38px;
    height: 38px;
}

.pp-secure-card__text {
    min-width: 0;
}

.pp-secure-card strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--pp-teal);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
}

.pp-secure-card p {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.45;
}

html[data-theme="dark"] .pp-secure-card {
    background: rgba(148, 163, 184, 0.08);
    border-color: var(--pp-line);
}

html[data-theme="dark"] .pp-secure-card p {
    color: var(--pp-muted);
}

/* Related */
.pp-related {
    margin-top: 2.5rem;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.pp-related__head {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.pp-related__head h2 {
    margin: 0;
    grid-column: 2;
    font-size: 1.45rem;
    font-weight: 800;
    text-align: center;
}

.pp-related__nav {
    grid-column: 3;
    justify-self: end;
    display: inline-flex;
    gap: 0.45rem;
}

.pp-related__nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--pp-line);
    background: var(--pp-card);
    color: var(--pp-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.pp-related__nav-btn:hover:not(:disabled) {
    border-color: var(--pp-teal);
    color: var(--pp-teal);
}

.pp-related__nav-btn:disabled {
    opacity: 0.4;
    cursor: default;
}

.pp-related__viewport {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.pp-related__track {
    display: flex;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    transition: transform 0.35s ease;
    will-change: transform;
    box-sizing: border-box;
}

.pp-related__page {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    box-sizing: border-box;
    overflow: hidden;
}

.product-page .shop-card {
    background: var(--pp-card, #fff);
}

.product-page .shop-card__details {
    background: #0a9bb8;
    color: #fff !important;
}

.product-page .shop-card__details:hover {
    background: #087ea4;
    color: #fff !important;
}

.product-page .shop-card__preview {
    background: #fff;
    border-color: #e6edf5;
    color: #64748b !important;
}

.product-page .shop-card__badge {
    color: #fff !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .pp-hero,
    .pp-main {
        grid-template-columns: 1fr;
    }

    .pp-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pp-benefits__item:nth-child(2n)::after {
        display: none;
    }

    .pp-benefits__item:nth-child(-n+2) {
        border-bottom: 1px solid var(--pp-line);
    }

    .pp-related__page {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .product-page {
        padding: 1rem 0 3rem;
        overflow-x: hidden;
    }

    .product-page__inner {
        padding-left: 14px;
        padding-right: 14px;
    }

    .pp-benefits {
        grid-template-columns: 1fr;
    }

    .pp-benefits__item:not(:last-child)::after {
        display: none;
    }

    .pp-benefits__item:not(:last-child) {
        border-bottom: 1px solid var(--pp-line);
    }

    .pp-media-actions {
        grid-template-columns: 1fr 1fr;
        gap: 0.55rem;
    }

    .pp-media-actions .pp-btn {
        height: 44px;
        font-size: 0.82rem;
        gap: 0.35rem;
        padding: 0 0.55rem;
    }

    .pp-media-actions .pp-btn svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .pp-buy-card {
        padding: 1.1rem 1rem 1.15rem;
    }

    .pp-main__side,
    .pp-info-card,
    .pp-help-card,
    .pp-secure-card,
    .pp-reqs {
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .pp-help-card {
        padding: 1.1rem 1rem;
    }

    .pp-help-card p {
        max-width: none;
    }

    .pp-help-card__btn {
        width: 100%;
        justify-content: center;
        font-size: 0.84rem;
        padding: 0.75rem 0.7rem;
    }

    .pp-help-card__art {
        width: 5.5rem;
        height: 5.5rem;
        opacity: 0.85;
    }

    .pp-secure-card {
        align-items: flex-start;
        padding: 1rem;
        gap: 0.75rem;
    }

    .pp-secure-card__icon svg {
        width: 32px;
        height: 32px;
    }

    .product-page .product-comparison-table {
        font-size: 0.72rem;
    }

    .product-page .product-comparison-table th,
    .product-page .product-comparison-table td {
        padding: 0.55rem 0.35rem;
    }

    .product-page .product-tab-content {
        padding: 1.15rem 0.95rem 0.25rem;
    }

    .pp-related__page {
        grid-template-columns: 1fr;
    }

    .pp-related__head {
        grid-template-columns: 1fr auto;
    }

    .pp-related__head h2 {
        grid-column: 1;
        text-align: left;
        font-size: 1.2rem;
    }

    .pp-related__nav {
        grid-column: 2;
    }

    .product-page .product-tab-link {
        flex: 1 0 auto;
        padding: 0.8rem 0.45rem;
        font-size: 0.72rem;
        gap: 0.28rem;
    }

    .product-page .product-tab-link__icon {
        width: 15px;
        height: 15px;
    }

    .pp-breadcrumbs__current {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .product-page .pricing-tier-desc {
        font-size: 0.75rem;
    }
}
