/**
 * Arcform BE Hive Marketplace Styles
 *
 * Browse, listing detail, create wizard, messaging, offers,
 * transactions, favorites, seller profile.
 * Extends shared.css dark-theme component library.
 *
 * @package Arcform
 * @since 2.0.0
 */

/* ==========================================================================
   Layout
   ========================================================================== */

.arcform-behive {
    max-width: 1080px;
    margin: 0 auto;
    padding: 24px;
    font-family: var(--arc-font);
    color: var(--arc-text);
}

/* ==========================================================================
   Page Header
   ========================================================================== */

.behive-header {
    text-align: center;
    margin-bottom: 32px;
}

.behive-header__title {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--arc-gold);
}

.behive-header__tagline {
    margin: 8px 0 0;
    font-size: 1rem;
}

/* ==========================================================================
   Search
   ========================================================================== */

.behive-search {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.behive-search__input {
    flex: 1;
}

/* ==========================================================================
   Filters
   ========================================================================== */

.behive-filters {
    margin-bottom: 8px;
}

.behive-filters__row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.arc-input--sm,
.arc-select--sm {
    padding: 8px 12px;
    font-size: 0.8125rem;
}

.arc-select--sm {
    padding-right: 30px;
    background-position: right 10px center;
}

.behive-results-count {
    font-size: 0.875rem;
}

/* ==========================================================================
   Listing Cards (Browse Grid)
   ========================================================================== */

.behive-listing-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    background: var(--arc-bg-surface);
    border: 1px solid var(--arc-border);
    border-radius: var(--arc-radius-lg);
    transition: border-color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.behive-listing-card:hover {
    border-color: var(--arc-gold-muted);
    transform: translateY(-2px);
}

.behive-listing-card__img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--arc-bg-elevated);
}

.behive-listing-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.behive-listing-card:hover .behive-listing-card__img img {
    transform: scale(1.05);
}

.behive-listing-card__img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    opacity: 0.3;
}

.behive-listing-card__body {
    padding: 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.behive-listing-card__model {
    font-size: 0.75rem;
    color: var(--arc-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 2px;
}

.behive-listing-card__name {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--arc-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.behive-listing-card__price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.behive-listing-card__price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--arc-gold);
}

.behive-listing-card__condition {
    font-size: 0.6875rem;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 600;
}

.behive-listing-card__condition--mint {
    background: rgba(95, 206, 171, 0.15);
    color: var(--arc-teal);
}

.behive-listing-card__condition--excellent {
    background: rgba(204, 168, 107, 0.15);
    color: var(--arc-gold-light);
}

.behive-listing-card__condition--good {
    background: rgba(123, 163, 201, 0.15);
    color: var(--arc-info);
}

.behive-listing-card__condition--fair {
    background: var(--arc-bg-elevated);
    color: var(--arc-text-muted);
}

.behive-listing-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--arc-text-muted);
    margin-top: auto;
}

.behive-listing-card__verified {
    color: var(--arc-teal);
}

.behive-listing-card__footer {
    padding: 10px 16px;
    border-top: 1px solid var(--arc-border);
    display: flex;
    justify-content: flex-end;
}

.behive-listing-card__fav {
    background: none;
    border: none;
    color: var(--arc-text-muted);
    font-size: 1.125rem;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
}

.behive-listing-card__fav:hover,
.behive-listing-card__fav.saved {
    color: var(--arc-error);
}

/* ==========================================================================
   Listing Detail
   ========================================================================== */

.behive-listing-content {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    margin-top: 24px;
}

@media (max-width: 768px) {
    .behive-listing-content {
        grid-template-columns: 1fr;
    }
}

.behive-listing-gallery {
    margin-top: 16px;
}

.behive-listing-gallery__main {
    width: 100%;
    max-height: 500px;
    border-radius: var(--arc-radius-lg);
    overflow: hidden;
    background: var(--arc-bg-elevated);
    margin-bottom: 12px;
    cursor: pointer;
}

.behive-listing-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 500px;
}

.behive-listing-gallery__thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.behive-listing-gallery__thumb {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: var(--arc-radius);
    overflow: hidden;
    border: 2px solid var(--arc-border);
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.behive-listing-gallery__thumb:hover,
.behive-listing-gallery__thumb.active {
    border-color: var(--arc-gold);
}

.behive-listing-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Price block */
.behive-listing-price-block {
    margin-bottom: 24px;
}

.behive-listing-price-block__price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--arc-gold);
    margin: 0;
}

