/* Кнопка Детальніше */
.coffee-banner__link {
    display: inline-block;
    background: #ff9800;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    padding: 8px 18px;
    margin-top: 8px;
    margin-left: 8px;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(255,152,0,0.08);
    font-size: 1em;
}
.coffee-banner__link:hover {
    background: #e65100;
    color: #fff;
}
.coffee-banner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    padding: 20px 32px 20px 20px;
    display: flex;
    align-items: center;
    min-width: 260px;
    max-width: 340px;
    opacity: 0;
    transform: translateX(100px);
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(.4,0,.2,1), transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.2s;
}
.coffee-banner.coffee-banner--visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.coffee-banner.coffee-banner--hide {
    opacity: 0;
    transform: translateX(200px);
    pointer-events: none;
}
.coffee-banner__close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
    padding: 0;
    z-index: 1;
}
.coffee-banner__icon {
    width: 48px;
    height: 48px;
    margin-right: 16px;
}
.coffee-banner__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.coffee-banner__count, .coffee-banner__sum {
    font-size: 1.1em;
    font-weight: 600;
    color: #4e342e;
}
@media (max-width: 600px) {
    .coffee-banner {
        right: 8px;
        bottom: 8px;
        padding: 12px 16px 12px 12px;
        min-width: 180px;
        max-width: 90vw;
    }
    .coffee-banner__icon {
        width: 32px;
        height: 32px;
        margin-right: 8px;
    }
}
