/* extracted from templates/packages.html */
body{
    background:#fff8fb;
}
.packages-public-page{
    min-height:80vh;
    background:
        radial-gradient(circle at top right, rgba(226,93,151,.16), transparent 34%),
        radial-gradient(circle at bottom left, rgba(0,0,0,.06), transparent 34%),
        #fff8fb;
}
.packages-hero{
    padding:64px 0 30px;
    text-align:center;
}
.hero-pill{
    display:inline-flex;
    padding:9px 16px;
    border-radius:999px;
    background:#ffe3ef;
    color:#b71961;
    font-weight:900;
    margin-bottom:16px;
}
.packages-hero h1{
    font-weight:950;
    font-size:clamp(2rem,4vw,3.4rem);
    margin-bottom:12px;
}
.packages-hero p{
    color:#666;
    font-size:1.05rem;
}
.packages-content{
    padding-bottom:70px;
}
.filter-row{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:28px;
}
.filter-pill{
    padding:10px 18px;
    border-radius:999px;
    border:1px solid rgba(0,0,0,.08);
    background:rgba(255,255,255,.72);
    font-weight:900;
}
.filter-pill.active{
    background:#121826;
    color:#fff;
}
.package-card-clean{
    height:100%;
    padding:32px;
    border-radius:34px;
    background:rgba(255,255,255,.80);
    border:1px solid rgba(226,93,151,.14);
    box-shadow:0 24px 70px rgba(0,0,0,.08);
    backdrop-filter:blur(16px);
    display:flex;
    flex-direction:column;
}
.package-type{
    align-self:flex-start;
    padding:8px 15px;
    border-radius:999px;
    background:#ffe3ef;
    color:#b71961;
    font-weight:950;
    margin-bottom:18px;
}
.package-card-clean h2{
    font-weight:950;
    margin-bottom:12px;
}
.pkg-desc{
    color:#666;
    line-height:1.9;
    min-height:58px;
}
.price-stack{
    margin:18px 0;
    display:flex;
    flex-direction:column;
    gap:10px;
}
.price-main{
    display:inline-flex;
    align-self:flex-start;
    gap:8px;
    align-items:center;
    padding:12px 18px;
    border-radius:999px;
    background:#121826;
    color:#fff;
    font-weight:950;
    box-shadow:0 12px 30px rgba(0,0,0,.14);
}
.price-main span{
    font-size:.86rem;
}
.price-usd{
    display:inline-flex;
    align-self:flex-start;
    padding:8px 15px;
    border-radius:999px;
    background:#fff;
    color:#b71961;
    font-weight:950;
    border:1px solid rgba(226,93,151,.18);
}
.feature-list{
    padding:0;
    margin:8px 0 26px;
    list-style:none;
    line-height:2.1;
    font-weight:850;
}
.feature-list li{
    position:relative;
    padding-right:30px;
}
.feature-list li:before{
    content:"✓";
    position:absolute;
    right:0;
    top:4px;
    width:22px;
    height:22px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:linear-gradient(135deg,#e0649a,#9b285c);
    color:#fff;
    font-size:13px;
}
.select-package-btn{
    margin-top:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:56px;
    border-radius:999px;
    background:linear-gradient(135deg,#e06b9d,#892b5d);
    color:#fff !important;
    font-weight:950;
    font-size:1.05rem;
    box-shadow:0 16px 36px rgba(137,43,93,.22);
    text-decoration:none;
}
.select-package-btn:hover{
    transform:translateY(-2px);
}
.empty-packages{
    padding:26px;
    border-radius:24px;
    background:#fff;
    text-align:center;
    font-weight:900;
}
@media(max-width:768px){
    .packages-hero{
        padding:38px 0 22px;
    }
    .package-card-clean{
        padding:24px;
        border-radius:26px;
    }
}
