/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 1rem 0;
    font-size: .85rem;
    color: #666;
    background: #f9f9f9;
}
.breadcrumbs__link {
    color: #2e7d32;
    text-decoration: none;
}
.breadcrumbs__link:hover {
    text-decoration: underline;
}
.breadcrumbs__sep {
    margin: 0 8px;
    color: #999;
}
.breadcrumbs__current {
    color: #333;
}

/* ===== PRICE HERO ===== */
.price-hero {
    padding: 2.5rem 0 2rem;
}
.price-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    align-items: center;
    gap: 24px;
}
.price-hero__content {
    text-align: left;
}
.price-hero__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1rem;
}
.price-hero__subtitle {
    font-size: 1.05rem;
    color: #555;
    max-width: 600px;
    margin: 0;
    line-height: 1.6;
}
.price-hero__media {
    display: flex;
    justify-content: center;
    align-items: center;
}
.price-hero__img {
    display: block;
    width: min(100%, 260px);
    height: auto;
    max-height: 340px;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(0,0,0,.14));
}

/* ===== PRICE CARDS ===== */
.price-cards {
    padding: 2rem 0 3rem;
}
.price-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.price-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    position: relative;
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,.1);
}
.price-card--featured {
    border-color: #2e7d32;
    box-shadow: 0 4px 20px rgba(46,125,50,.15);
    transform: scale(1.03);
}
.price-card--featured:hover {
    transform: scale(1.03) translateY(-4px);
}
.price-card__badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #2e7d32;
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: 6px 24px;
    border-radius: 0 0 12px 12px;
    letter-spacing: 1px;
}
.price-card__header {
    padding: 2rem 1.5rem 0;
    text-align: center;
}
.price-card__name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 0.5rem;
}
.price-card__body {
    padding: 1rem 1.5rem 2rem;
    text-align: center;
}
.price-card__prices {
    margin-bottom: 0.8rem;
}
.price-card__old {
    display: block;
    font-size: .95rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 4px;
}
.price-card__current {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a2e;
}
.price-card__current--accent {
    color: #c62828;
    font-size: 2.8rem;
}
.price-card__desc {
    font-size: .9rem;
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}
.price-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}
.price-card__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: .9rem;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}
.price-card__features li:last-child {
    border-bottom: none;
}
.price-card__btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
}
.price-card__note {
    display: block;
    margin-top: 8px;
    font-size: .75rem;
    color: #999;
}

/* ===== PRICE COMPARE ===== */
.price-compare {
    padding: 3rem 0;
    background: #f9f9f9;
}
.price-compare__table-wrap {
    overflow-x: auto;
    margin-top: 2rem;
}
.price-compare__table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.price-compare__table thead {
    background: #1a3a4a;
    color: #fff;
}
.price-compare__table th {
    padding: 16px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    text-align: center;
}
.price-compare__table th:first-child {
    text-align: left;
}
.price-compare__th-original {
    background: #2e7d32;
}
.price-compare__th-fake {
    background: #c62828;
}
.price-compare__table td {
    padding: 14px 20px;
    font-size: .9rem;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}
.price-compare__table td:nth-child(2),
.price-compare__table td:nth-child(3) {
    text-align: center;
}
.price-compare__table tr:last-child td {
    border-bottom: none;
}
.price-compare__highlight {
    color: #2e7d32;
    font-weight: 700;
}
.price-compare__negative {
    color: #999;
}
.price-compare__check {
    color: #2e7d32;
    font-size: 1.2rem;
    font-weight: 700;
}
.price-compare__cross {
    color: #c62828;
    font-size: 1.2rem;
    font-weight: 700;
}

/* ===== PRICE NOT SOLD ===== */
.price-not-sold {
    padding: 3rem 0;
    text-align: center;
}
.price-not-sold__grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.price-not-sold__item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    transition: box-shadow .3s;
}
.price-not-sold__item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
}
.price-not-sold__icon {
    font-size: 1.3rem;
}
.price-not-sold__note {
    margin-top: 1.5rem;
    font-size: .95rem;
    color: #888;
    font-style: italic;
}

/* ===== PRICE WHY ===== */
.price-why {
    padding: 3rem 0;
}
.price-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 2rem;
}
.price-why__card {
    background: #fff;
    border: 1px solid #e8f5e9;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
}
.price-why__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}
.price-why__icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.price-why__name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.8rem;
}
.price-why__text {
    font-size: .9rem;
    color: #666;
    line-height: 1.6;
}

/* ===== PRICE CTA ===== */
.price-cta {
    background: #1a3a4a;
    padding: 3rem 0;
    text-align: center;
}
.price-cta__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.8rem;
}
.price-cta__text {
    font-size: 1rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 1.5rem;
}
.price-cta__btn {
    display: inline-block;
    padding: 16px 48px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
}

