.home-promotions{
    position:relative;
    padding:96px 0;
    overflow:hidden;
}

.home-promotions::before{
    content:"";
    position:absolute;
    left:50%;
    top:20px;
    width:min(980px,86vw);
    height:280px;
    border-radius:999px;
    transform:translateX(-50%);
    background:
        radial-gradient(circle at 50% 40%,rgba(255,122,0,.18),transparent 68%);
    filter:blur(28px);
    opacity:.78;
    pointer-events:none;
}

.home-promotions::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:.28;
    background:
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px);
    background-size:56px 56px;
    mask-image:radial-gradient(circle at 50% 20%,#000 0%,transparent 72%);
}

.promo-shell{
    position:relative;
    z-index:1;
    width:min(1180px,calc(100% - 34px));
    margin:0 auto;
}

.promo-heading{
    max-width:780px;
    margin:0 auto 30px;
    text-align:center;
}

.promo-eyebrow{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:max-content;
    max-width:100%;
    margin:0 auto 14px;
    padding:8px 13px;
    border-radius:999px;
    color:#ffb36b;
    background:rgba(255,122,0,.12);
    border:1px solid rgba(255,122,0,.27);
    box-shadow:0 0 28px rgba(255,122,0,.08),inset 0 1px 0 rgba(255,255,255,.07);
    font-size:.74rem;
    font-weight:950;
    letter-spacing:.1em;
    text-transform:uppercase;
}

.promo-eyebrow::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:999px;
    background:#ff7a00;
    box-shadow:0 0 18px rgba(255,122,0,.78);
}

.promo-heading h2{
    margin:0;
    color:#fff;
    font-size:clamp(2.2rem,4.4vw,3.85rem);
    line-height:.92;
    letter-spacing:-.07em;
}

.promo-heading p{
    max-width:720px;
    margin:16px auto 0;
    color:rgba(255,255,255,.68);
    line-height:1.78;
    font-weight:650;
}

.promo-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}

.promo-card{
    position:relative;
    min-height:342px;
    display:flex;
    flex-direction:column;
    padding:24px;
    border-radius:32px;
    overflow:hidden;
    isolation:isolate;
    border:1px solid rgba(255,255,255,.09);
    background:
        radial-gradient(circle at top right,rgba(255,122,0,.18),transparent 40%),
        linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.028)),
        rgba(9,9,12,.78);
    box-shadow:
        0 28px 90px rgba(0,0,0,.38),
        0 0 38px rgba(255,122,0,.08),
        inset 0 1px 0 rgba(255,255,255,.075);
    transition:transform .24s ease,border-color .24s ease,box-shadow .24s ease;
}

.promo-card:hover{
    transform:translateY(-5px);
    border-color:rgba(255,122,0,.34);
    box-shadow:
        0 34px 105px rgba(0,0,0,.45),
        0 0 48px rgba(255,122,0,.13),
        inset 0 1px 0 rgba(255,255,255,.09);
}

.promo-card::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;
    background:
        linear-gradient(115deg,transparent 0%,rgba(255,122,0,.16) 42%,rgba(255,255,255,.11) 50%,transparent 62%);
    transform:translateX(-130%);
    opacity:.45;
    transition:transform .72s ease;
}

.promo-card:hover::before{
    transform:translateX(130%);
}

.promo-card-glow{
    position:absolute;
    right:-92px;
    top:-110px;
    z-index:-2;
    width:250px;
    height:250px;
    border-radius:999px;
    background:rgba(255,122,0,.22);
    filter:blur(10px);
    pointer-events:none;
}

