/* Start custom CSS for html, class: .elementor-element-66c3416 *//* Custom Properties for Easy Branding */
:root {
    --primary-red: #ff0909;
    --success-green: #4caf50;
    --dark-text: #2b2b2b;
    --light-gray: #f4f7f6;
    --white: #ffffff;
}

/* Layout Wrapper */
.bundle-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
}

/* Urgency Sticky Banner */
.urgency-banner {
    background-color: var(--primary-red);
    color: var(--white);
    text-align: center;
    padding: 12px 10px;
    font-weight: 700;
    font-size: clamp(14px, 4vw, 18px);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Header Styling */
.status-header {
    text-align: center;
    margin-bottom: 40px;
}

.status-header h2 {
    font-size: clamp(20px, 5vw, 32px);
    color: var(--dark-text);
    margin-bottom: 10px;
}

.status-header p {
    color: #666;
    font-size: 16px;
}

/* Features Card Glassmorphism */
.features-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 18px;
    margin-bottom: 15px;
    background: #fafafa;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    transform: translateX(12px);
    border-color: var(--success-green);
    background: #fafffa;
}

/* Icon Box Styling */
.icon-box {
    background: var(--dark-text);
    color: var(--white);
    width: 35px;
    height: 35px;
    min-width: 35px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.bonus-icon {
    background: var(--primary-red);
}

.feature-text {
    font-size: 16px;
    color: #444;
    line-height: 1.5;
}

.price-tag {
    color: var(--primary-red);
    font-weight: 800;
    font-size: 18px;
}

/* CTA Button Styling */
.download-btn {
    display: block;
    background: var(--primary-red);
    color: var(--white);
    text-align: center;
    padding: 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    margin-top: 30px;
    box-shadow: 0 10px 25px rgba(255, 9, 9, 0.3);
    transition: 0.3s;
}

.download-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 9, 9, 0.5);
    color: white;
}

.trust-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
}/* End custom CSS */