@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.promo-products-section {
    padding: 0px 0 10px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.promo-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(77, 196, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 32, 96, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.promo-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.promo-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.promo-section-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #1e293b;
    letter-spacing: -1px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.promo-section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(77, 196, 255, 0.3) 50%, transparent 100%);
    z-index: -1;
}

.promo-section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #4DC4FF, #002060);
    border-radius: 2px;
}

.promo-carousel-container {
    position: relative;
    margin: 0 auto;
}

.promo-carousel {
    overflow: hidden;
    background: white;
    position: relative;
    border-radius: 0;
}

.promo-slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.promo-slide.active {
    opacity: 1;
}

.promo-product-card {
    background: white;
    display: flex;
    min-height: 500px; 
    align-items: stretch;
    position: relative;
}

.promo-blue-background {
    flex: 1;
    min-width: 50%;
    background: #002060;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    overflow: hidden;
    z-index: 2;
    height: 500px; 
}

.promo-svg-decoration {
    position: absolute;
    z-index: 1;
}

.promo-svg-top-left {
    top: 0;
    left: 0;
}

.promo-svg-bottom-left {
    bottom: -80px;
    right: -1px;
}

.promo-product-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-product-image img {
    max-width: 100%;
    max-height: 380px; 
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.promo-product-card:hover .promo-product-image img {
    transform: scale(1.05);
}

.promo-product-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    position: relative;
    height: 500px; 
    overflow: hidden;
}

.promo-product-header {
    flex-shrink: 0;
    margin-bottom: 30px;
}

.promo-product-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #374151;
    margin: 0 0 10px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.promo-product-category {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #9ca3af;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.promo-product-description {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 40px 0;
    font-size: 1rem;
    flex-grow: 1; 
    font-weight: 400;
    overflow-y: auto;
    padding-right: 10px;
}

.promo-product-description::-webkit-scrollbar {
    width: 4px;
}

.promo-product-description::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 2px;
}

.promo-product-description::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

.promo-product-description::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.promo-product-footer {
    flex-shrink: 0; 
    margin-top: auto;
}

.promo-product-price-section {
    margin-bottom: 40px;
}

.promo-price-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 15px 0;
}

.promo-product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.promo-current-price {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #374151;
}

.promo-current-price::after {
    content: '*';
    color: #848181;
    font-size: 1.4rem;
    margin-left: 4px;
}

.promo-offer-text {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.85rem;
    color: #848181;
    font-weight: 500;
    font-style: italic;
    margin: 0;
    opacity: 0.9;
}

.promo-product-actions {
    margin-top: auto;
}

.promo-btn {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: inline-block;
    padding: 16px 32px;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-btn-primary {
    background: #394662;
    color: white;
    border: 2px solid #394662;
}

.promo-btn-primary:hover {
    background: transparent;
    color: #394662;
    transform: translateY(-2px);
}

.promo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(77, 196, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #374151;
}

.promo-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    border-color: rgb(0 32 96);
}

.promo-nav-prev {
    left: 30px;
}

.promo-nav-next {
    right: 30px;
}

.promo-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.promo-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-indicator.active {
    background: rgba(0, 32, 96, 0.8); 
    border-color: white;
    transform: scale(1.2); 
}

.promo-indicator:hover {
    background: rgba(0, 32, 96, 0.6);
    border-color: white;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .promo-section-title {
        font-size: 3rem;
    }
    
    .promo-product-card {
        min-height: 450px; 
    }
    
    .promo-blue-background {
        height: 450px;
    }
    
    .promo-product-content {
        padding: 40px 35px;
        height: 450px;
    }
    
    .promo-product-title {
        font-size: 2.2rem;
    }
    
    .promo-nav {
        width: 50px;
        height: 50px;
    }
    
    .promo-nav-prev {
        left: 20px;
    }
    
    .promo-nav-next {
        right: 20px;
    }
    
    .promo-indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 768px) {
    .promo-products-section {
        padding: 60px 0 40px 0;
    }
    
    .promo-section-header {
        margin-bottom: 40px;
    }
    
    .promo-section-title {
        font-size: 2.5rem;
    }
    
    .promo-product-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .promo-blue-background {
        padding: 40px 30px;
        min-height: 300px;
        height: auto; 
    }
    
    .promo-product-content {
        padding: 40px 30px;
        height: auto;
    }
    
    .promo-product-title {
        font-size: 1.8rem;
    }
    
    .promo-product-description {
        max-height: 200px;
    }
    
    .promo-nav {
        display: none;
    }
    
    .promo-indicators {
        bottom: 20px;
    }
    
    .promo-indicator {
        width: 14px;
        height: 14px;
        border: 2px solid #002060;
        background: rgba(255, 255, 255, 0.8); 
        flex-shrink: 0; 
        box-sizing: border-box;
    }
    
    .promo-indicator.active {
        background: #002060; 
        border-color: #002060;
        transform: scale(1.2); 
    }
    
    .promo-indicator:hover {
        background: rgba(0, 32, 96, 0.8);
        border-color: #002060;
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    .promo-products-section {
        padding: 50px 0 30px 0;
    }
    
    .promo-section-header {
        margin-bottom: 30px;
    }
    
    .promo-section-title {
        font-size: 2rem;
    }
    
    .promo-blue-background {
        padding: 30px 20px;
        min-height: 250px;
    }
    
    .promo-product-content {
        padding: 30px 25px;
    }
    
    .promo-product-title {
        font-size: 1.6rem;
    }
    
    .promo-product-description {
        max-height: 150px;
    }
    
    .promo-current-price {
        font-size: 1.5rem;
    }
    
    .promo-btn {
        width: 100%;
        padding: 14px 24px;
    }
    
    .promo-indicator {
        width: 16px;
        height: 16px;
        border: 3px solid #002060;
        background: white;
    }
    
    .promo-indicator.active {
        background: #002060;
        transform: scale(1.5);
    }
}