.ws-home-banners {
    background: #E4F1DA;
    padding: 41px 0;
    overflow: hidden;
}

.ws-banners-wrapper {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.ws-banner {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.ws-banner-main {
    background: #C3DEF1;
    padding: 0 32px;
    gap: 51px;
}

.ws-banner-img {
    width: 36%;
    object-fit: contain;
    z-index: 1;
}

.ws-banner-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 1;
    padding: 20px 0;
}

.ws-banner-title-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ws-banner-subtitle {
    color: #39521C;
    font-size: 24px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.ws-banner-title {
    color: #39521C;
    font-size: 36px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 30px;
}

.ws-banner-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ws-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ws-feature-icon {
    width: 32px;
    height: 14px;
    display: inline-block;
    background-color: #39521C;
    mask: url("data:image/svg+xml,%3Csvg width='18' height='13' viewBox='0 0 18 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.00002 10.17L1.83002 6L0.410019 7.41L6.00002 13L18 1L16.59 1.14441e-05L6.00002 10.17Z' fill='black'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='18' height='13' viewBox='0 0 18 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.00002 10.17L1.83002 6L0.410019 7.41L6.00002 13L18 1L16.59 1.14441e-05L6.00002 10.17Z' fill='black'/%3E%3C/svg%3E") no-repeat center;
}

.ws-feature-text {
    color: #39521C;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.ws-banner-button {
    display: inline-flex;
    padding: 6px 20px;
    border-radius: 16px;
    border: 2px solid #39521C;
    color: #39521C;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.70px;
    text-decoration: none;
    align-items: center;
    gap: 10px;
    width: fit-content;
    transition: all 0.3s ease;
}

.ws-banner-button:hover {
    background: #39521C;
    color: #fff;
}

.ws-icon-arrow {
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: currentColor;
    mask: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 0L4.1125 0.8875L7.5875 4.375H0V5.625H7.5875L4.1125 9.1125L5 10L10 5L5 0Z' fill='black'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 0L4.1125 0.8875L7.5875 4.375H0V5.625H7.5875L4.1125 9.1125L5 10L10 5L5 0Z' fill='black'/%3E%3C/svg%3E") no-repeat center;
}

.ws-banners-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ws-banner-side {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.ws-banner-discount {
    background: #FCD28C;
}

.ws-banner-store {
    background: #F8F5E6;
}

.ws-side-content {
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.ws-side-subtitle {
    color: #39521C;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.ws-side-title {
    color: #39521C;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.ws-banner-store .ws-side-title {
    font-size: 22px;
    line-height: 24px;
    padding: 10px 0;
}

.ws-side-label {
    color: #39521C;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.ws-side-address {
    color: #39521C;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.ws-side-img {
    width: auto;
    height: 100%;
    object-fit: contain;
    margin-right: -25px;
}

.ws-side-img-alt {
    width: 145px;
    height: 140px;
    object-fit: contain;
}

/* Responsiveness */
@media (max-width: 1199px) {
    .ws-banner-main {
        gap: 20px;
        padding: 0 20px;
    }
    .ws-banner-img {
        width: 300px;
    }
    .ws-banners-side {
        width: 320px;
    }
}

@media (max-width: 991px) {
    .ws-banners-wrapper {
        flex-direction: column;
    }
    .ws-banner-main {
        height: auto;
        padding: 32px;
        flex-direction: column;
        text-align: center;
    }
    .ws-banner-img {
        width: 100%;
        max-width: 359px;
        height: auto;
    }
    .ws-banner-content {
        align-items: center;
    }
    .ws-banners-side {
        width: 100%;
    }
    .ws-banner-side {
        height: auto;
        padding: 24px;
    }
    .ws-side-img {
        position: relative;
        right: 0;
        top: 0;
        width: 150px;
        height: auto;
    }
}

@media (max-width: 575px) {
    .ws-banner-title {
        font-size: 28px;
    }
    .ws-banner-subtitle {
        font-size: 20px;
    }
    .ws-banner-main {
        padding: 24px 15px;
    }
    .ws-banner-side {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .ws-side-img, .ws-side-img-alt {
        width: 120px;
    }
}
