/* Wholesale page */

.nav-active {
    color: var(--sage) !important;
}

/* How It Works */
.how-it-works-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.how-step {
    flex: 1;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 0 2rem;
}

.how-step:first-child { padding-left: 0; }
.how-step:last-child { padding-right: 0; }

.how-step-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--forest);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 500;
}

.how-step-content h3 {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.how-step-content p {
    font-size: 0.88rem;
    color: #5e574e;
    line-height: 1.85;
}

.how-step-content p a {
    color: var(--warm-brown);
    text-decoration: none;
}

.how-step-content p a:hover {
    text-decoration: underline;
}

.how-step-divider {
    width: 1px;
    align-self: stretch;
    background: var(--light-gray);
    margin: 0.25rem 0;
    flex-shrink: 0;
}

/* In-situ display image */
.insitu-display {
    margin-top: 2.5rem;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.insitu-display::after {
    content: '';
    position: absolute;
    inset: 1.25rem;
    border: 1.5px solid rgba(255,255,255,0.55);
    pointer-events: none;
    border-radius: 4px;
}

.insitu-display-img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.insitu-photo-placeholder span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.insitu-photo-placeholder p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.6;
}

/* FAQ */
.faq-group {
    margin-bottom: 2.75rem;
}

.faq-group-title {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--warm-brown);
    font-weight: 600;
    margin-bottom: 0.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--light-gray);
}

.faq-item {
    border-bottom: 1px solid var(--light-gray);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 0.93rem;
    color: var(--charcoal);
    font-weight: 600;
    gap: 1rem;
    transition: color 0.2s;
}

.faq-question:hover { color: var(--forest); }

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--sage);
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.2s;
}

.faq-item.open .faq-question { color: var(--forest); }

.faq-item.open .faq-question::after {
    content: '\2212';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 2000px;
    padding-bottom: 1.1rem;
}

.faq-answer p {
    font-size: 0.9rem;
    color: #5e574e;
    line-height: 1.85;
}

/* Contact section */
.wholesale-contact {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.wholesale-contact-text {
    flex: 1;
    min-width: 280px;
}

.wholesale-contact-text h2 {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.wholesale-contact-text p {
    color: rgba(255,255,255,0.82);
    font-size: 0.95rem;
    line-height: 1.8;
}

.wholesale-contact-methods {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.contact-method h3 {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sage-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-method a {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1.35rem;
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-method a:hover { color: var(--sage-light); }

.wholesale-contact-email-alt {
    margin-top: 1.25rem;
    font-size: 0.85rem !important;
}

.wholesale-contact-email-alt a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.wholesale-contact-email-alt a:hover {
    color: var(--sage-light);
}

.wholesale-contact-form-wrap {
    flex: 1;
    min-width: 300px;
    max-width: 480px;
}

.wholesale-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contact-form-field label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.65);
}

.contact-form-field input,
.contact-form-field textarea {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    padding: 0.65rem 0.9rem;
    color: white;
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.2s, background 0.2s;
    resize: vertical;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
    outline: none;
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.15);
}

.contact-form-success p {
    color: white;
    font-size: 0.95rem;
    line-height: 1.8;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
}

.contact-form-error-global {
    color: #fca5a5;
    font-size: 0.82rem;
    margin-bottom: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(220,38,38,0.15);
    border: 1px solid rgba(220,38,38,0.3);
    border-radius: 6px;
}


.contact-form-submit {
    margin-top: 0.25rem;
    padding: 0.75rem 2rem;
    background: white;
    color: var(--forest);
    border: none;
    border-radius: 40px;
    font-family: inherit;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.2s, color 0.2s;
}

.contact-form-submit:hover {
    background: var(--sage-light);
    color: var(--forest);
}

/* Display preview button */
.display-preview-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: 1px solid var(--sage);
    color: var(--sage);
    border-radius: 40px;
    padding: 0.15rem 0.55rem;
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    vertical-align: middle;
    margin-left: 0.5rem;
    transition: background 0.2s, color 0.2s;
    font-family: inherit;
    line-height: 1.4;
}

.display-preview-btn:hover {
    background: var(--sage);
    color: white;
}

/* Responsive */
@media (max-width: 900px) {
    .how-it-works-steps {
        flex-direction: column;
        gap: 1.75rem;
    }
    .how-step { padding: 0; }
    .how-step-divider { display: none; }
    .wholesale-contact { flex-direction: column; gap: 2rem; }
    .wholesale-contact-form-wrap { max-width: 100%; width: 100%; }
}

