
.coffee-section {
    background: linear-gradient(0deg, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0) 100%);
    border-top: 1px solid rgba(255,255,255,0.03);
    width: 100%;
}

.coffee-card {
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.05), rgba(0,0,0,0.5));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.coffee-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.btn-coffee {
    background: linear-gradient(90deg, #d97706, #f59e0b);
    color: #000 !important;
    font-weight: 800;
    border: none;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
    transition: all 0.3s;
}

.btn-coffee:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
    color: #000 !important;
}