.behive-listing-price-block__status {
    font-size: 0.875rem;
    color: var(--arc-text-sec);
    margin-top: 4px;
}

/* Details */
.behive-listing-details {
    margin-bottom: 24px;
}

.behive-listing-detail-row {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--arc-border);
}

.behive-listing-detail-row:last-child {
    border-bottom: none;
}

.behive-listing-detail-row__label {
    flex-shrink: 0;
    width: 140px;
    font-size: 0.8125rem;
    color: var(--arc-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.behive-listing-detail-row__value {
    color: var(--arc-text-sec);
    font-size: 0.9375rem;
}

/* Archive link card */
.behive-listing-archive {
    margin-bottom: 24px;
}

.behive-archive-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: var(--arc-bg-surface);
    border: 1px solid var(--arc-border);
    border-radius: var(--arc-radius-lg);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease;
}

.behive-archive-link:hover {
    border-color: var(--arc-gold-muted);
}

.behive-archive-link__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.behive-archive-link__title {
    font-weight: 700;
    color: var(--arc-gold);
}

.behive-archive-link__stats {
    font-size: 0.8125rem;
    color: var(--arc-text-muted);
}

.behive-archive-link__arrow {
    font-size: 1.25rem;
    color: var(--arc-gold);
}

/* Shipping */
.behive-listing-shipping {
    margin-bottom: 24px;
    font-size: 0.9375rem;
    color: var(--arc-text-sec);
}

/* Seller card (sidebar) */
.behive-seller-card {
    background: var(--arc-bg-surface);
    border: 1px solid var(--arc-border);
    border-radius: var(--arc-radius-lg);
    padding: 20px;
}

.behive-seller-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.behive-seller-card__name {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--arc-text);
}

.behive-seller-card__rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--arc-gold-light);
}

.behive-seller-card__meta {
    font-size: 0.8125rem;
    color: var(--arc-text-muted);
    margin-bottom: 16px;
}

.behive-seller-card__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Listing actions */
.behive-listing-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ==========================================================================
   Create Listing Wizard
   ========================================================================== */

.behive-wizard__steps {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 32px;
}

.behive-wizard__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: 60px;
    padding: 8px 4px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--arc-text-muted);
    border-bottom: 3px solid var(--arc-border);
    transition: all 0.2s ease;
}

.behive-wizard__step small {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.behive-wizard__step.active {
    color: var(--arc-gold);
    border-bottom-color: var(--arc-gold);
}

.behive-wizard__step.completed {
    color: var(--arc-teal);
    border-bottom-color: var(--arc-teal);
}

.behive-wizard__panel {
    display: none;
    min-height: 200px;
}

.behive-wizard__panel.active {
    display: block;
}

.behive-wizard__panel h3 {
    margin: 0 0 20px;
    font-size: 1.125rem;
    color: var(--arc-text);
}

/* Instrument select */
.behive-instrument-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.behive-instrument-option input[type="radio"] {
    display: none;
}

.behive-instrument-option:has(input:checked) {
    border-color: var(--arc-gold);
    background: rgba(204, 168, 107, 0.05);
}

/* Fee preview */
.behive-fee-preview {
    max-width: 400px;
}

/* Photo upload */
.behive-photo-dropzone {
    border: 2px dashed var(--arc-border);
    border-radius: var(--arc-radius-lg);
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease;
    position: relative;
}

.behive-photo-dropzone:hover,
.behive-photo-dropzone.drag-over {
    border-color: var(--arc-gold-muted);
}

.behive-photo-dropzone__icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 8px;
    opacity: 0.6;
}

