/* Promo Banner Styles */
.promo-banner-container {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.promo-banner-image {
    flex: 1;
    min-height: 300px;
}

.promo-banner-image a {
    display: block;
    height: 100%;
    text-decoration: none;
}

.promo-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-banner-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.banner-text {
    margin-bottom: 30px;
}

.banner-text h1,
.banner-text h2,
.banner-text h3,
.banner-text h4,
.banner-text h5,
.banner-text h6 {
    color: white;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.2;
}

.banner-text h1 {
    font-size: 3em;
    font-weight: 800;
}

.banner-text h2 {
    font-size: 2.5em;
    font-weight: 700;
}

.banner-text h3 {
    font-size: 2em;
    font-weight: 600;
}

.banner-text strong {
    font-weight: 700;
}

.banner-text em {
    font-style: italic;
}

.banner-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1.1em;
}

.banner-text p:last-child {
    margin-bottom: 0;
}

.promo-banner-button {
    display: inline-block;
    padding: 15px 30px;
    background: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-align: center;
}

.promo-banner-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .promo-banner-container {
        flex-direction: column;
    }
    
    .promo-banner-image,
    .promo-banner-content {
        flex: none;
        min-height: auto;
    }
    
    .promo-banner-content {
        padding: 30px 20px;
    }
    
    .banner-text h1 {
        font-size: 2.5em;
    }
    
    .banner-text h2 {
        font-size: 2em;
    }
    
    .banner-text h3 {
        font-size: 1.5em;
    }
}

.woocommerce-billing-fields-custom{display:none !important;}