/* ---------------------------------------------------------
   BLN PRO PUBLIC STYLESHEET
   Clean Modern Layout — Option C
---------------------------------------------------------- */

/* Color Variables */
:root {
    --bnlpro-primary: #022457;
    --bnlpro-accent: #fb4d3d;
    --bnlpro-success: #25d55f;
    --bnlpro-error: #e5241f;
    --bnlpro-light: #f7f7f7;
    --bnlpro-border: #bfbfbf;
}

/* General Reset */
.bnlpro-marketplace, .bnlpro-single, .bnlpro-inquiry-wrapper {
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

/* ---------------------------------------------------------
   SEARCH BAR
---------------------------------------------------------- */
.bnlpro-search-wrapper {
    margin-bottom: 25px;
    position: relative;
}

#bnlpro-search {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--bnlpro-border);
    border-radius: 8px;
    font-size: 16px;
}

.bnlpro-search-results {
    display: none;
    position: absolute;
    background: #fff;
    width: 100%;
    top: 48px;
    left: 0;
    z-index: 20;
    border: 1px solid var(--bnlpro-border);
    border-radius: 0 0 8px 8px;
}

.bnlpro-search-item {
    padding: 12px;
}

.bnlpro-search-item a {
    text-decoration: none;
    color: var(--bnlpro-primary);
}

.bnlpro-search-item:hover {
    background: var(--bnlpro-light);
}

/* ---------------------------------------------------------
   MARKETPLACE GRID
---------------------------------------------------------- */

.bnlpro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}

.bnlpro-card {
    border: 1px solid var(--bnlpro-border);
    border-radius: 10px;
    padding: 20px;
    background: #ffffff;
    position: relative;
    transition: box-shadow .2s ease;
}

.bnlpro-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.bnlpro-card-header {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--bnlpro-primary);
}

.bnlpro-card-header a {
    text-decoration: none;
    color: inherit;
}

.bnlpro-price {
    font-size: 18px;
    font-weight: bold;
    color: var(--bnlpro-primary);
    margin-bottom: 6px;
}

.bnlpro-status.available  { color: var(--bnlpro-success); }
.bnlpro-status.leased     { color: var(--bnlpro-error); }
.bnlpro-status.hold       { color: var(--bnlpro-border); }

.bnlpro-score {
    font-size: 13px;
    color: #666;
}

/* Wishlist Heart */
.bnlpro-wishlist,
.bnlpro-wishlist-single {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 22px;
    cursor: pointer;
    color: var(--bnlpro-accent);
}

.bnlpro-wishlist.active .bnlpro-heart,
.bnlpro-wishlist-single.active .bnlpro-heart {
    font-weight: bold;
}

/* ---------------------------------------------------------
   DOMAIN SINGLE PAGE
---------------------------------------------------------- */

.bnlpro-single {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.bnlpro-single-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bnlpro-single-header h1 {
    font-size: 32px;
    color: var(--bnlpro-primary);
}

.bnlpro-single-pricing {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.bnlpro-single-pricing .price {
    font-size: 26px;
    font-weight: 700;
}

.bnlpro-single-pricing .status {
    font-size: 14px;
    font-weight: 600;
}

/* Score Breakdown */
.bnlpro-score-section {
    margin-top: 40px;
}

.score-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.score-item {
    background: var(--bnlpro-light);
    padding: 12px;
    border-radius: 8px;
}

.score-total {
    grid-column: 1 / -1;
    background: #eee;
    padding: 12px;
    font-weight: 600;
}

/* CTA Button */
.bnlpro-cta {
    margin-top: 30px;
    text-align: center;
}

.bnlpro-btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    background: var(--bnlpro-accent);
}

/* ---------------------------------------------------------
   INQUIRY FORM
---------------------------------------------------------- */

.bnlpro-inquiry-wrapper {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--bnlpro-border);
}

.bnlpro-field label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.bnlpro-field input,
.bnlpro-field textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--bnlpro-border);
    font-size: 15px;
}

.bnlpro-submit-btn {
    background: var(--bnlpro-accent);
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    cursor: pointer;
    transition: background .2s ease;
}

.bnlpro-submit-btn:hover {
    background: var(--bnlpro-error);
}

/* Status box */
#bnlpro-inquiry-status {
    margin-top: 20px;
    font-weight: 600;
    font-size: 15px;
}

/* ---------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------- */
@media (max-width: 600px) {
    .bnlpro-card { padding: 14px; }
    .bnlpro-single-header h1 { font-size: 24px; }
}