/* Pagini produs individuale — link din produse.html */
:root {
    --ra-navy: #0a1f3d;
    --ra-navy-mid: #132847;
    --ra-cyan: #0891b2;
    --ra-gray-bg: #f0f4f8;
    --ra-text: #1a2332;
    --ra-muted: #5c6b7a;
}

.pd-page {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--ra-text);
    background: #fff;
    margin: 0;
    overflow-x: hidden;
}

.pd-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.pd-skip:focus {
    position: fixed;
    left: 12px;
    top: 12px;
    z-index: 10001;
    padding: 12px 16px;
    background: var(--ra-navy);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
}

.pd-skip:not(:focus) {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.pd-header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(10, 31, 61, 0.08);
    transition: box-shadow 0.25s ease;
}

.pd-header.scrolled {
    box-shadow: 0 8px 32px rgba(10, 31, 61, 0.08);
}

.pd-header-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.pd-logo img {
    height: 72px;
    width: auto;
    max-width: min(340px, 46vw);
    object-fit: contain;
    display: block;
}

.pd-nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 14px;
    align-items: center;
    justify-content: flex-end;
}

.pd-nav a {
    text-decoration: none;
    color: var(--ra-navy);
    font-weight: 500;
    font-size: 0.86rem;
}

.pd-nav a:hover {
    color: var(--ra-cyan);
}

.pd-nav-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--ra-cyan), #0e7490);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.82rem;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(8, 145, 178, 0.35);
}

.pd-breadcrumb {
    padding: 100px 0 16px;
    background: var(--ra-gray-bg);
    font-size: 0.88rem;
    color: var(--ra-muted);
}

.pd-breadcrumb a {
    color: var(--ra-cyan);
    text-decoration: none;
    font-weight: 600;
}

.pd-breadcrumb a:hover {
    text-decoration: underline;
}

.pd-hero {
    background: linear-gradient(165deg, var(--ra-navy) 0%, var(--ra-navy-mid) 50%, #1e4976 100%);
    color: #fff;
    padding: 24px 0 40px;
    text-align: center;
}

.pd-hero h1 {
    font-size: clamp(1.4rem, 3.5vw, 1.85rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 12px;
}

.pd-hero-lead {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.pd-main {
    padding: 40px 0 48px;
    background: var(--ra-gray-bg);
}

.pd-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(10, 31, 61, 0.08);
    box-shadow: 0 12px 40px rgba(10, 31, 61, 0.06);
}

.pd-card h2 {
    font-size: 1.1rem;
    color: var(--ra-navy);
    margin: 28px 0 14px;
}

.pd-card h2:first-of-type {
    margin-top: 20px;
}

.pd-intro {
    font-size: 1.02rem;
    color: var(--ra-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.pd-product-shot {
    margin: 24px 0 8px;
    text-align: center;
}

.pd-product-shot img {
    max-width: 100%;
    height: auto;
    max-height: min(420px, 55vh);
    width: auto;
    border-radius: 12px;
    border: 1px solid rgba(10, 31, 61, 0.08);
    box-shadow: 0 10px 32px rgba(10, 31, 61, 0.1);
    object-fit: contain;
    vertical-align: middle;
}

.pd-card h3.pd-subh {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--ra-navy);
    margin: 22px 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(10, 31, 61, 0.1);
}

.pd-card h2 + h3.pd-subh {
    margin-top: 14px;
}

.pd-footnote {
    font-size: 0.82rem;
    color: var(--ra-muted);
    margin-top: 16px;
    line-height: 1.55;
}

.pd-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pd-benefits li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    font-size: 0.96rem;
    color: var(--ra-muted);
    line-height: 1.55;
}

.pd-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ra-cyan);
}

.pd-price-box {
    margin-top: 28px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(8, 145, 178, 0.08);
    border: 1px solid rgba(8, 145, 178, 0.2);
    text-align: center;
}

.pd-price-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ra-muted);
}

.pd-price-main {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ra-navy);
    margin: 6px 0 10px;
}

.pd-price-foot {
    font-size: 0.78rem;
    color: var(--ra-muted);
    line-height: 1.45;
    font-style: italic;
}

.pd-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
}

.pd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.pd-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.pd-btn-primary {
    background: linear-gradient(135deg, var(--ra-cyan), #0e7490);
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(8, 145, 178, 0.28);
}

.pd-btn-secondary {
    background: #fff;
    color: var(--ra-navy) !important;
    border: 2px solid rgba(10, 31, 61, 0.18);
}

.pd-btn-secondary:hover {
    border-color: var(--ra-cyan);
    color: var(--ra-cyan) !important;
}

.pd-back-all {
    text-align: center;
    padding: 8px 0 28px;
    background: var(--ra-gray-bg);
}

.pd-back-all a {
    font-size: 0.9rem;
    color: var(--ra-muted);
    text-decoration: none;
    font-weight: 500;
}

.pd-back-all a:hover {
    color: var(--ra-cyan);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .pd-logo img {
        height: 58px;
        max-width: min(220px, 42vw);
    }

    .pd-nav ul {
        max-width: 48vw;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }

    .pd-breadcrumb {
        padding-top: 92px;
    }
}