/* ===== ACTIVE NAV LINK ===== */
.header__nav-link--active {
    color: #2e7d32 !important;
    border-bottom-color: #2e7d32 !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .price-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .price-hero__content {
        text-align: center;
    }
    .price-hero__subtitle {
        margin: 0 auto;
    }
    .price-hero__media {
        order: -1;
        margin-bottom: 0.5rem;
    }
    .price-hero__img {
        width: min(100%, 210px);
        max-height: 240px;
    }
    .price-hero__title {
        font-size: 1.6rem;
    }
    .price-cards__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .price-card--featured {
        transform: none;
    }
    .price-card--featured:hover {
        transform: translateY(-4px);
    }
    .price-why__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .price-cta__title {
        font-size: 1.5rem;
    }
    .price-compare__table th,
    .price-compare__table td {
        padding: 10px 12px;
        font-size: .8rem;
    }
}

/* ===== TRUST PAGE OVERRIDES ===== */
.breadcrumbs {
    background: transparent;
    border-bottom: 1px solid rgba(31, 90, 75, 0.08);
    padding: 1.15rem 0;
}

.breadcrumbs__current {
    color: var(--text-main);
}

.price-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand-strong) 0%, var(--brand) 66%, #2d7967 100%);
    border-radius: 0 0 34px 34px;
    box-shadow: var(--shadow-lg);
    color: #fff;
    padding: 4rem 0 4.5rem;
}

.price-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 26%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 54%);
    pointer-events: none;
}

.price-hero .container {
    position: relative;
}

.price-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 290px);
    gap: 20px;
}

.price-hero__title,
.price-hero__subtitle {
    color: #fff;
}

.price-hero__title {
    margin-bottom: 1rem;
}

.price-hero__subtitle {
    max-width: 720px;
    opacity: 0.9;
}

.price-hero__img {
    max-height: 320px;
    filter: drop-shadow(0 22px 30px rgba(6, 28, 24, 0.28));
}

.price-cards {
    padding-top: 0;
    margin-top: -2rem;
    position: relative;
    z-index: 1;
}

.price-card {
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
}

.price-card:hover {
    box-shadow: var(--shadow-md);
}

.price-card--featured {
    border-color: rgba(196, 145, 66, 0.35);
    box-shadow: 0 24px 55px rgba(24, 51, 59, 0.14);
}

.price-card__badge {
    background: linear-gradient(135deg, #c48a33 0%, #dfab58 100%);
    color: #5e4117;
    border-radius: 0 0 16px 16px;
    letter-spacing: 0.06em;
}

.price-card__header {
    padding-top: 2.3rem;
}

.price-card__name {
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.price-card__current {
    color: var(--brand-strong);
    letter-spacing: -0.04em;
}

.price-card__current--accent {
    color: var(--brand);
}

.price-card__desc,
.price-card__note,
.price-why__text,
.price-not-sold__note {
    color: var(--text-muted);
}

.price-card__features li {
    border-bottom-color: rgba(31, 90, 75, 0.08);
}

.price-compare,
.price-not-sold,
.price-why {
    background: transparent;
}

.price-compare__table {
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow-md);
}

.price-compare__table thead {
    background: linear-gradient(135deg, var(--brand-strong) 0%, var(--brand) 100%);
}

.price-compare__th-original {
    background: rgba(31, 90, 75, 0.16);
}

.price-compare__th-fake {
    background: rgba(179, 75, 75, 0.28);
}

.price-compare__table td {
    color: var(--text-main);
}

.price-compare__table tbody tr:nth-child(even) td {
    background: #f8fbf9;
}

.price-not-sold__item,
.price-why__card {
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
}

.price-not-sold__item {
    background: rgba(255, 255, 255, 0.92);
    padding: 16px 26px;
}

.price-why__card {
    background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
    padding: 2.2rem 1.8rem;
}

.price-why__name {
    color: var(--text-main);
}

.price-cta {
    background: transparent;
}

.price-cta .container {
    background: linear-gradient(135deg, var(--brand-strong) 0%, var(--brand) 70%, #2d7967 100%);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    padding: 3rem 2rem;
}

@media (max-width: 768px) {
    .price-hero {
        border-radius: 0 0 26px 26px;
        padding: 3rem 0 3.5rem;
    }

    .price-cards {
        margin-top: -1.4rem;
    }

    .price-card {
        border-radius: 24px;
    }

    .price-cta .container {
        border-radius: 24px;
        padding: 2.3rem 1.2rem;
    }
}
