* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
    font-family: "Figtree Regular", Sans-serif;
    background-color: #F9FAFB;
    color: #1F2937;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    margin-bottom: 24px;
    padding-top: 8px;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #6B7280;
    font-size: 14px;
    /* cursor: pointer; */
    padding: 8px 0;
    margin-bottom: 30px;
    transition: color 0.2s;
}

.back-button:hover {
    color: #374151;
}

.header-content {
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.logo img {
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.header-description {
    max-width: 700px;
    margin: 0 auto 8px auto;
    color: #6B7280;
    font-size: 15px;
    line-height: 1.6;
}

.checkout-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 20px;
}

.checkout-form {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.required {
    color: #EF4444;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.5;
    height: 40px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: white;
    color: #1a1a1a;
}

/* Fix country dropdown text color */
.form-group select option {
    color: #1F2937;
}

.form-group select:invalid {
    color: #9CA3AF;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #6B46C1;
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.form-group input::placeholder {
    color: #9CA3AF;
}

.form-row {
    display: flex;
    gap: 16px;
}

.card-section {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 16px;
}

.coupon-group {
    margin-bottom: 24px;
}

.coupon-input-wrapper {
    display: flex;
    gap: 8px;
}

.coupon-input-wrapper input {
    flex: 1;
    height: 40px;
    padding: 10px 14px;
    font-size: 16px;
    line-height: 1.5;
}

.apply-button {
    padding: 10px 20px;
    height: 40px;
    background: white;
    border: 1px solid #6B46C1;
    color: #6B46C1;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.apply-button:hover {
    background: #F3F4F6;
}

.checkbox-group {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #6B46C1;
}

.checkbox-group label {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.5;
}

.link {
    color: #6B46C1;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, #FF6B35 0%, #E8423F 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.submit-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

.order-summary {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.summary-card {
    background: linear-gradient(180deg, #F5F3FF 0%, #FEFEFE 100%);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #E9D5FF;
}

.subscription-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.subscription-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
}

.subscription-type {
    font-size: 13px;
    color: #6B7280;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
}

.price span {
    font-size: 14px;
    font-weight: 400;
    color: #6B7280;
}

.access-text {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E5E7EB;
}

.features-section {
    margin-top: 0px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    /* border-bottom: 1px solid #E5E7EB; */
}

.section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #4B5563;
    line-height: 1.4;
}

.features-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.devices-section {
    margin-bottom: 16px;
    padding-bottom: 0px;
}

.devices-list {
    font-size: 12px;
    color: #6B7280;
}

.device-item {
    display: inline;
}

/* .device-item::after {
    content: ", ";
} */

.device-item:last-child::after {
    content: "";
}

.device-item svg {
    display: none;
}

.pricing-breakdown {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5E7EB;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #4B5563;
    margin-bottom: 8px;
}

.price-row:last-child {
    margin-bottom: 0;
}

.price-row.total {
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
    padding-top: 10px;
    border-top: 1px solid #E5E7EB;
    margin-top: 8px;
}

.price-row.hidden {
    display: none;
}

.total-amount {
    font-size: 20px;
    color: #6B46C1;
}

.billing-info {
    margin-bottom: 14px;
}

.billing-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.billing-text {
    font-size: 12px;
    color: #4B5563;
    line-height: 1.5;
    margin-bottom: 6px;
}

.billing-subtext {
    font-size: 11px;
    color: #6B7280;
    line-height: 1.4;
}

.upgrade-section {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border: 1px solid #FCD34D;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 16px;
}

.upgrade-text {
    font-size: 12px;
    color: #92400E;
    line-height: 1.4;
    margin-bottom: 10px;
}

.upgrade-button {
    width: 100%;
    padding: 10px 16px;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.upgrade-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.upgrade-button:active {
    transform: translateY(0);
}

.security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: #4B5563;
    padding: 8px 0;
    font-weight: 500;
}

.security-badge .separator {
    margin: 0 8px;
    color: #D1D5DB;
    font-weight: 300;
}

.security-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.addon-section {
    margin-top: 24px;
}

.addon-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 16px;
}

.addon-section-inline {
    margin-bottom: 16px;
}

.addon-section-inline h3 {
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 10px;
}

.addon-card {
    background: white;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
}

.addon-card-inline {
    background: white;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.addon-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E5E7EB;
}

.addon-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 4px;
}

.addon-description {
    font-size: 12px;
    color: #6B7280;
    line-height: 1.4;
}

.addon-price {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    white-space: nowrap;
}

.addon-features {
    list-style: none;
    margin-bottom: 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 10px;
}

.addon-features li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    color: #4B5563;
    line-height: 1.4;
}

.addon-features svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.addon-add-button {
    width: 100%;
    padding: 10px 20px;
    background: #6B46C1;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.addon-add-button:hover {
    background: #5B21B6;
    transform: translateY(-1px);
}

.addon-add-button:active {
    transform: translateY(0);
}

footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid #E5E7EB;
}

