:root {
    --tx-gold: #b79248;
    --tx-green: #2d4639;
    --tx-cream: #fff8f3;
    --tx-sand: #f3e8d8;
    --tx-ink: #1f2a24;
}

.treatments-page {
    background:
        radial-gradient(ellipse 80% 50% at 10% 0%, rgba(183, 146, 72, 0.12), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 20%, rgba(45, 70, 57, 0.08), transparent 50%),
        var(--tx-cream);
}

.treatments-breadcrumb.breadcrumb-wrapper {
    background-size: cover;
    background-position: center;
}

.tx-intro {
    padding: 72px 0 28px;
    text-align: center;
}

.tx-intro .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--tx-green);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 18px;
}

.tx-intro .eyebrow img {
    width: 28px;
    height: auto;
}

.tx-intro h2 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    color: var(--tx-ink);
    line-height: 1.15;
    margin-bottom: 18px;
}

.tx-intro h2 .accent {
    color: var(--tx-gold);
    font-style: italic;
}

.tx-intro p {
    max-width: 720px;
    margin: 0 auto;
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.75;
    color: #555;
}

.tx-jump {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 8px 0 48px;
    position: sticky;
    top: 124px;
    z-index: 20;
}

.tx-jump a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(183, 146, 72, 0.35);
    background: rgba(255, 248, 243, 0.92);
    backdrop-filter: blur(8px);
    color: var(--tx-green);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background .25s, color .25s, border-color .25s, transform .2s;
}

.tx-jump a:hover,
.tx-jump a.is-active {
    background: var(--tx-green);
    border-color: var(--tx-green);
    color: #fff;
    transform: translateY(-1px);
}

.tx-category {
    padding: 0 0 72px;
}

.tx-category-shell {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.3fr);
    gap: 28px 40px;
    align-items: stretch;
    background: #fff;
    border: 1px solid rgba(183, 146, 72, 0.18);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(45, 70, 57, 0.06);
}

.tx-category-shell.is-laser {
    grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.9fr);
}

.tx-category-shell.is-laser .tx-category-visual {
    order: 2;
}

.tx-category-shell.is-laser .tx-category-body {
    order: 1;
}

.tx-category-visual {
    position: relative;
    min-height: 420px;
    background: #2d4639;
    overflow: hidden;
}

.tx-category-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transform: scale(1.02);
    transition: transform 1.1s ease;
}

.tx-category-shell:hover .tx-category-visual img {
    transform: scale(1.08);
}

.tx-category-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(45, 70, 57, 0.15) 0%, rgba(45, 70, 57, 0.55) 100%);
    pointer-events: none;
}

.tx-category-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    color: #fff;
}

.tx-category-badge .num {
    display: block;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.tx-category-badge h3 {
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 700;
    margin: 0;
    max-width: 14ch;
    color: #fff;
}

.tx-category-body {
    padding: 42px 40px 42px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tx-category-body .lead {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 28px;
    max-width: 42ch;
}

.tx-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.tx-list li {
    margin: 0;
}

.tx-item {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: linear-gradient(90deg, rgba(255, 248, 243, 0.95), #fff);
    border: 1px solid rgba(183, 146, 72, 0.12);
    transition: border-color .25s, transform .25s, box-shadow .25s;
    text-decoration: none;
    color: inherit;
}

.tx-item:hover {
    border-color: rgba(183, 146, 72, 0.45);
    transform: translateX(4px);
    box-shadow: 0 10px 24px rgba(183, 146, 72, 0.1);
}

.tx-item .idx {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 13px;
    color: var(--tx-green);
    background: rgba(183, 146, 72, 0.14);
}

.tx-item .label {
    font-size: clamp(15px, 1.3vw, 17px);
    font-weight: 700;
    color: var(--tx-ink);
    line-height: 1.35;
    margin: 0;
}

.tx-item .mark {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--tx-gold);
    opacity: 0.75;
}

.tx-cta {
    padding: 20px 0 100px;
}

.tx-cta-panel {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: clamp(36px, 5vw, 64px);
    background:
        linear-gradient(135deg, rgba(45, 70, 57, 0.94), rgba(45, 70, 57, 0.82)),
        url('https://res.cloudinary.com/dexxgcc4m/image/upload/v1786378011/Change_color_to_beige_202608101706_vu6r04.jpg') center/cover;
    color: #fff;
    text-align: center;
}

.tx-cta-panel h2 {
    color: #fff;
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 14px;
}

.tx-cta-panel p {
    max-width: 560px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.7;
}

.tx-cta-panel .theme-btn-main {
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .tx-category-shell,
    .tx-category-shell.is-laser {
        grid-template-columns: 1fr;
    }

    .tx-category-shell.is-laser .tx-category-visual,
    .tx-category-shell.is-laser .tx-category-body {
        order: initial;
    }

    .tx-category-visual {
        min-height: 280px;
    }

    .tx-category-body {
        padding: 28px 22px 32px;
    }

    .tx-jump {
        top: 72px;
        padding-bottom: 32px;
    }
}

@media (max-width: 575.98px) {
    .tx-intro {
        padding: 48px 0 18px;
    }

    .tx-item {
        grid-template-columns: 36px 1fr;
        gap: 12px;
        padding: 12px 12px;
    }

    .tx-item .mark {
        display: none;
    }

    .tx-item .idx {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .tx-category-visual {
        min-height: 220px;
    }

    .tx-jump a {
        width: 100%;
        justify-content: center;
    }
}
