/* Wholesale Application Form — Gothic Theme */
.hbs-wholesale-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}
.hbs-wholesale-form__header {
    text-align: center;
    margin-bottom: 40px;
}
.hbs-wholesale-form__header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
}
.hbs-wholesale-form__header p {
    color: var(--smoke);
    font-size: .95rem;
    line-height: 1.7;
}

.hbs-form__section {
    margin-bottom: 32px;
    padding: 24px;
    background: var(--stone);
    border: 1px solid var(--dark-gray);
}
.hbs-form__section h3 {
    font-family: var(--font-heading);
    font-size: .85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--dark-gray);
}

.hbs-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.hbs-form__field label {
    display: block;
    font-family: var(--font-heading);
    font-size: .75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--parchment);
    margin-bottom: 6px;
}
.hbs-form__field input,
.hbs-form__field select,
.hbs-form__field textarea {
    width: 100%;
    background: var(--charcoal);
    border: 1px solid var(--dark-gray);
    color: var(--parchment);
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: .9rem;
    transition: border-color .3s;
}
.hbs-form__field input:focus,
.hbs-form__field select:focus,
.hbs-form__field textarea:focus {
    border-color: var(--gold);
    outline: none;
}
.hbs-form__field select[multiple] {
    min-height: 100px;
}
.hbs-form__field--full {
    margin-top: 16px;
}

.hbs-form__submit {
    text-align: center;
    margin-top: 24px;
}
.hbs-form__submit .btn {
    min-width: 240px;
}

.hbs-form__response {
    margin-top: 20px;
    padding: 16px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: .85rem;
    letter-spacing: 1px;
}
.hbs-form__response--success {
    background: rgba(197,154,46,.1);
    border: 1px solid var(--gold);
    color: var(--gold);
}
.hbs-form__response--error {
    background: rgba(215,25,25,.1);
    border: 1px solid var(--hell-red);
    color: var(--hell-red);
}

@media (max-width: 768px) {
    .hbs-form__row { grid-template-columns: 1fr; }
    .hbs-wholesale-form { padding: 20px 0; }
    .hbs-form__section { padding: 16px; }
}