.behive-photo-dropzone__input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.behive-photo-previews {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.behive-photo-preview {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: var(--arc-radius);
    overflow: hidden;
    border: 1px solid var(--arc-border);
}

.behive-photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.behive-photo-preview__remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   Messages — Two-pane
   ========================================================================== */

.behive-messages {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    border: 1px solid var(--arc-border);
    border-radius: var(--arc-radius-lg);
    overflow: hidden;
    min-height: 500px;
    background: var(--arc-bg-surface);
}

@media (max-width: 768px) {
    .behive-messages {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .behive-messages__list.has-active {
        display: none;
    }

    .behive-messages__empty {
        display: none;
    }
}

/* Conversation list */
.behive-messages__list {
    border-right: 1px solid var(--arc-border);
    overflow-y: auto;
    max-height: 600px;
}

.behive-convo {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--arc-border);
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.behive-convo:hover {
    background: var(--arc-bg-elevated);
}

.behive-convo.active {
    background: var(--arc-bg-elevated);
    border-left: 3px solid var(--arc-gold);
    padding-left: 13px;
}

.behive-convo__info {
    flex: 1;
    min-width: 0;
}

.behive-convo__name {
    font-weight: 600;
    color: var(--arc-text);
    font-size: 0.9375rem;
}

.behive-convo__subject {
    font-size: 0.75rem;
    color: var(--arc-text-muted);
    margin-top: 2px;
}

.behive-convo__preview {
    font-size: 0.8125rem;
    color: var(--arc-text-sec);
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.behive-convo__time {
    flex-shrink: 0;
    font-size: 0.6875rem;
    color: var(--arc-text-muted);
}

.behive-convo__unread {
    width: 8px;
    height: 8px;
    background: var(--arc-gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

/* Thread */
.behive-messages__thread {
    display: flex;
    flex-direction: column;
}

.behive-messages__thread-header {
    padding: 14px 20px;
    border-bottom: 1px solid var(--arc-border);
    font-weight: 600;
    color: var(--arc-text);
    display: flex;
    align-items: center;
    gap: 12px;
}

.behive-messages__thread-header .behive-back-btn {
    display: none;
    background: none;
    border: none;
    color: var(--arc-text-sec);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0;
}

@media (max-width: 768px) {
    .behive-messages__thread-header .behive-back-btn {
        display: block;
    }
}

.behive-messages__thread-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    max-height: 420px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.behive-msg {
    max-width: 75%;
    padding: 10px 14px;
    border-radius: var(--arc-radius-lg);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.behive-msg--theirs {
    background: var(--arc-bg-elevated);
    color: var(--arc-text-sec);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.behive-msg--mine {
    background: rgba(204, 168, 107, 0.15);
    color: var(--arc-text);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.behive-msg__time {
    font-size: 0.6875rem;
    color: var(--arc-text-muted);
    margin-top: 4px;
    display: block;
}

/* Message input */
.behive-messages__thread-input {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid var(--arc-border);
    align-items: flex-end;
}

.behive-messages__thread-input .arc-textarea {
    flex: 1;
    min-height: auto;
    resize: none;
}

/* ==========================================================================
   Offer Cards
   ========================================================================== */

.behive-offer-card {
    background: var(--arc-bg-surface);
    border: 1px solid var(--arc-border);
    border-radius: var(--arc-radius-lg);
    padding: 20px;
    margin-bottom: 12px;
}

.behive-offer-card:last-child {
    margin-bottom: 0;
}

.behive-offer-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.behive-offer-card__from {
    font-weight: 600;
    color: var(--arc-text);
}

.behive-offer-card__time {
    font-size: 0.75rem;
    color: var(--arc-text-muted);
}

.behive-offer-card__listing {
    font-size: 0.875rem;
    color: var(--arc-text-sec);
    margin-bottom: 8px;
}

.behive-offer-card__amounts {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.behive-offer-card__offer-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--arc-gold);
}

.behive-offer-card__asking {
    font-size: 0.8125rem;
    color: var(--arc-text-muted);
    text-decoration: line-through;
}

.behive-offer-card__message {
    font-size: 0.875rem;
    color: var(--arc-text-sec);
    font-style: italic;
    padding: 8px 12px;
    background: var(--arc-bg-elevated);
    border-radius: var(--arc-radius);
    margin-bottom: 12px;
}

.behive-offer-card__status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.behive-offer-card__status--pending {
    background: rgba(204, 168, 107, 0.15);
    color: var(--arc-gold-light);
}

.behive-offer-card__status--accepted {
    background: rgba(95, 206, 171, 0.15);
    color: var(--arc-teal);
}

.behive-offer-card__status--declined {
    background: rgba(224, 122, 95, 0.15);
    color: var(--arc-error);
}

.behive-offer-card__status--countered {
    background: rgba(123, 163, 201, 0.15);
    color: var(--arc-info);
}

.behive-offer-card__actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

/* ==========================================================================
   Transactions Pipeline
   ========================================================================== */

.behive-txn-card {
    background: var(--arc-bg-surface);
    border: 1px solid var(--arc-border);
    border-radius: var(--arc-radius-lg);
    padding: 20px;
    margin-bottom: 16px;
}

.behive-txn-card:last-child {
    margin-bottom: 0;
}

.behive-txn-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.behive-txn-card__title {
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--arc-text);
    margin: 0;
}

.behive-txn-card__price {
    font-weight: 700;
    color: var(--arc-gold);
}

/* Pipeline steps */
.behive-pipeline {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.behive-pipeline__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 80px;
    position: relative;
    text-align: center;
}

.behive-pipeline__step::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--arc-border);
    z-index: 0;
}

.behive-pipeline__step:last-child::after {
    display: none;
}

.behive-pipeline__dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--arc-bg-elevated);
    border: 2px solid var(--arc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--arc-text-muted);
    position: relative;
    z-index: 1;
}

.behive-pipeline__step.completed .behive-pipeline__dot {
    background: var(--arc-teal);
    border-color: var(--arc-teal);
    color: #fff;
}

.behive-pipeline__step.current .behive-pipeline__dot {
    background: var(--arc-gold);
    border-color: var(--arc-gold);
    color: var(--arc-bg-deep);
}

.behive-pipeline__step.completed::after {
    background: var(--arc-teal);
}

.behive-pipeline__label {
    font-size: 0.6875rem;
    color: var(--arc-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.behive-pipeline__step.current .behive-pipeline__label {
    color: var(--arc-gold);
    font-weight: 600;
}

.behive-pipeline__step.completed .behive-pipeline__label {
    color: var(--arc-teal);
}

/* Transaction timeline */
.behive-txn-timeline {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--arc-border);
}

.behive-txn-timeline__item {
    display: flex;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.8125rem;
}

.behive-txn-timeline__date {
    flex-shrink: 0;
    width: 80px;
    color: var(--arc-text-muted);
}

.behive-txn-timeline__event {
    color: var(--arc-text-sec);
}

.behive-txn-card__actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

/* ==========================================================================
   Seller Profile
   ========================================================================== */

.behive-seller-header {
    margin-bottom: 32px;
}

.behive-seller-profile {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--arc-bg-surface);
    border: 1px solid var(--arc-border);
    border-radius: var(--arc-radius-lg);
}

.behive-seller-profile__avatar {
    width: 72px;
    height: 72px;
}

.behive-seller-profile__info {
    flex: 1;
}

.behive-seller-profile__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--arc-text);
    margin: 0 0 4px;
}

