:root {
    --pink: #e579ad;
    --pink-dark: #d1659a;
    --pink-soft: #fdf0f6;
    --pink-mid: #f9d6ea;
    --gold: #c9972a;
    --gold-soft: #fdf6e8;
    --green: #1a8a54;
    --green-soft: #e8f8f0;
    --purple: #7c3aed;
    --purple-soft: #f3eeff;
    --text: #111;
    --muted: #6b7280;
    --border: #ebebeb;
    --white: #fff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: #fafafa;
    color: var(--text);
}

/* ─── PAGE WRAPPER ─── */
.pkg-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 24px 100px;
}

/* ─── SECTION HEADER ─── */
.pkg-header {
    text-align: center;
    margin-bottom: 60px;
}

.pkg-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pink-soft);
    border: 1.5px solid var(--pink-mid);
    color: var(--pink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.pkg-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.1;
    letter-spacing: -.5px;
    color: var(--text);
    margin-bottom: 16px;
}

.pkg-title em {
    font-style: italic;
    color: var(--pink);
}

.pkg-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ─── FILTER PILLS ─── */
.pkg-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.pkg-filter {
    border: 1.5px solid var(--border);
    background: var(--white);
    border-radius: 999px;
    padding: 8px 20px;
    font-size: 13.5px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    color: var(--muted);
    cursor: pointer;
    transition: all .2s;
}

.pkg-filter:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.pkg-filter.active {
    background: var(--text);
    border-color: var(--text);
    color: var(--white);
}

/* ─── PACKAGE CARD ─── */
.pkg-card {
    display: grid;
    grid-template-columns: 420px 1fr;
    min-height: 320px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .05), 0 12px 40px rgba(0, 0, 0, .07);
    margin-bottom: 28px;
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
}

.pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08), 0 24px 60px rgba(229, 121, 173, .14);
}

/* Alternating: even cards flip image to right */
.pkg-card.flip {
    grid-template-columns: 1fr 420px;
}

.pkg-card.flip .pkg-img-col {
    order: 2;
}

.pkg-card.flip .pkg-content-col {
    order: 1;
}

/* Image column */
.pkg-img-col {
    position: relative;
    overflow: hidden;
}

.pkg-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.pkg-card:hover .pkg-img-col img {
    transform: scale(1.04);
}

/* Tier badge on image */
.pkg-tier {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pkg-tier.starter {
    background: rgba(26, 138, 84, .9);
    color: #fff;
}

.pkg-tier.popular {
    background: rgba(229, 121, 173, .95);
    color: #fff;
}

.pkg-tier.premium {
    background: rgba(201, 151, 42, .92);
    color: #fff;
}

.pkg-tier.ultimate {
    background: rgba(124, 58, 237, .9);
    color: #fff;
}

/* Saving tag on image */
.pkg-saving-tag {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: #fff;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .15);
}

.pkg-saving-tag span {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--green);
    line-height: 1.2;
}

/* Content column */
.pkg-content-col {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.pkg-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 10px;
}

.pkg-name {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 10px;
}

.pkg-tagline {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

/* Included treatments list */
.pkg-includes-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #aaa;
    margin-bottom: 10px;
}

.pkg-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 24px;
}

.pkg-includes li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
}

.pkg-includes li i {
    font-size: 13px;
    color: var(--pink);
    flex-shrink: 0;
}

/* Meta row */
.pkg-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.pkg-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 999px;
}

.pkg-meta-item i {
    font-size: 12px;
    color: var(--pink);
}

/* Price + CTA row */
.pkg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    flex-wrap: wrap;
}

.pkg-price-block {}

.pkg-price {
    font-family: 'DM Serif Display', serif;
    font-size: 30px;
    color: var(--text);
    line-height: 1;
}

.pkg-was {
    font-size: 12px;
    color: var(--muted);
    text-decoration: line-through;
    margin-left: 6px;
}

.pkg-price-note {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 3px;
}

.pkg-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 13px 24px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background .2s, transform .15s;
    white-space: nowrap;
    text-decoration: none;
}

.pkg-cta:hover {
    background: var(--pink-dark);
    transform: scale(1.03);
}

.pkg-cta i {
    font-size: 14px;
}

/* Gold CTA for premium */
.pkg-cta.gold {
    background: var(--gold);
}

.pkg-cta.gold:hover {
    background: #b8861f;
}

/* Purple CTA for ultimate */
.pkg-cta.purple {
    background: var(--purple);
}

.pkg-cta.purple:hover {
    background: #6d28d9;
}

/* ─── BOTTOM BANNER ─── */
.pkg-banner {
    margin-top: 60px;
    background: linear-gradient(135deg, #1a0a12 0%, #3d1525 50%, #1a0a12 100%);
    border-radius: 24px;
    padding: 52px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.pkg-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 121, 173, .25), transparent 70%);
}

.pkg-banner::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 20%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 121, 173, .15), transparent 70%);
}

.pkg-banner-left {
    position: relative;
    z-index: 1;
}

.pkg-banner-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 10px;
}

.pkg-banner-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(24px, 3vw, 36px);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
}

.pkg-banner-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    max-width: 440px;
    line-height: 1.6;
}

.pkg-banner-right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.pkg-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
    text-decoration: none;
}

.pkg-banner-cta:hover {
    background: var(--pink-dark);
}

.pkg-banner-cta.outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .85);
}

.pkg-banner-cta.outline:hover {
    border-color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .06);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {

    .pkg-card,
    .pkg-card.flip {
        grid-template-columns: 1fr;
    }

    .pkg-card.flip .pkg-img-col {
        order: 0;
    }

    .pkg-card.flip .pkg-content-col {
        order: 0;
    }

    .pkg-img-col {
        height: 260px;
    }

    .pkg-content-col {
        padding: 28px 28px 32px;
    }

    .pkg-banner {
        padding: 40px 32px;
    }
}

@media (max-width: 600px) {
    .pkg-page {
        padding: 48px 16px 72px;
    }

    .pkg-content-col {
        padding: 22px 20px 26px;
    }

    .pkg-img-col {
        height: 220px;
    }

    .pkg-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .pkg-cta {
        width: 100%;
        justify-content: center;
    }

    .pkg-banner {
        padding: 32px 22px;
    }

    .pkg-banner-cta {
        width: 100%;
        justify-content: center;
    }
}
