/* Creati Limited Offers - Frontend Styles */

.clo-offer-container {
    max-width: 880px;
    margin: 0 auto;
    padding: 35px 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff1493 100%);
    border-radius: 45px;
    box-shadow: 0 10px 40px rgba(255, 20, 147, 0.3);
    color: white;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

.clo-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.clo-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.clo-offer-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.clo-icon-badge {
    background: rgba(255, 255, 255, 0.25);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.clo-offer-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.clo-offer-subtitle {
    font-size: 24px;
    opacity: 0.95;
    margin-bottom: 25px;
    margin-left: 65px;
}

.clo-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.clo-time-box {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    padding: 15px 20px;
    min-width: 90px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.clo-time-number {
    font-size: 48px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.clo-time-label {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
    display: block;
    font-weight: 500;
}

.clo-cta-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.clo-cta-button {
    background: white;
    color: #ff1493;
    border: none;
    padding: 16px 28px;
    border-radius: 20px;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.clo-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.clo-cta-icon {
    font-size: 20px;
}

.clo-expired-container {
    text-align: center;
}

.clo-expired-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.clo-expired-message {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 25px;
}

.clo-normal-button {
    background: white;
    color: #ff1493;
    border: none;
    padding: 16px 35px;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease;
}

.clo-normal-button:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .clo-offer-container {
        padding: 25px 20px;
        border-radius: 30px;
    }
    
    .clo-offer-title {
        font-size: 28px;
    }
    
    .clo-offer-subtitle {
        font-size: 18px;
        margin-left: 0;
    }
    
    .clo-icon-badge {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .clo-time-box {
        min-width: 70px;
        padding: 12px 15px;
    }
    
    .clo-time-number {
        font-size: 36px;
    }
    
    .clo-time-label {
        font-size: 12px;
    }
    
    .clo-cta-section {
        flex-direction: column;
        align-items: stretch;
    }
    
    .clo-cta-button {
        justify-content: center;
        font-size: 20px;
        padding: 14px 24px;
    }
    
    .clo-normal-button {
        font-size: 18px;
        padding: 14px 30px;
    }
}

@media (max-width: 480px) {
    .clo-offer-title {
        font-size: 22px;
    }
    
    .clo-offer-subtitle {
        font-size: 16px;
    }
    
    .clo-countdown-timer {
        gap: 10px;
    }
    
    .clo-time-box {
        min-width: 60px;
        padding: 10px;
    }
    
    .clo-time-number {
        font-size: 28px;
    }
}
