@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.banner-outer-container {
    max-width: 1600px;
    margin: 20px auto 0;
    padding: 0 15px;
}

.modern-banner-4life {
    min-height: 380px;
    display: flex;
    background-color: #3b82c4; 
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.banner-grid {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}

.banner-card-left {
    background: #ffffff;
    color: #333;
    flex: 0 0 300px;
    padding: 20px;
    margin: 15px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

.logo-circle {
    position: relative; 
    width: 100%;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ffffff; 
    border-radius: 50% / 30%; 
    border: 1px solid #eee;
    overflow: hidden; 
    margin-bottom: 15px;
}

.molecules-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('/assets/images/molecules-bg.png'),
        url('/assets/images/molecules-bg.png'),
        url('/assets/images/molecules-bg.png'),
        url('/assets/images/molecules-bg.png');
    
    background-position: 
        10% 20%, 
        80% 15%, 
        30% 80%, 
        85% 75%;
        
    background-size: 
        60px auto, 
        40px auto, 
        80px auto, 
        50px auto;
        
    background-repeat: no-repeat;
    opacity: 0.25; 
    z-index: 1; 
    animation: float 8s ease-in-out infinite;
}

.logo-content {
    position: relative;
    z-index: 2; 
    width: 100%;
}

.logo-colored {
    max-width: 220px; 
    height: auto;
    display: block;
    margin: 0 auto;
    filter: brightness(0) saturate(100%) invert(21%) sepia(91%) saturate(2206%) hue-rotate(198deg) brightness(92%) contrast(105%);
}

.logo-content p { 
    font-weight: bold; 
    margin: 8px 0 0; 
    color: #004a99; 
    font-size: 15px; 
    line-height: 1.2;
}

.banner-features h3 {
    color: #0072bc;
    font-size: 1.1rem;
    margin-bottom: 10px;
    border-bottom: 2px solid #0072bc;
    display: inline-block;
}

.banner-features ul {
    list-style: none;
    padding: 0;
}

.banner-features ul li {
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.3;
    color: #444;
}

.banner-features ul li span {
    color: #0072bc;
    font-weight: bold;
    margin-right: 5px;
}

.slogan {
    font-size: 1.1rem;
    color: #0072bc;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}

.banner-content-right {
    flex: 1;
    min-width: 350px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
}

.banner-content-right h2 {
    font-size: 1.2rem;
    margin-top: 0;
    line-height: 1.1;
    margin-bottom: 8px;
}

.text-block p {
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.text-block strong {
    color: #ffeb3b; 
}

.no-style-a {
    text-decoration: none;
}

/* Футер банера з кнопкою */
.banner-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}

.free-shipping {
    font-weight: bold;
    line-height: 1.2;
}

.free-shipping span {
    color: #ffeb3b;
    font-size: 1.2rem;
}

.btn-more {
    background: #ffffff;
    color: #0054a6;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-more:hover {
    background: #f0f0f0;
}

/* Адаптивність для мобілок */
@media (max-width: 768px) {
    .banner-grid { flex-direction: column; }
    .banner-footer { flex-direction: column; text-align: center; gap: 20px; }
}