/* Coffee Badge Styles replacing previous Hero News */
.hero-news {
    margin-top: 40px;
    animation: fadeInUp 1.2s ease-out;
    display: flex;
    justify-content: flex-start;
    /* Align left by default */
}

.coffee-badge {
    display: block;
    width: 140px;
    height: 140px;
    background: #fff;
    border: 3px solid #e67e22;
    /* Rich Orange */
    border-radius: 50%;
    position: relative;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.coffee-badge:hover {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 12px 35px rgba(230, 126, 34, 0.3);
    opacity: 1;
    /* Override default hover opacity */
}

.badge-inner {
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 2px dashed #ddd;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #333;
    line-height: 1.1;
    background: #fff;
    /* Ensure text is readable */
    text-align: center;
}

.badge-text-top {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: 0.05em;
}

.badge-text-main {
    font-size: 28px;
    font-weight: 900;
    font-family: 'Arial Black', 'Helvetica The', sans-serif;
    color: #e67e22;
    margin: 0;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.badge-text-bottom {
    font-size: 13px;
    font-weight: 700;
    margin-top: 2px;
    letter-spacing: 0.05em;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-news {
        justify-content: center;
        /* Center on mobile */
        margin-top: 30px;
    }

    .coffee-badge {
        width: 130px;
        height: 130px;
    }

    .badge-text-main {
        font-size: 24px;
    }

    .badge-text-top,
    .badge-text-bottom {
        font-size: 12px;
    }
}