.behive-seller-profile__rating {
    color: var(--arc-gold-light);
    font-size: 0.9375rem;
    margin-bottom: 8px;
}

.behive-seller-profile__meta {
    font-size: 0.875rem;
    color: var(--arc-text-muted);
}

/* Reviews */
.behive-review {
    padding: 16px 0;
    border-bottom: 1px solid var(--arc-border);
}

.behive-review:last-child {
    border-bottom: none;
}

.behive-review__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.behive-review__stars {
    color: var(--arc-gold);
    font-size: 0.875rem;
    letter-spacing: 2px;
}

.behive-review__author {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--arc-text-sec);
}

.behive-review__date {
    font-size: 0.75rem;
    color: var(--arc-text-muted);
}

.behive-review__text {
    font-size: 0.9375rem;
    color: var(--arc-text-sec);
    line-height: 1.6;
    margin-bottom: 4px;
}

.behive-review__instrument {
    font-size: 0.75rem;
    color: var(--arc-text-muted);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .arcform-behive {
        padding: 16px;
    }

    .behive-filters__row {
        flex-direction: column;
        gap: 8px;
    }

    .behive-filters__row .arc-form-group {
        width: 100%;
    }

    .behive-filters__row .arc-input--sm,
    .behive-filters__row .arc-select--sm {
        width: 100% !important;
    }

    .behive-listing-card__img {
        height: 140px;
    }

    .behive-offer-card__actions {
        flex-direction: column;
    }

    .behive-seller-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .behive-pipeline {
        gap: 0;
    }

    .behive-pipeline__step {
        min-width: 60px;
    }

    .behive-pipeline__label {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .behive-header__title {
        font-size: 1.5rem;
    }

    .behive-wizard__steps {
        overflow-x: auto;
    }

    .behive-wizard__step {
        width: 50px;
    }

    .behive-wizard__step small {
        display: none;
    }
}

/* ==========================================================================
   Print
   ========================================================================== */

@media print {
    .behive-search,
    .behive-filters,
    .behive-pagination,
    .behive-listing-actions,
    .behive-offer-card__actions,
    .behive-txn-card__actions,
    .behive-messages__thread-input,
    .behive-photo-dropzone,
    .behive-wizard__steps {
        display: none !important;
    }
}
