.home .wlf-buttons {
    display: none;
}
.wlf-buttons {
    margin: 25px 0;
    display: inline-flex;
    gap: 15px;
    flex-wrap: wrap;
}
.wlf-button {
    background-color: #C81C1C;
    color: #ffffff;
    font-family: "Roboto", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    border-radius: 2px;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.wlf-button:hover {
    background-color: #A61616;
}
.wlf-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.5s ease;
}
.wlf-animation.active {
    animation: thumbsUp 1s ease;
}
@keyframes thumbsUp {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.5);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
}
.wlf-active {
    animation: buttonPulse 0.5s ease;
}
@keyframes buttonPulse {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.wlf-list-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin: 0 0 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #C81C1C;
    position: relative;
}

.wlf-list-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background: #A61616;
}

.wlf-list-container {
    margin-top: 30px;
}

@media (max-width: 767px) {
    .wlf-list-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
}