/* Slider Caption Styles */
.slider-area .caption {
    position: absolute;
    right: 300px;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    color: white;
    max-width: 500px;
}

.slider-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slider-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.9;
}


.slider-actions {
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: center;
}

.btn-slider {
    background: #ff6b35;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-slider:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.delivery-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    opacity: 0.9;
}

.btn-slider svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.check-icon::before {
    content: "✓";
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider-area .caption {
        right: 20px;
        max-width: 300px;
    }
    
    .slider-title {
        font-size: 2.5rem;
    }
    
    .slider-subtitle {
        font-size: 1rem;
    }
    
    .btn-slider {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .slider-area .caption {
        right: 15px;
        max-width: 250px;
    }
    
    .slider-title {
        font-size: 2rem;
    }
    
    .slider-actions {
        align-items: center;
    }
}