/* SMT Wholesale — Frontend Styles */

/* Registration Form */
.smt-ws-registration { max-width: 720px; margin: 0 auto; }
.smt-ws-form-header { margin-bottom: 32px; }
.smt-ws-form-header h2 {
    font-size: 28px; font-weight: 400; margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
}
.smt-ws-form-header p { color: #666; font-size: 15px; line-height: 1.6; }
.smt-ws-form-section { margin-bottom: 28px; }
.smt-ws-form-section h3 {
    font-size: 14px; text-transform: uppercase; letter-spacing: 2px;
    color: #999; font-weight: 600; margin-bottom: 16px;
    padding-bottom: 8px; border-bottom: 1px solid #eee;
}
.smt-ws-form-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.smt-ws-field { display: flex; flex-direction: column; }
.smt-ws-field.full-width { grid-column: span 2; }
.smt-ws-field label {
    font-size: 13px; font-weight: 500; margin-bottom: 6px; color: #333;
}
.smt-ws-field label .required { color: #c0392b; }
.smt-ws-field input,
.smt-ws-field select,
.smt-ws-field textarea {
    padding: 10px 14px; border: 1.5px solid #ddd;
    font-size: 15px; font-family: inherit; border-radius: 0;
    transition: border-color 0.3s; background: white;
}
.smt-ws-field input:focus,
.smt-ws-field select:focus,
.smt-ws-field textarea:focus {
    border-color: #b8965a; outline: none;
}
.smt-ws-form-submit { margin-top: 24px; }
.smt-ws-submit-btn {
    display: block; width: 100%; padding: 14px;
    background: #1a1714; color: #faf8f5; border: none;
    font-size: 15px; font-weight: 600; letter-spacing: 0.5px;
    cursor: pointer; transition: background 0.3s;
    font-family: inherit;
}
.smt-ws-submit-btn:hover { background: #b8965a; }
.smt-ws-form-note {
    margin-top: 12px; font-size: 12px; color: #999; text-align: center;
}

/* Notices */
.smt-ws-notice {
    padding: 16px 20px; margin-bottom: 20px;
    border-radius: 2px; font-size: 14px; line-height: 1.6;
}
.smt-ws-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.smt-ws-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.smt-ws-pending { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }

/* Wholesale badge on product cards */
.smt-ws-badge {
    position: absolute; top: 10px; right: 10px; z-index: 2;
    background: #2271b1; color: white;
    font-size: 10px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; padding: 4px 10px;
}

/* Wholesale notice on single product */
.smt-ws-product-notice {
    display: flex; align-items: center; gap: 6px;
    color: #00a32a; font-size: 13px; font-weight: 600;
    margin-bottom: 8px;
}
.smt-ws-product-notice svg { stroke: #00a32a; flex-shrink: 0; }
.smt-ws-savings {
    font-size: 13px; color: #b8965a; font-weight: 500; margin-bottom: 12px;
}

/* Login page link */
.smt-ws-login-link {
    margin-top: 16px; padding-top: 16px;
    border-top: 1px solid #eee; font-size: 14px;
}
.smt-ws-login-link a { color: #b8965a; font-weight: 500; }

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