/* =============================================
   ====== GUEST RESTRICTIONS (LOGGED OUT) ======
   ============================================= */

/* 1. FAIL-SAFE: Hide Forms
   (In case the theme hardcodes them, ignoring our PHP remove_action) */
body:not(.logged-in) form.auction_form.cart,
body:not(.logged-in) form.buy-now.cart,
body:not(.logged-in) .bid_button,
body:not(.logged-in) .single_add_to_cart_button {
    display: none !important;
}

/* 2. TEASER GALLERY
   Only show the first 4 images to guests. Hides the rest. */
body:not(.logged-in) .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:nth-child(n+5) {
    display: none !important;
}

/* 3. HIDE DEALER CONTACT
   Prevent guests from seeing direct email links in the Dealer tab */
body:not(.logged-in) #tab-car_dealer a[href^="mailto:"] {
    display: none !important;
}

/* 4. HIDE SIDEBAR PRICE FILTERS
   Hide the price slider widget in the shop sidebar */
body:not(.logged-in) .woof_meta_slider_container,
body:not(.logged-in) .widget_price_filter {
    display: none !important;
}

/* =============================================
   ====== REGISTRATION RESTRICTIONS ======
   ============================================= */

/* 5. DISABLE VENDOR REGISTRATION
   Hides the "I am a customer / I am a vendor" dropdown 
   to prevent unwanted seller signups. */
.user-role, 
.form-row.user-role {
    display: none !important;
}

/* Hide any vendor-specific fields that might auto-show */
.show_if_seller {
    display: none !important;
}


/* === GUEST RESTRICTIONS === */

/* The "Hidden Price" Box */


.ecars-guest-price-box .label {
    display: flex;
    font-weight: 700;
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

/* The "Please Login" Box (Replaces Bid Button) */
.ecars-guest-cta {
    padding: 20px;
    background: #fff3cd; /* Light Yellow Warning Background */
    border: 1px solid #ffeeba;
    border-radius: 5px;
    color: #856404;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ecars-guest-cta a {
    text-decoration: underline;
    color: #d32f2f;
}

.ecars-guest-cta i {
    font-size: 1.2em;
}

/* ========================================================
   === CRITICAL: GUEST RESTRICTION FAIL-SAFES ===
   === Hides all buying UI for non-logged-in users ===
   ======================================================== */

body:not(.logged-in) .bid_button,
body:not(.logged-in) .buy_now_button,
body:not(.logged-in) .single_add_to_cart_button,
body:not(.logged-in) form.cart,
body:not(.logged-in) .quantity,
body:not(.logged-in) .auction_form,
body:not(.logged-in) .price,
body:not(.logged-in) .woocommerce-Price-amount,
body:not(.logged-in) .current-bid-wrapper,  /* Theme specific container? */
body:not(.logged-in) .auction-ajax-change { /* Theme specific AJAX updates */
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Hide "Create Account" button when the user IS logged in */
body.logged-in .menu-inquiry > a.button.btn {
    display: none !important;
}