:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-97ff97f *//* --- DESKTOP STYLE --- */
.dj-search-form {
    background: #fff;
    padding: 10px;
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 1100px;
    margin: 20px auto;
    position: relative; /* Agar list absolute mengacu ke sini */
}

.dj-search-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dj-search-field {
    flex: 1;
    position: relative; /* Kunci agar list dropdown melayang di bawah field ini */
}

/* Sembunyikan select asli */
.dj-custom-select select { display: none; }

/* Kotak Pilihan (Kapsul) */
.select-selected {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 40px;
    padding: 12px 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.select-selected:after {
    content: ""; position: absolute; top: 22px; right: 15px;
    border: 5px solid transparent; border-color: #999 transparent transparent transparent;
}

/* LIST DROPDOWN MELAYANG (OVERLAY) */
.select-items {
    position: absolute; /* Membuatnya melayang */
    background-color: #fff;
    top: 110%; /* Muncul tepat di bawah kotak */
    left: 0;
    right: 0;
    z-index: 999; /* Pastikan di atas elemen apapun */
    border: 1px solid #f0f0f0;
    border-radius: 15px; /* Rounded list */
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    max-height: 250px;
    overflow-y: auto;
}

.select-hide { display: none; }

.select-items div {
    padding: 12px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 1px solid #f9f9f9;
}

/* HOVER ORANGE SENADA SEARCH */
.select-items div:hover {
    background-color: #f97316 !important;
    color: #fff !important;
}

/* Input & Button */
.dj-search-field input {
    width: 100%; height: 50px; padding: 0 25px;
    border: 1px solid #eee; border-radius: 40px;
    font-family: 'Poppins', sans-serif; outline: none;
    box-sizing: border-box;
}

.btn-wrap { flex: 0 0 140px; }
.dj-search-field button {
    width: 100%; height: 50px; background: #333; color: #fff;
    border-radius: 40px; border: none; font-weight: 600; cursor: pointer;
}
.dj-search-field button:hover { background: #f97316; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 767px) {
    .dj-search-form { border-radius: 20px; padding: 15px; width: 92%; }
    .dj-search-row { flex-direction: column; align-items: stretch; gap: 12px; }
    .dj-search-field { width: 100%; }
    .select-items { position: relative; top: 0; margin-top: 5px; } /* Di HP lebih enak nempel */
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-87637bf *//* GRID */
.bisnis-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

@media (max-width:1024px){
    .bisnis-grid { 
        grid-template-columns: repeat(3,1fr); 
        gap: 16px;
    }
}

@media (max-width:767px){
    .bisnis-grid { 
        grid-template-columns: repeat(2,1fr); 
        gap:8px; 
    }
}

/* CARD */
.bisnis-card {
    background:#fff;
    border-radius:24px;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
    overflow:hidden;
    padding:12px;
    transition:.3s ease;
}

.bisnis-card:hover {
    transform:translateY(-4px);
    box-shadow:0 14px 30px rgba(0,0,0,.08);
}

/* IMAGE 1:1 */
.bisnis-image-wrapper{
    position:relative;
    aspect-ratio: 1 / 1;
    overflow:hidden;
    border-radius:16px;
}

.bisnis-image-wrapper img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .4s ease;
}

.bisnis-card:hover .bisnis-image-wrapper img{
    transform:scale(1.05);
}

/* BADGE */
.bisnis-badge{
    position:absolute;
    top:0;
    left:0;
    background:#16a34a;
    color:#fff;
    padding:8px 18px;
    font-size:14px; /* desktop & tablet */
    font-weight:500;
    z-index:5;

    border-top-left-radius:16px;
    border-top-right-radius:0px;
    border-bottom-right-radius:8px;
    border-bottom-left-radius:0;

    display:inline-flex;
    align-items:center;
    gap:6px;
}

/* Mobile */
@media (max-width:767px){
    .bisnis-badge{
        font-size:10px;
        padding:6px 12px;
    }
}



/* BODY */
.bisnis-body{
    margin-top:14px;
}

/* TITLE ROW */
.bisnis-title-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:10px;
}

.bisnis-title-row h3{
    font-size: clamp(13px, 1.4vw, 18px);
    font-weight:600;
    margin:0;
    line-height:1.2;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* LOGO */
.bisnis-logo{
    width: clamp(32px, 3vw, 42px);
    height: clamp(32px, 3vw, 42px);
    object-fit:contain;
    border-radius:12px;
    flex-shrink:0;
}

/* META */
.bisnis-meta{
    font-size: clamp(12px, 1vw, 14px);
    color:#444;
    margin-top:6px;
    line-height:1.4;
}

.bisnis-meta.alamat{
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* BUTTON */
.bisnis-btn,
.bisnis-btn:link,
.bisnis-btn:visited {
    display:block;
    margin-top:14px;
    background:#000;
    color:#fff !important;
    text-align:center;
    padding: clamp(10px, 1vw, 14px);
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    font-size: clamp(13px, 1vw, 15px);
    transition:.3s ease;
}

.bisnis-btn:hover,
.bisnis-btn:focus {
    background:#f97316;
    color:#fff !important;
}/* End custom CSS */