.copyright {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: #6B7280;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #374151;
}

@media (max-width: 640px) {
    .checkout-wrapper {
        display: block;
    }
    
    .order-summary {
        position: static;
        order: -1;
    }
    
    .container {
        padding: 16px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .header-description {
        font-size: 14px;
    }
    
    .checkout-form,
    .summary-card {
        padding: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .features-list,
    .addon-features {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .subscription-header {
        flex-direction: column;
        gap: 8px;
    }
    
    .price {
        font-size: 20px;
    }
    
    h2 {
        font-size: 18px;
    }
}

/* Select2 style same as input box */
.form-group .select2-container {
    width: 100% !important;
    font-family: inherit;
    font-size: 14px;
}

.form-group .select2-container--default .select2-selection--single {
    height: 40px;                        /* match input height */
    padding: 0 5px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    background-color: white;
    display: flex;
    align-items: center;                 /* center vertically */
    justify-content: space-between;
    transition: border-color 0.2s, box-shadow 0.2s;
}

/* Text style */
.form-group .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #9CA3AF;
    padding: 0;
    margin: 0;
    line-height: normal;
}

/* Selected value color */
.form-group .select2-container--default .select2-selection--single .select2-selection__rendered[title]:not([title=""]) {
    color: #9CA3AF;
}

/* Arrow center align fix */
.form-group .select2-container--default .select2-selection--single .select2-selection__arrow {
    position: relative;
    top: 0;
    transform: translateY(0);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    right: 6px;
}

/* Focus state */
.form-group .select2-container--open .select2-selection--single,
.form-group .select2-container--default .select2-selection--single:focus {
    border-color: #6B46C1;
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

footer {
    padding: 0;
    border-top: 1px solid #E5E7EB;
    background: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo img {
    display: block;
}

.footer-links {
    display: flex;
    gap: 24px;
}

@media (max-width: 1024px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-left {
        flex-direction: column;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    footer {
        padding: 20px 0;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}
.copyright {
    font-size: 13px;
    padding-top: 10px;
    color: #6B7280;
    margin-bottom: 12px;
}
.sm-font {
    font-size: 12px!important;
}





/* Fixed Apply Button Loading State - No Flickering */

.apply-button {
    position: relative;
    min-height: 40px; /* Fixed height to prevent jumping */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.apply-button.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Loader ke liye separate span use karo instead of ::after */
.apply-button .loader {
    display: none;
    width: 12px;
    height: 12px;
    margin-left: 8px;
    border: 2px solid rgba(107, 70, 193, 0.3);
    border-top-color: #6B46C1;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    flex-shrink: 0; /* Prevent shrinking */
}

.apply-button.loading .loader {
    display: inline-block;
}

/* Button text ko stable rakhne ke liye */
.apply-button span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


.apply-button {
    position: relative;
    min-height: 40px;
    padding-right: 20px; /* Extra space for loader */
    transition: opacity 0.2s ease;
}

.apply-button.loading {
    opacity: 0.6;
    pointer-events: none;
    padding-right: 40px; /* Loader ke liye space */
}

.apply-button.loading::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border: 2px solid rgba(107, 70, 193, 0.3);
    border-top-color: #6B46C1;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}
.error-message-js {
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
    display: block;
    font-weight: 500;
    line-height: 1.4;
}


/* Fix membership page product card alignment */
.elementor-widget-container .product-card,
.elementor-column-wrap,
.elementor-widget-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Ensure all product cards have equal height */
.elementor-row {
    display: flex;
    align-items: stretch;
}

/* Push buttons to bottom of cards */
.elementor-button-wrapper {
    margin-top: auto !important;
}

/* Ensure consistent spacing for product features list */
.elementor-icon-list-items {
    min-height: 150px;
}

/* Fix Annual Plan icon top padding to align all product card buttons */
/* The Annual Plan is the 2nd column in the Products section */

/* Target the Products section's 2nd column (Annual Plan) */
.elementor-section .elementor-row > .elementor-column:nth-child(2) .elementor-widget-image {
    margin-top: -20px !important;
    padding-top: 0 !important;
}

/* Alternative: More specific targeting for the image widget in 2nd column */
.elementor-section .elementor-column:nth-child(2) > .elementor-widget-wrap > .elementor-widget-image:first-child {
    margin-top: -20px !important;
}

#payment-errors {
    display: none;
}

/* ============================================
   Mobile Accordion Styles
   ============================================ */

.accordion-header {
    display: none; /* Hidden on desktop */
    cursor: pointer;
    padding: 16px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #F3F4F6;
}

.accordion-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-title {
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
}

.accordion-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.accordion-icon.open {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease;
    opacity: 0;
}

.accordion-content.open {
    max-height: 2000px; /* Large enough for content */
    opacity: 1;
}

/* Mobile-specific accordion behavior */
@media (max-width: 768px) {
    .accordion-header {
        display: block;
    }
    
    /* Hide desktop h2 on mobile */
    .order-summary h2 {
        display: none !important;
    }
    
    /* Reorder layout: Order Summary -> Form -> Upgrades */
    .checkout-wrapper {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: unset !important;
        gap: 0 !important;
        padding: 20px 8px !important;
    }
    
    .order-summary {
        order: 1; /* First */
        position: static;
        margin-bottom: 16px;
        width: 100%;
    }
    
    .checkout-form {
        order: 2; /* Second */
        padding: 24px 16px !important;
        margin-bottom: 20px;
        width: 100%;
    }
    
    /* Upgrades wrapper moves to bottom - always open */
    .upgrades-wrapper {
        order: 3; /* Third */
        margin-top: 0;
        width: 100%;
    }
    
    /* Hide upgrades accordion header on mobile - keep it always open */
    .upgrades-wrapper .accordion-header {
        display: none !important;
    }
    
    /* Keep upgrades content always visible on mobile */
    .upgrades-wrapper .accordion-content {
        max-height: none !important;
        opacity: 1 !important;
        background: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    /* Order Summary accordion on mobile */
    .order-summary .summary-card {
        padding: 0;
        background: transparent;
        box-shadow: none;
        border: none;
    }
    
    .order-summary .accordion-content {
        background: transparent;
        padding: 0;
        margin-bottom: 20px;
    }
    
    .order-summary .accordion-content.open {
        background: linear-gradient(180deg, #F5F3FF 0%, #FEFEFE 100%);
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        border: 1px solid #E9D5FF;
    }
    

}

/* Desktop - no accordion */
@media (min-width: 769px) {
    .accordion-header {
        display: none !important;
    }
    
    .accordion-content {
        max-height: none !important;
        overflow: visible !important;
    }
    
    /* Keep upgrades in the right column with order summary */
    .checkout-wrapper {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        grid-template-areas:
            "form summary"
            "form upgrades";
        gap: 40px;
    }
    
    .checkout-form {
        grid-area: form;
    }
    
    .order-summary {
        grid-area: summary;
    }
    
    .upgrades-wrapper {
        grid-area: upgrades;
    }
}



/* ============================================
   Mobile Font Size Adjustments
   ============================================ */
@media (max-width: 768px) {
    /* Base body text */
    body {
        font-size: 16px !important;
    }
    
    /* Header description */
    .header-description {
        font-size: 16px !important;
        line-height: 1.6;
    }
    
    /* Form labels */
    label {
        font-size: 15px !important;
    }
    
    /* Input fields */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    .select2-selection__rendered {
        font-size: 16px !important;
    }
    
    /* Product name */
    .subscription-header h3 {
        font-size: 20px !important;
    }
    
    /* Price */
    .price {
        font-size: 26px !important;
    }
    
    /* Subscription type text */
    .subscription-type {
        font-size: 14px !important;
    }
    
    /* Access text */
    .access-text {
        font-size: 15px !important;
    }
    
    /* Section titles */
    .section-title {
        font-size: 15px !important;
    }
    
    /* Feature list items */
    .features-list li {
        font-size: 14px !important;
    }
    
    /* Upgrade title */
    .upgrade-title {
        font-size: 16px !important;
        line-height: 1.5;
    }
    
    /* Upgrade plan name */
    .upgrade-plan-name {
        font-size: 18px !important;
    }
    
    /* Upgrade price */
    .upgrade-price {
        font-size: 24px !important;
    }
    
    /* Upgrade billing text */
    .upgrade-billing {
        font-size: 13px !important;
    }
    
    /* Upgrade features */
    .upgrade-features-title {
        font-size: 14px !important;
        line-height: 1.5;
    }
    
    /* Buttons */
    .submit-button,
    .upgrade-button {
        font-size: 17px !important;
        padding: 14px 24px !important;
    }
    
    /* Coupon section */
    .coupon-section label {
        font-size: 14px !important;
    }
    
    /* Price breakdown */
    .price-row {
        font-size: 15px !important;
    }
    
    .price-row.total {
        font-size: 18px !important;
    }
    
    /* Checkbox label */
    .checkbox-group label {
        font-size: 14px !important;
        line-height: 1.5;
    }
    
    /* Security badges */
    .security-badge {
        font-size: 13px !important;
    }
    
    /* Accordion header */
    .accordion-title {
        font-size: 18px !important;
    }
}



/* ============================================
   Select2 Country Dropdown Mobile Fixes
   ============================================ */
@media (max-width: 768px) {
    /* Select2 search input */
    .select2-search--dropdown .select2-search__field {
        height: 44px !important;
        padding: 10px 16px !important;
        font-size: 16px !important;
        font-family: "Figtree Regular", sans-serif !important;
        border-radius: 8px !important;
        border: 1px solid #E5E7EB !important;
    }
    
    /* Select2 dropdown container */
    .select2-dropdown {
        border-radius: 12px !important;
        border: 1px solid #E5E7EB !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
        font-family: "Figtree Regular", sans-serif !important;
    }
    
    /* Select2 results list */
    .select2-results__options {
        font-family: "Figtree Regular", sans-serif !important;
        font-size: 16px !important;
    }
    
    /* Select2 individual options */
    .select2-results__option {
        padding: 12px 16px !important;
        font-family: "Figtree Regular", sans-serif !important;
        font-size: 16px !important;
    }
    
    /* Select2 highlighted option */
    .select2-results__option--highlighted {
        background-color: #EDE9FE !important;
        color: #1F2937 !important;
    }
    
    /* Select2 selected option */
    .select2-results__option--selected {
        background-color: #7C3AED !important;
        color: white !important;
    }
    
    /* Select2 search container */
    .select2-search--dropdown {
        padding: 12px !important;
    }
}

/* #email-feedback display is controlled by JavaScript - removed display:none!important */
.features-section {
    margin-bottom: 0px;
    padding-bottom: 0px;
}