.cart-booster {
    margin: 16px 0 0;
    padding: 14px 16px;
    
}
.cart-booster p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
    color: #272727;
}
.cart-booster-progress {
    width: 100%;
    height: 18px;
    margin-top: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #e2faf2;
    border-radius: 50px;   
}
.cart-booster-progress span {
    display: block;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(90deg,#57c7a5,#8fe388);
    transition: width .3s ease;
}
p.truck svg{ margin: 0 8px -6px 0;}
p.kado svg { margin: 0 8px -2px 0;}
p.kado svg, p.kado200 svg{margin: 0 8px -2px 0;}

p.kado, p.gift-notice, p.truck {font-size: 13px;margin: 2px  0 4px 8px;}

.gift-success{color:#57c7a5; font-weight: 400;}
.cart-booster-progress span {
    display: block;
    height: 100%;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg,#57c7a5,#8fe388);
    transition: width .4s ease;
}
.cart-booster-progress span::after {
    content: '';
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
    animation: boosterShine 2.4s linear infinite;
}
@keyframes boosterShine {
    0% {
        left: -40%;
    }
    100% {
        left: 120%;
    }
}

.cart-gifts {
    margin-top: 40px;
}

.cart-gifts h2 {
    margin: 0 0 24px;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 700;
    color: #1f1f1f;
}

.gift-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3,1fr);
}

.gift-item {
    padding: 18px;
    border: 1px solid #e5ebe8;
    border-radius: 18px;
    background: #fff;
    transition: .2s ease;
}

.gift-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.gift-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 14px;
    background: #f5f7f6;
}

.gift-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.gift-item h3 {
    margin: 18px 0 14px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    color: #1f1f1f;
}

.gift-item button {
    width: 100%;
    border: 0;
    padding: 14px 18px;
    border-radius: 10px;
    background: #2d6cdf;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s ease;
}

.gift-item button:hover {
    opacity: .92;
}
.gift-select.active {
    background: #318161;
}

@media (max-width: 768px) {

    .gift-grid {
        grid-template-columns: 1fr;
    }

    .cart-gifts h2 {
        font-size: 26px;
    }

}