/* Wholesale Form Styles */
.wfs-form-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #2d3436;
}

.wfs-form-header {
    margin-bottom: 30px;
    border-bottom: 2px solid #f1f2f6;
    padding-bottom: 20px;
}

.wfs-form-header h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.product-info-display {
    font-size: 14px;
    color: #636e72;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
}

.wfs-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.wfs-form-group.full-width {
    grid-column: span 2;
}

.wfs-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2d3436;
}

.wfs-form-group input,
.wfs-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #dfe6e9;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #fbfbfb;
    box-sizing: border-box;
}

.wfs-form-group input:focus,
.wfs-form-group textarea:focus {
    outline: none;
    border-color: #6c5ce7;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
}

.wfs-form-submit {
    margin-top: 20px;
}

.wfs-form-submit button {
    width: 100%;
    padding: 14px;
    background-color: #6c5ce7;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wfs-form-submit button:hover {
    background-color: #5849be;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

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

/* Response Messages */
#wfs-form-response {
    margin-top: 20px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    display: none;
}

#wfs-form-response.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

#wfs-form-response.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* Loader */
.wfs-loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: wfs-spin 1s ease-in-out infinite;
    display: none;
    margin-left: 10px;
}

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

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

button.loading span {
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .wfs-form-grid {
        grid-template-columns: 1fr;
    }
    .wfs-form-group.full-width {
        grid-column: span 1;
    }
}
