/**
 * Checkout Integrado - Estilos
 * Baseado no modelo fornecido com otimizações
 */

:root {
    --primary-green: #4a9b8e;
    --primary-green-dark: #3d8278;
    --secondary-green: #6fb3a7;
    --light-green: #10b981;
    --accent-orange: #ff8c00;
    --accent-orange-dark: #e67e00;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #fafafa;
    --border-color: #e5e7eb;
    --white: #ffffff;
    --danger: #ef4444;
    --warning: #f59e0b;
    --success: #10b981;
}

/* ==================== PROGRESS STEPS ==================== */
.checkout-steps-wrapper {
    background: var(--white);
    padding: 2rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.progress-line {
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #e0e0e0;
    z-index: 0;
}

.progress-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--primary-green);
    width: 0%;
    transition: width 0.5s ease;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    background: var(--bg-light);
    padding: 0 10px;
}

.step-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #999;
    transition: all 0.3s ease;
}

.step-item.active .step-circle {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
}

.step-item.completed .step-circle {
    background: var(--success);
    border-color: var(--success);
    color: var(--white);
}

.step-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
}

.step-item.active .step-label {
    color: var(--primary-green);
    font-weight: 600;
}

/* ==================== CHECKOUT SECTION ==================== */
.checkout-section {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ==================== SOCIAL LOGIN ==================== */
.social-login-section {
    margin-bottom: 2rem;
}

.social-buttons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.google-btn {
    border-color: #db4437;
    color: #db4437;
}

.google-btn:hover {
    background: #db4437;
    color: var(--white);
    text-decoration: none;
}

.google-btn svg path {
    transition: fill 0.3s ease;
}

.google-btn:hover svg path {
    fill: var(--white) !important;
}

.facebook-btn {
    border-color: #4267B2;
    color: #4267B2;
}

.facebook-btn:hover {
    background: #4267B2;
    color: var(--white);
    text-decoration: none;
}

.facebook-btn svg path {
    transition: fill 0.3s ease;
}

.facebook-btn:hover svg path {
    fill: var(--white) !important;
}

.social-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-divider::before,
.social-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.existing-user-link {
    margin-top: 1rem;
    padding-top: 1rem;
}

.existing-user-link p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.login-link {
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-link:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

/* ========================================
    NOVO: ESTILOS DO CAMPO EMAIL MELHORADO
    ======================================== */

.email-explainer-badge {
    background: linear-gradient(135deg, #e7f3ff 0%, #cce7ff 100%);
    border: 2px solid #0066cc;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: start;
    gap: 12px;
    animation: fadeInUp 0.5s ease;
}

.email-explainer-badge i {
    font-size: 1.5rem;
    color: #0066cc;
    flex-shrink: 0;
    margin-top: 2px;
}

.email-explainer-badge strong {
    color: #0066cc;
    font-size: 1rem;
    margin-bottom: 4px;
}

.email-explainer-badge p {
    margin: 0;
    font-size: 0.875rem;
    color: #333;
    line-height: 1.5;
    display: block;
}

.trust-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    animation: fadeInUp 0.6s ease;
}

.trust-badge {
    background: #28a745;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.email-security-text {
    margin: 8px 0 12px 0;
    font-size: 0.8125rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 6px;
}

.email-security-text i {
    color: #28a745;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ==================== FORM ELEMENTS ==================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.required {
    color: var(--danger);
    margin-left: 2px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #95a5a6;
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(74, 155, 142, 0.1);
}

.form-divider {
    margin: 2rem 0;
    border: none;
    border-top: 2px solid #f0f0f0;
}

/* ==================== PAYMENT OPTIONS ==================== */
.payment-methods {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-option {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.payment-option:hover {
    border-color: var(--primary-green);
    background: #f8fffe;
}

.payment-option.selected {
    border-color: var(--primary-green);
    background: #e8f5f1;
    box-shadow: 0 0 0 3px rgba(74, 155, 142, 0.1);
}

.payment-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #bdc3c7;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-option.selected .payment-radio {
    border-color: var(--primary-green);
}

.radio-dot {
    width: 10px;
    height: 10px;
    background: transparent;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.payment-option.selected .radio-dot {
    background: var(--primary-green);
}

.payment-icon {
    font-size: 1.5rem;
    color: var(--primary-green);
    flex-shrink: 0;
}

.payment-info {
    flex: 1;
}

.payment-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-description {
    font-size: 0.85rem;
    color: var(--text-light);
}

.payment-badge {
    background: #fef3c7;
    color: #92400e;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* ==================== CHECKOUT BUTTON ==================== */
.btn-checkout-final {
    width: 100%;
    padding: 1rem;
    background: #27ae60;
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    margin-top: 1.5rem;
}

.btn-checkout-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.btn-checkout-final:active {
    transform: translateY(0);
}

/* ==================== ORDER SUMMARY SIDEBAR ==================== */
.order-summary-sidebar {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    top: 20px;
    z-index: 1;
}

.summary-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.urgency-counter {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #92400e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Summary Items */
.summary-items {
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item .item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.summary-item .item-details {
    flex: 1;
    min-width: 0;
}

.summary-item .item-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.summary-item a.item-name {
    text-decoration: none;
    color: var(--primary-green);
    transition: color 0.2s ease;
}

.summary-item a.item-name:hover {
    color: var(--primary-green-dark);
    text-decoration: underline;
}

.summary-item .item-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.summary-item .item-category {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.preview-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}

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

.summary-item .item-price {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 1rem;
}

.btn-remove-item {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1rem;
    opacity: 0.7;
}

.btn-remove-item:hover {
    opacity: 1;
    background: #fff5f5;
    transform: scale(1.1);
}

/* Coupon Section in Summary */
.coupon-section-summary {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.coupon-input-group {
    display: flex;
    gap: 0.5rem;
}

.coupon-input {
    flex: 1;
    padding: 0.6rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.btn-apply-coupon {
    padding: 0.6rem 1rem;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-apply-coupon:hover {
    background: var(--primary-green-dark);
}

/* Applied Coupon Box */
.applied-coupon-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: #e8f5e9;
    border: 1px solid var(--light-green);
    border-radius: 6px;
}

.coupon-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.coupon-info i {
    font-size: 1.2rem;
}

.coupon-info strong {
    color: var(--primary-green);
    font-size: 0.95rem;
}

.coupon-info small {
    font-size: 0.8rem;
    color: #666;
}

.btn-remove-coupon {
    background: none;
    border: none;
    color: var(--danger);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-remove-coupon:hover {
    color: #c82333;
    transform: scale(1.1);
}

/* ==================== ACESSO VITALÍCIO INCLUÍDO (Version 1 with Special Effects) ==================== */
.order-totals-summary .po-destaque-v1 {
    border: 2px solid #0f5323;
    background: #f2fff6;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(74, 155, 142, 0);
    }
    50% {
        box-shadow: 0 0 20px rgba(74, 155, 142, 0.3);
    }
}

.order-totals-summary .po-destaque-v1::before {
    content: '\F5AA';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.order-totals-summary .po-destaque-v1 .destaque-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f5323;
    margin-bottom: 1rem;
}

.order-totals-summary .destaque-icon {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.order-totals-summary .po-destaque-v1 ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.order-totals-summary .po-destaque-v1 li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.order-totals-summary .po-destaque-v1 li::before {
    content: '\F26A';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #0f5323;
    font-weight: 700;
    font-size: 1.125rem;
    animation: checkPop 0.5s ease;
}

@keyframes checkPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.order-totals-summary .po-destaque-v1 li:nth-child(1)::before {
    animation-delay: 0.1s;
}

.order-totals-summary .po-destaque-v1 li:nth-child(2)::before {
    animation-delay: 0.3s;
}

.order-totals-summary .po-destaque-v1 li:nth-child(3)::before {
    animation-delay: 0.5s;
}

.order-totals-summary .po-destaque-v1 strong {
    color: #0f5323;
    position: relative;
    display: inline-block;
}

.order-totals-summary .po-destaque-v1 li:first-child strong {
    background: linear-gradient(
        120deg,
        #0f5323 0%,
        var(--primary-green) 50%,
        #0f5323 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    font-weight: 800;
    letter-spacing: -0.02em;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 200% center;
    }
    50% {
        background-position: 0% center;
    }
}

.order-totals-summary .po-destaque-v1 li:first-child strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #0f5323 50%,
        transparent 100%
    );
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Trust Badges */
.order-totals-summary .trust-badges {
    display: flex;
    justify-content: space-around;
    padding: 1.5rem 0;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.order-totals-summary .trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.8125rem;
    text-align: center;
    background: none;
}

.order-totals-summary .trust-badge-icon {
    font-size: 1.5rem;
    color: #1a7f37;
}

/* Order Totals */
.order-totals-summary {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-green);
}

.total-row.discount-row {
    color: var(--success);
}

.total-row.total-final {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--primary-green);
}

/* Trust Badges inside Order Summary */
.order-totals-summary .trust-badges-summary {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.order-totals-summary .trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.order-totals-summary .trust-item:last-child {
    margin-bottom: 0;
}

.order-totals-summary .trust-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
    flex-shrink: 0;
}

/* ==================== EMPTY CART ==================== */
.empty-cart-message {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    font-size: 5rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.empty-cart-message h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.empty-cart-message p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-go-shopping {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-go-shopping:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
}

/* ==================== USER LOGGED INFO ==================== */
.user-logged-info {
    margin-bottom: 1.5rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .social-buttons-grid {
        grid-template-columns: 1fr;
    }

    .order-summary-sidebar {
        position: static !important;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .step-label {
        font-size: 0.75rem;
    }

    .step-circle {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .checkout-section {
        padding: 1.5rem;
    }

    .coupon-input-group {
        flex-direction: column;
    }

    .btn-apply-coupon {
        width: 100%;
    }

    /* Responsive - Bloco de Destaque */
    .po-destaque-v1 {
        padding: 1.25rem;
    }

    .po-destaque-v1 .destaque-title {
        font-size: 1rem;
    }

    .po-destaque-v1 li {
        padding-left: 1.75rem;
        font-size: 0.9rem;
    }

    .po-destaque-v1 li::before {
        font-size: 1rem;
        top: 0.85rem;
    }
}

/* ==================== LOGIN MODAL ==================== */
.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.modal-header {
    padding: 1.5rem 1.5rem 0.5rem;
}

.modal-title {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-body {
    padding: 1.5rem;
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.btn-toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.btn-toggle-password:hover {
    color: var(--primary-green);
}

.btn-login-modal {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 155, 142, 0.3);
}

.btn-login-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 155, 142, 0.4);
}

.form-check-input:checked {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.form-check-label {
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Modal backdrop */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.6);
}

/* Responsive modal */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 0.5rem;
    }

    .modal-title {
        font-size: 1.25rem;
    }

    .social-buttons-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== WHY FAST INFO BOX ==================== */
.why-fast-info-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #bae6fd;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.why-fast-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #203A24;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.why-fast-title i {
    font-size: 1.3rem;
    color: #203A24;
}

.why-fast-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.why-fast-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #203A24;
    line-height: 1.5;
}

.why-fast-list li i {
    font-size: 1.1rem;
    color: #27ae60;
    margin-top: 2px;
    flex-shrink: 0;
}

.why-fast-list li span {
    flex: 1;
}

/* PASSWORD INFO BOX */
.password-info {
    background: #d4ede5;
    border-left: 4px solid #4a9b8e;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.password-info i {
    color: #4a9b8e;
    font-size: 1.3rem;
    margin-top: 2px;
}

.password-info-text h4 {
    color: #1f2937;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.password-info-text p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive - Why Fast Info Box */
@media (max-width: 768px) {
    .why-fast-info-box {
        padding: 1.25rem;
    }

    .why-fast-title {
        font-size: 1rem;
    }

    .why-fast-list li {
        font-size: 0.9rem;
    }
}

/* ==================== EMAIL INPUT ERROR STATE ==================== */
.input-wrapper.error .form-control {
    border-color: #ff6b9d !important;
    background: #fff5f8 !important;
}

.input-wrapper.error .input-icon {
    color: #ff6b9d !important;
}

.form-control.error {
    border-color: #ff6b9d !important;
    background: #fff5f8 !important;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-8px); }
    20%, 40%, 60%, 80% { transform: translateX(8px); }
}

/* EMAIL INFO BOX */
.email-info-box {
    background: #fff5f8;
    border: 2px solid #ff6b9d;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.75rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.email-info-box i {
    color: #ff6b9d;
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.email-info-text {
    flex: 1;
}

.email-info-text strong {
    color: #1f2937;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.25rem;
}

.email-info-text p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.email-info-text p strong {
    display: inline;
    color: #1f2937;
    font-size: inherit;
}

/* Responsive - Email Info Box */
@media (max-width: 768px) {
    .email-info-box {
        padding: 0.875rem;
    }

    .email-info-box i {
        font-size: 1.1rem;
    }

    .email-info-text strong {
        font-size: 0.9rem;
    }

    .email-info-text p {
        font-size: 0.85rem;
    }
}

/* ==================== EMAIL REQUIRED ALERT (TOP RIGHT) ==================== */
.email-required-alert {
    background: #fff;
    border: 2px solid #ff6b9d;
    border-left: 4px solid #ff6b9d;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.15);
    animation: slideInDown 0.3s ease;
    position: relative;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.email-required-alert > i {
    color: #ff6b9d;
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.email-required-text {
    flex: 1;
}

.email-required-text strong {
    color: #1f2937;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.25rem;
}

.email-required-text p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

.btn-close-alert {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    font-size: 1.25rem;
    line-height: 1;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.btn-close-alert:hover {
    color: #ff6b9d;
}

/* Responsive - Email Required Alert */
@media (max-width: 768px) {
    .email-required-alert {
        padding: 0.875rem;
    }

    .email-required-alert > i {
        font-size: 1.3rem;
    }

    .email-required-text strong {
        font-size: 0.9rem;
    }

    .email-required-text p {
        font-size: 0.825rem;
    }
}

/* ==================== EMAIL TOAST NOTIFICATION (TOP RIGHT) ==================== */
.email-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-left: 5px solid #ff6b9d;
    border-radius: 12px;
    padding: 18px 22px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    opacity: 0;
    transform: translateX(450px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
    max-width: 420px;
    min-width: 350px;
}

.email-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.email-toast .toast-icon {
    font-size: 1.75rem;
    color: #ff6b9d;
    flex-shrink: 0;
}

.email-toast .toast-content {
    flex: 1;
}

.email-toast .toast-title {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
    font-size: 1rem;
}

.email-toast .toast-message {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.5;
}

.email-toast .toast-close {
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    font-size: 1.25rem;
    padding: 4px;
    transition: color 0.2s;
    flex-shrink: 0;
}

.email-toast .toast-close:hover {
    color: #1f2937;
}

/* Responsive - Email Toast */
@media (max-width: 768px) {
    .email-toast {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        min-width: 0;
        padding: 16px 18px;
    }

    .email-toast .toast-icon {
        font-size: 1.5rem;
    }

    .email-toast .toast-title {
        font-size: 0.95rem;
    }

    .email-toast .toast-message {
        font-size: 0.875rem;
    }
}
