/* =========================
   CART BUTTON
========================= */
.btn-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0d6efd;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

/* HOVER (DEGRADE ORANJ) */
.btn-cart:hover {
    background: linear-gradient(135deg, #ff7a00, #ffb347);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 122, 0, 0.4);
}

/* =========================
   BADGE (COUNT)
========================= */
.cart-badge {
    background: #dc3545;
    color: #fff;
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 50px;
    font-weight: bold;
}

/* =========================
   HERO
========================= */
.hero{
    background:linear-gradient(90deg,#5b3fd6,#0a2c6b);
    color:#fff;
    padding:100px 20px 160px;
    text-align:center;
}

.title-domain{ color:#fff; }

/* =========================
   SEARCH BOX
========================= */
.search-box{
    position:relative;
    margin-top:-90px;
    z-index:10;
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
}

.domain-search-bar{
    display:flex;
    width:100%;
}

.search-box-inner{
    display:flex;
    flex:1;
    background:#f5f5f5;
    border:2px solid #ddd;
    border-right:0;
    border-radius:10px 0 0 10px;
}

.search-box-inner:focus-within{
    border-color:#ff7a00;
}

.domain-input{
    flex:1;
    border:none;
    background:transparent;
    padding:16px;
    font-size:18px;
    outline:none;
}

.domain-tld{
    border:none;
    border-left:1px solid #ddd;
    padding:0 15px;
    height:60px;
}

.domain-btn{
    background:#ff7a00;
    color:#fff;
    padding:0 30px;
    border:none;
    border-radius:0 10px 10px 0;
    cursor:pointer;
}

/* =========================
   RESULT
========================= */
#mainResult{
    background:#f8f9fa;
    border:2px solid #0d6efd;
    border-radius:12px;
    padding:20px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

/* =========================
   BUTTON ORANGE GRADIENT
========================= */
.btn-orange-gradient{
    background:linear-gradient(135deg,#ff6a00,#ffb347);
    color:#fff;
    border:none;
    font-weight:600;
    transition:all .3s ease;
}

.btn-orange-gradient:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 15px rgba(0,0,0,0.2);
}

/* =========================
   SUGGESTIONS (FIX CLEAN)
========================= */
#suggestionsWrapper{
    margin-top:10px;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
}

#suggestionsList{
    margin:0;
    padding:0;
}

/* ROW */
.suggestion-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 16px;
    margin:0; /* IMPORTANT */
    border-bottom:1px solid #eee;
    transition:all .25s ease;
}

/* ZEBRA */
.suggestion-item:nth-child(even){
    background:#f8f9fa;
}

.suggestion-item:nth-child(odd){
    background:#ffffff;
}

/* HOVER FULL WIDTH */
.suggestion-item:hover{
    background:#eef2ff;
    box-shadow:inset 0 0 0 1px #dbe4ff;
}

/* TEXT */
.suggestion-item .left{
    display:flex;
    flex-direction:column;
}

.suggestion-item strong{
    font-size:15px;
}

.suggestion-item small{
    font-size:13px;
    color:#666;
}

/* BUTTON */
.suggestion-item button{
    min-width:90px;
}

/* =========================
   TABLE
========================= */
.table-responsive{
    background:#fff;
    padding:40px;
    border-radius:12px;
}

.table{
    width:100%;
    background:#fff;
}

.table th,
.table td{
    text-align:center;
    padding:10px;
}

.table tr:hover{
    background:#f8f9fa;
}


/* =========================
   SERVICE PILLS
========================= */
.service-pills{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    max-width:800px;
    margin:30px auto;
}

.service-pill{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:10px;
    border-radius:50px;
    background:linear-gradient(135deg,#ff8a00,#ff5e00);
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.service-pill:hover{
    background:#0d6efd;
    transform:translateY(-3px);
}

/* =========================
   MOBILE
========================= */
@media(max-width:768px){
    .service-pills{
        grid-template-columns:repeat(2,1fr);
    }

    .domain-search-bar{
        flex-direction:column;
    }

    .domain-btn{
        border-radius:10px;
        margin-top:10px;
    }
}
