@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Hind+Siliguri:wght@400;500;600;700&display=swap');

/**
 * WooCommerce Fast Checkout CSS Variables & Theme Styles
 */
:root {
    --wfc-primary-color: #1a202c;
    --wfc-primary-hover: #2d3748;
    --wfc-bg-color: #ffffff;
    --wfc-border-radius: 8px;
    --wfc-font-family: 'Outfit', 'Hind Siliguri', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --wfc-text-color: #2d3748;
    --wfc-label-color: #4a5568;
    --wfc-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --wfc-border-color: #edf2f7;
}

/* Base Widget CSS */
.wfc-checkout-wrapper {
    font-family: var(--wfc-font-family);
    color: var(--wfc-text-color);
    background-color: var(--wfc-bg-color);
    border-radius: var(--wfc-border-radius);
    max-width: 1000px;
    margin: 20px auto;
    position: relative;
    box-sizing: border-box;
}

.wfc-checkout-wrapper * {
    box-sizing: border-box;
}

/* Two column layout */
.wfc-widget-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 32px;
}

@media (max-width: 768px) {
    .wfc-widget-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Premium Form Input Custom Styles */
.wfc-checkout-wrapper input,
.wfc-checkout-wrapper select,
.wfc-checkout-wrapper textarea {
    font-family: var(--wfc-font-family);
    border: 1.5px solid #cbd5e0 !important;
    border-radius: var(--wfc-border-radius) !important;
    padding: 12px 16px !important;
    outline: none;
    transition: all 0.2s ease-in-out;
    font-size: 14px;
    background: #ffffff;
    width: 100%;
}

.wfc-checkout-wrapper input:focus,
.wfc-checkout-wrapper select:focus,
.wfc-checkout-wrapper textarea:focus {
    border-color: var(--wfc-primary-color, #1a202c) !important;
    box-shadow: 0 0 0 4px rgba(26, 32, 44, 0.08) !important;
}

/* Section Title */
.wfc-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--wfc-primary-color);
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--wfc-border-color);
    padding-bottom: 8px;
}

/* Success State Screen */
.wfc-success-container {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: var(--wfc-border-radius);
    box-shadow: var(--wfc-shadow);
    border-top: 5px solid #38a169;
}

.wfc-success-icon {
    width: 80px;
    height: 80px;
    background-color: #c6f6d5;
    color: #38a169;
    font-size: 40px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 24px auto;
    display: inline-block;
    font-weight: bold;
}

.wfc-success-container h2 {
    font-size: 24px;
    color: var(--wfc-primary-color);
    margin-bottom: 12px;
}

.wfc-success-container p {
    color: #718096;
    font-size: 16px;
}
