/* Modern Checkout Page Styles */

/* Professional Navbar */
.checkout-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkout-navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.navbar-logo {
    display: flex;
    align-items: baseline;
    gap: 2px;
    text-decoration: none;
    font-family:  'Manrope', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.logo-text {
    color: #1a1a2e;
    letter-spacing: -0.5px;
}

.logo-plus {
    background: linear-gradient(135deg, #636cbf 0%, #57a0ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
    font-size: 2rem;
}

.navbar-logo:hover .logo-text {
    color: #636cbf;
}

.navbar-logo:hover .logo-plus {
    transform: rotate(90deg);
    display: inline-block;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: rgba(99, 108, 191, 0.05);
    border: 1px solid rgba(99, 108, 191, 0.15);
    border-radius: 10px;
    color: #636cbf;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-back:hover {
    background: rgba(99, 108, 191, 0.1);
    border-color: rgba(99, 108, 191, 0.3);
    transform: translateX(-3px);
}

.btn-back svg {
    transition: transform 0.3s ease;
}

.btn-back:hover svg {
    transform: translateX(-2px);
}

/* Base Layout with Enhanced Background */
.checkout-page {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 50%, #fff8f0 100%);
    min-height: 100vh;
    position: relative;
}

.checkout-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: radial-gradient(ellipse at top, rgba(99, 108, 191, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.checkout-title {
    font-family:  'Manrope', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a2e;
    position: relative;
    z-index: 1;
}

.checkout-title .gradient-text {
    background: linear-gradient(135deg, #636cbf 0%, #57a0ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Progress Indicator */
.checkout-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.9rem;
    font-weight: 500;
}

.progress-step.active {
    color: #636cbf;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e5e7eb;
}

.progress-step.active .progress-dot {
    background: #636cbf;
    box-shadow: 0 0 0 4px rgba(99, 108, 191, 0.1);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Enhanced Plan Card with Glassmorphism */
.selected-plan-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 108, 191, 0.15);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(99, 108, 191, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.selected-plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #636cbf 0%, #57a0ef 100%);
}

.selected-plan-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(99, 108, 191, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.03);
}

.plan-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.plan-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(99, 108, 191, 0.1) 0%, rgba(87, 160, 239, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #636cbf;
}

.plan-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: #1a1a2e;
}

.rating {
    display: flex;
    gap: 2px;
    margin-top: 4px;
}

.plan-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.plan-highlights li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: #4b5563;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.plan-highlights li:hover {
    background: rgba(99, 108, 191, 0.04);
}

.plan-highlights li svg {
    color: #636cbf;
    flex-shrink: 0;
}

/* Modern Form Styling */
.billing-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #374151;
    font-family: 'Manrope', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label::before {
    content: '';
    width: 3px;
    height: 14px;
    background: linear-gradient(180deg, #636cbf 0%, #57a0ef 100%);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.form-group:focus-within label::before {
    opacity: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.95rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: #1a1a2e;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #d1d5db;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #636cbf;
    box-shadow: 0 0 0 4px rgba(99, 108, 191, 0.1),
        0 2px 8px rgba(99, 108, 191, 0.08);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Enhanced Select Styling */
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23636cbf' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    transition: transform 0.2s ease;
}

.select-wrapper:focus-within::after {
    transform: translateY(-50%) rotate(180deg);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    padding-right: 3rem;
}

/* Modern Checkbox */
.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(99, 108, 191, 0.03);
    border: 2px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}

.form-checkbox:hover {
    background: rgba(99, 108, 191, 0.06);
    border-color: rgba(99, 108, 191, 0.1);
}

.form-checkbox input[type="checkbox"] {
    width: 1.35rem;
    height: 1.35rem;
    accent-color: #636cbf;
    cursor: pointer;
    border-radius: 6px;
}

.form-checkbox label {
    font-size: 0.95rem;
    color: #374151;
    cursor: pointer;
    font-weight: 500;
    user-select: none;
}

/* Enhanced Order Summary */
.order-summary-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.order-summary-card h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.order-summary-card h2::before {
    content: '';
    width: 4px;
    height: 28px;
    background: linear-gradient(180deg, #636cbf 0%, #57a0ef 100%);
    border-radius: 2px;
}

.summary-details {
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: #6b7280;
    padding: 0.5rem 0;
}

.summary-row .label {
    font-weight: 500;
}

.summary-row .value {
    font-weight: 600;
    color: #1a1a2e;
}

.summary-row.total {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a2e;
}

.summary-row.total .value {
    background: linear-gradient(135deg, #636cbf 0%, #57a0ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
    margin: 1.5rem 0;
}

/* Promo Code Section */
.promo-code-section {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.promo-code-section input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.promo-code-section input:focus {
    outline: none;
    border-color: #636cbf;
    box-shadow: 0 0 0 4px rgba(99, 108, 191, 0.1);
}

.btn-redeem {
    background: linear-gradient(135deg, #636cbf 0%, #57a0ef 100%);
    color: white;
    border: none;
    padding: 0 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(99, 108, 191, 0.2);
}

.btn-redeem:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 108, 191, 0.3);
}

.btn-redeem:active {
    transform: translateY(0);
}

/* Main Checkout Button */
.btn-checkout {
    width: 100%;
    background: linear-gradient(135deg, #636cbf 0%, #57a0ef 100%);
    color: white;
    border: none;
    padding: 1.35rem;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(99, 108, 191, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-checkout::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-checkout:hover::before {
    left: 100%;
}

.btn-checkout:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 108, 191, 0.35);
}

.btn-checkout:active {
    transform: translateY(-1px);
}

.secure-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
}

.secure-notice svg {
    color: #10b981;
}

/* Form Validation Styles */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.form-group.error input:focus,
.form-group.error select:focus,
.form-group.error textarea:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.error-message {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 500;
}

.error-message::before {
    content: '⚠';
    font-size: 1rem;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.modal-icon.error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #ef4444;
}

.modal-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.modal-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.error-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.error-list li {
    padding: 0.75rem 1rem;
    background: rgba(239, 68, 68, 0.05);
    border-left: 3px solid #ef4444;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    color: #1a1a2e;
    font-weight: 500;
}

.error-list li::before {
    content: '✕';
    color: #ef4444;
    font-weight: bold;
    margin-right: 0.75rem;
}

.btn-modal-action {
    background: #1a1a2e;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
}

.btn-modal-action:hover {
    background: #2d2d4d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 26, 46, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .order-summary-card {
        position: static;
    }

    .checkout-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {

    /* Navbar Mobile Styles */
    .checkout-navbar .container {
        padding: 0 1.5rem;
    }

    .navbar-content {
        height: 70px;
    }

    .navbar-logo {
        font-size: 1.5rem;
    }

    .logo-plus {
        font-size: 1.75rem;
    }

    .btn-back {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .btn-back span {
        display: none;
        /* Hide text on very small screens */
    }

    .btn-back svg {
        width: 20px;
        height: 20px;
    }

    /* Page adjustments */
    .checkout-page {
        padding: 80px 0 60px;
    }

    .checkout-page::before {
        height: 300px;
    }

    .checkout-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .checkout-progress {
        gap: 0.75rem;
        margin-bottom: 2.5rem;
        flex-wrap: wrap;
    }

    .progress-step {
        font-size: 0.85rem;
    }

    .checkout-grid {
        gap: 2rem;
    }

    .selected-plan-card {
        padding: 1.5rem;
        border-radius: 16px;
        margin-bottom: 1.5rem;
    }

    .plan-header {
        flex-direction: row;
        gap: 1rem;
    }

    .plan-icon-wrapper {
        width: 44px;
        height: 44px;
    }

    .plan-header h3 {
        font-size: 1.25rem;
    }

    .plan-highlights {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .plan-highlights li {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .billing-form {
        padding: 1.75rem;
        border-radius: 16px;
        gap: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem 1.15rem;
        font-size: 16px;
        /* Prevents zoom on iOS */
        border-radius: 10px;
    }

    .form-group label {
        font-size: 0.875rem;
    }

    .form-checkbox {
        padding: 0.9rem;
    }

    .form-checkbox input[type="checkbox"] {
        width: 1.25rem;
        height: 1.25rem;
    }

    .order-summary-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .order-summary-card h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .summary-row {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .summary-row.total {
        font-size: 1.25rem;
    }

    .promo-code-section {
        flex-direction: column;
        gap: 0.75rem;
    }

    .promo-code-section input {
        padding: 1rem 1.15rem;
        font-size: 16px;
    }

    .btn-redeem {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    .btn-checkout {
        padding: 1.25rem;
        font-size: 1.05rem;
        border-radius: 12px;
    }

    .secure-notice {
        font-size: 0.8rem;
        margin-top: 1.25rem;
    }

    .modal-content {
        padding: 2.5rem 2rem;
        border-radius: 16px;
        width: 92%;
    }

    .modal-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }

    .modal-content h3 {
        font-size: 1.4rem;
    }

    .modal-content p {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }

    .btn-modal-action {
        padding: 0.95rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {

    /* Navbar Small Mobile */
    .checkout-navbar .container {
        padding: 0 1rem;
    }

    .navbar-content {
        height: 65px;
    }

    .navbar-logo {
        font-size: 1.35rem;
    }

    .logo-plus {
        font-size: 1.6rem;
    }

    .btn-back {
        padding: 0.55rem 0.85rem;
    }

    /* Page adjustments */
    .checkout-page {
        padding: 70px 0 50px;
    }

    .checkout-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .checkout-progress {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .progress-step {
        font-size: 0.75rem;
        gap: 0.35rem;
    }

    .progress-dot {
        width: 6px;
        height: 6px;
    }

    .selected-plan-card {
        padding: 1.25rem;
    }

    .plan-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .plan-header h3 {
        font-size: 1.15rem;
    }

    .billing-form {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.95rem 1rem;
    }

    .order-summary-card {
        padding: 1.75rem;
    }

    .order-summary-card h2 {
        font-size: 1.35rem;
    }

    .summary-row.total {
        font-size: 1.15rem;
    }

    .btn-checkout {
        padding: 1.15rem;
        font-size: 1rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .modal-icon {
        width: 55px;
        height: 55px;
    }

    .modal-content h3 {
        font-size: 1.25rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {

    .form-group input,
    .form-group select,
    .form-group textarea,
    .btn-checkout,
    .btn-redeem,
    .btn-modal-action {
        min-height: 48px;
        /* Minimum touch target size */
    }

    .form-checkbox {
        min-height: 48px;
        padding: 0.75rem 1rem;
    }

    /* Disable hover effects on touch devices */
    .selected-plan-card:hover,
    .btn-checkout:hover,
    .btn-redeem:hover,
    .btn-modal-action:hover {
        transform: none;
    }

    /* Keep focus effects for accessibility */
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        transform: none;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .checkout-page {
        padding: 60px 0 40px;
    }

    .checkout-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .checkout-progress {
        margin-bottom: 1.5rem;
    }

    .selected-plan-card,
    .billing-form,
    .order-summary-card {
        padding: 1.5rem;
    }
}

/* Loading Spinner Styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.spinner-container {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(99, 108, 191, 0.1);
    border-top: 4px solid #636cbf;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.spinner-container p {
    color: #1a1a2e;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}
