.mobile-flavor-section {
    display: none;
    padding: 2rem 1.5rem;
    background: #ffffff;
}

.flavor-block {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(120px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    background: #e6e6ea;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.flavor-block.reveal {
    opacity: 1;
    transform: translateX(0);
}

.flavor-image {
    flex: 2;
    display: flex;
    justify-content: center;
}

.flavor-image img {
    width: 70%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.flavor-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-right: 1rem;
}

.flavor-text h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
    width: 100%;
    text-align: right;
}

.flavor-text p {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    width: 100%;
    text-align: right;
}