/* =====================================================
   SINGLE AUCTION PAGE – BLUR PRICE + BID AREA
===================================================== */
.akdm-auction-locked .auction-price,
.akdm-auction-locked .auction_form,
.akdm-auction-locked .auction-time,
.akdm-auction-locked .auction-condition {
    filter: blur(6px);
    pointer-events: none;
    user-select: none;
}

/* Overlay */
.akdm-auction-overlay-wrap {
    position: absolute;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.akdm-auction-overlay {
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 30px;
    max-width: 420px;
    text-align: center;
    border-radius: 10px;
}

.akdm-auction-overlay .button {
    margin-top: 15px;
}

/* =====================================================
   SHOP / CATEGORY – BLUR AUCTION PRICE
===================================================== */
.akdm-auction-locked .products .product .price,
.akdm-auction-locked .products .product .auction-price {
    filter: blur(5px);
    pointer-events: none;
}

/* Optional lock icon */
.akdm-auction-locked .products .product::after {
    content: "🔒 Login to view price";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background: rgba(255,255,255,0.7);
}

.akdm-auction-overlay-wrap {
    width: 100%;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.1); /* slightly transparent */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px); /* Safari support */
}

.akdm-auction-overlay {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 14px 18px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.akdm-auction-overlay p {
    margin: 0;
    color: #856404;
    font-size: 15px;
}

.akdm-auction-overlay .button {
    background: #111;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
}
.auction-ajax-change {
  position: relative;
}



/* ================================
   KYC FORM WRAPPER
================================ */
.akdm-kyc-form {
    max-width: 720px;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Title */
.akdm-kyc-form h2 {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
}

/* ================================
   FORM FIELDS
================================ */
.akdm-kyc-field {
    margin-bottom: 18px;
}

.akdm-kyc-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #374151;
}

/* Inputs */
.akdm-kyc-field input[type="text"],
.akdm-kyc-field input[type="date"],
.akdm-kyc-field input[type="tel"],
.akdm-kyc-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    transition: all .2s ease;
}

.akdm-kyc-field textarea {
    min-height: 90px;
    resize: vertical;
}

/* Focus */
.akdm-kyc-field input:focus,
.akdm-kyc-field textarea:focus {
    border-color: #2271b1;
    outline: none;
    box-shadow: 0 0 0 2px rgba(34,113,177,.15);
}

/* ================================
   FILE UPLOAD
================================ */
.akdm-kyc-file {
    border: 2px dashed #cbd5e1;
    padding: 18px;
    border-radius: 8px;
    background: #f9fafb;
}

.akdm-kyc-file input[type="file"] {
    width: 100%;
}

/* Helper text */
.akdm-kyc-help {
    font-size: 13px;
    color: #6b7280;
    margin-top: 5px;
}

/* ================================
   SUBMIT BUTTON
================================ */
.akdm-kyc-submit {
    margin-top: 25px;
}

.akdm-kyc-submit button {
    background: #2271b1;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.akdm-kyc-submit button:hover {
    background: #1e5f96;
}

/* ================================
   STATUS BADGES
================================ */
.akdm-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.akdm-status.pending { background: #fff7ed; color: #c2410c; }
.akdm-status.approved { background: #ecfdf5; color: #047857; }
.akdm-status.rejected { background: #fef2f2; color: #b91c1c; }

/* ================================
   MOBILE
================================ */
@media (max-width: 600px) {
    .akdm-kyc-form {
        padding: 20px;
    }
}


/* Overlay container */
.akdm-auction-overlay-wrap {
    position: absolute;
    inset: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

/* Overlay card */
.akdm-auction-overlay {
    max-width: 420px;
    width: 90%;
    background: #fff;
    border-radius: 16px;
    padding: 28px 26px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Title */
.akdm-auction-overlay h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
}

/* Message */
.akdm-auction-overlay p {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 22px;
    line-height: 1.6;
}

/* CTA button */
.akdm-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.15s ease;
}

.akdm-btn:hover {
    background: #1e40af;
    transform: translateY(-1px);
}

/* Prevent interaction behind overlay */
.akdm-auction-locked .auction_form,
.akdm-auction-locked .quantity,
.akdm-auction-locked .bid_button {
    pointer-events: none;
    user-select: none;
    opacity: 0.4;
}
.akdm-reason-login .akdm-auction-overlay p::after {
    content: " Please log in to continue.";
}

.akdm-reason-kyc .akdm-auction-overlay p::after {
    content: " KYC verification is required.";
}

.akdm-reason-deposit .akdm-auction-overlay p::after {
    content: " Security deposit is pending.";
}