/* ===============================
🌐 SHOPINI DOMAIN CHECK - FINAL CLEAN
=============================== */

/* SECTION */
#cb-domain-form {
    background: #fff;
    padding: 50px 20px;
}

/* CONTAINER (sans bloc autour) */
#cb-domain-search {
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

/* STRUCTURE */
#cb-domain-search .pure-form .input-group {
    position: relative;
}

/* ===============================
🎯 INPUT
=============================== */

#cb-domain-search .small #Search {
    height: 60px !important;
    font-size: 16px !important;
    border-radius: 12px;
    border: 1px solid #e3e8ef;
    padding: 0 150px 0 20px;

    background: #EEF3F8;
    color: #333;

    box-shadow: none;
    transition: all 0.25s ease;

    position: relative;
    z-index: 1;
}

/* FOCUS */
#cb-domain-search .small #Search:focus {
    outline: none;
    border-color: #0B3C88;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(11,60,136,0.08);
}

/* ===============================
🔵 BUTTON
=============================== */

#cb-domain-search .pure-form .input-group-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    z-index: 20; /* 🔥 FIX bouton visible */
}

#cb-domain-search .pure-form .input-group-btn #Submit {
    height: 48px;
    border-radius: 10px;
    border: none;

    background: #0B3C88;
    color: #fff;

    font-size: 15px;
    padding: 0 20px;
    font-weight: 600;

    transition: all 0.25s ease;
    box-shadow: 0 5px 15px rgba(11,60,136,0.25);
    cursor: pointer;
}

/* HOVER */
#cb-domain-search .pure-form .input-group-btn #Submit:hover {
    background: #092f6b;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(11,60,136,0.35);
}

/* ===============================
💰 PRICES
=============================== */

#cb-domain-search .cb-domain-price ul {
    text-align: center;
    margin-top: 20px;
}

#cb-domain-search .cb-domain-price ul li {
    display: inline-block;
    font-size: 13px;
    color: #6b7280;
    margin: 5px 12px;
}

#cb-domain-search .cb-domain-price ul li a {
    color: #0B3C88;
    font-weight: 500;
}

#cb-domain-search .cb-domain-price ul li span {
    color: #FF7A00;
    font-weight: 600;
}

/* ===============================
✅ SUCCESS / ERROR
=============================== */

.cb-domain-name-available p {
    color: #16a34a;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
}

.cb-domain-name-registered p {
    color: #dc2626;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
}

/* LOADER */
.cb-domain-lds-ellipsis div {
    background: #0B3C88;
}

/* ===============================
📱 MOBILE
=============================== */

@media(max-width: 768px){

    #cb-domain-search .small #Search {
        padding: 0 110px 0 15px;
        font-size: 15px !important;
    }

    #cb-domain-search .pure-form .input-group-btn #Submit {
        height: 42px;
        padding: 0 14px;
        font-size: 14px;
    }

}