.promo-tag{
    position:relative;
    z-index:1;
    width:max-content;
    max-width:100%;
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:16px;
    padding:8px 12px;
    border-radius:999px;
    color:#1b0d00;
    background:linear-gradient(180deg,#ffe3bc,#ff7a00);
    box-shadow:0 0 28px rgba(255,122,0,.30);
    font-size:.74rem;
    font-weight:950;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.promo-card h3{
    position:relative;
    z-index:1;
    margin:0 0 9px;
    color:#fff;
    font-size:1.48rem;
    line-height:1.08;
    letter-spacing:-.045em;
}

.promo-category{
    position:relative;
    z-index:1;
    width:max-content;
    max-width:100%;
    margin-bottom:12px;
    padding:7px 10px;
    border-radius:999px;
    background:rgba(255,255,255,.055);
    border:1px solid rgba(255,255,255,.08);
    color:rgba(255,255,255,.64);
    font-size:.78rem;
    font-weight:850;
}

.promo-desc{
    position:relative;
    z-index:1;
    margin:0;
    color:rgba(255,255,255,.67);
    line-height:1.64;
    font-weight:650;
}

.promo-price{
    position:relative;
    z-index:1;
    margin:auto 0 0;
    padding-top:22px;
}

.promo-old{
    display:block;
    margin-bottom:5px;
    color:rgba(255,255,255,.42);
    font-weight:900;
    text-decoration:line-through;
}

.promo-price strong{
    display:block;
    color:#ffd4a1;
    font-size:clamp(1.9rem,3vw,2.55rem);
    line-height:1;
    font-weight:1000;
    letter-spacing:-.06em;
    text-shadow:0 0 24px rgba(255,122,0,.14);
}

.promo-actions{
    position:relative;
    z-index:1;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:18px;
}

.promo-btn{
    min-height:46px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 15px;
    border-radius:16px;
    color:#170d02;
    background:linear-gradient(135deg,#ff8a00,#ffb347);
    box-shadow:0 16px 34px rgba(255,138,0,.22);
    font-weight:950;
    text-decoration:none;
    transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}

.promo-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 20px 44px rgba(255,138,0,.28);
}

.promo-btn-secondary{
    color:#fff;
    background:rgba(255,255,255,.065);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:none;
}

.promo-btn-secondary:hover{
    background:rgba(255,255,255,.095);
    box-shadow:0 18px 40px rgba(0,0,0,.24);
}

.promo-empty-card{
    position:relative;
    width:min(760px,100%);
    margin:0 auto;
    padding:42px 34px 34px;
    border-radius:34px;
    overflow:hidden;
    text-align:center;
    isolation:isolate;
    border:1px solid rgba(255,255,255,.10);
    background:
        radial-gradient(circle at top right,rgba(255,122,0,.20),transparent 38%),
        linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.032)),
        rgba(10,10,12,.94);
    box-shadow:
        0 34px 110px rgba(0,0,0,.58),
        0 0 48px rgba(255,122,0,.12),
        inset 0 1px 0 rgba(255,255,255,.08);
}

.promo-empty-card::before{
    content:"";
    position:absolute;
    inset:-2px;
    z-index:-1;
    background:
        linear-gradient(115deg,transparent 0%,rgba(255,122,0,.24) 38%,rgba(255,255,255,.12) 50%,transparent 62%);
    transform:translateX(-120%);
    opacity:.62;
    animation:promoEmptyShine 1.45s ease .28s 1;
    pointer-events:none;
}

@keyframes promoEmptyShine{
    to{transform:translateX(120%);}
}

.promo-empty-glow{
    position:absolute;
    right:-120px;
    top:-150px;
    z-index:-2;
    width:360px;
    height:360px;
    border-radius:999px;
    background:rgba(255,122,0,.18);
    filter:blur(10px);
    pointer-events:none;
}

.promo-empty-icon{
    width:76px;
    height:76px;
    display:grid;
    place-items:center;
    margin:0 auto 18px;
    border-radius:26px;
    color:#ffd4a1;
    background:
        radial-gradient(circle at top right,rgba(255,122,0,.32),transparent 54%),
        rgba(255,122,0,.10);
    border:1px solid rgba(255,122,0,.28);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.10),
        0 0 34px rgba(255,122,0,.14);
    font-size:1.85rem;
}

.promo-empty-copy{
    position:relative;
    z-index:1;
}

.promo-empty-copy .promo-eyebrow{
    margin:0 auto 16px;
}

.promo-empty-copy h2{
    margin:0;
    color:#fff;
    font-size:clamp(2rem,4vw,3.15rem);
    line-height:.96;
    letter-spacing:-.06em;
}

.promo-empty-copy p{
    max-width:610px;
    margin:16px auto 0;
    color:rgba(255,255,255,.74);
    font-size:1rem;
    line-height:1.82;
    font-weight:650;
}

.promo-empty-points{
    display:flex;
    justify-content:center;
    gap:8px;
    flex-wrap:wrap;
    margin-top:22px;
}

.promo-empty-points span{
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:9px 11px;
    border-radius:999px;
    background:rgba(255,255,255,.055);
    border:1px solid rgba(255,255,255,.08);
    color:rgba(255,255,255,.72);
    font-size:.78rem;
    font-weight:850;
}

.promo-empty-points span::before{
    content:"";
    width:7px;
    height:7px;
    border-radius:999px;
    background:#ff7a00;
    box-shadow:0 0 14px rgba(255,122,0,.62);
}

.promo-empty-actions{
    position:relative;
    z-index:1;
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
    margin-top:26px;
}

@media(max-width:1000px){
    .promo-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:640px){
    .home-promotions{
        padding:62px 0;
    }

    .promo-shell{
        width:min(100% - 22px,1180px);
    }

    .promo-grid{
        grid-template-columns:1fr;
    }

    .promo-card,
    .promo-empty-card{
        border-radius:26px;
        padding:22px;
    }

    .promo-empty-icon{
        width:66px;
        height:66px;
        border-radius:22px;
    }

    .promo-empty-points{
        display:grid;
        justify-content:stretch;
    }

    .promo-empty-points span{
        justify-content:center;
    }

    .promo-empty-actions .promo-btn{
        width:100%;
    }
}
