.gift-page{
    max-width:1400px;
    margin:0 auto;
    padding:28px 32px 56px;
}

.gift-hero{
    display:flex;
    gap:24px;
    align-items:center;
    background:#fff;
    border-radius:26px;
    padding:32px;
    box-shadow:0 8px 22px rgba(0,0,0,.05);
    margin-bottom:30px;
}

.gift-hero__icon{
    width:92px;
    height:92px;
    min-width:92px;
    border-radius:24px;
    background:#eef4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:44px;
}

.gift-hero h1{
    font-size:40px;
    margin-bottom:10px;
    color:#06123a;
}

.gift-hero p{
    color:#667085;
    max-width:850px;
    line-height:1.6;
}

.gift-groups{
    display:flex;
    flex-direction:column;
    gap:28px;
}

.gift-group-card{
    background:#fff;
    border-radius:24px;
    padding:24px;
    box-shadow:0 8px 22px rgba(0,0,0,.05);
}

.gift-group-card h2{
    font-size:24px;
    margin-bottom:20px;
    color:#06123a;
}

.gift-tags-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(220px,1fr));
    gap:16px;
}

.gift-tag-card{
    min-height:90px;
    border-radius:18px;
    background:#f8fbff;
    border:1px solid #e7eef8;
    display:flex;
    align-items:center;
    gap:14px;
    padding:18px;
    transition:.15s ease;
}

.gift-tag-card:hover{
    transform:translateY(-2px);
    background:#eef4ff;
}

.gift-tag-card__icon{
    width:48px;
    height:48px;
    min-width:48px;
    border-radius:14px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.gift-tag-card__title{
    color:#06123a;
    font-weight:900;
    line-height:1.35;
}

.gift-tag-card__content{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.gift-tag-card__count{
    color:#667085;
    font-size:12px;
    font-weight:700;
}

@media(max-width:700px){

    .gift-page{
        padding:18px;
    }

    .gift-hero{
        flex-direction:column;
        align-items:flex-start;
    }

    .gift-hero h1{
        font-size:30px;
    }
}