/* ===============================
LAYOUT
=============================== */
.container{
    max-width:900px;
    margin:40px auto;
    padding:20px;
    background:#fff;
}

.container h1{
    font-size:28px;
    margin-bottom:15px;
}

.container p{
    font-size:16px;
    line-height:1.6;
}

/* ===============================
HEADER IMAGE
=============================== */
.header-image img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:20px;
}

/* ===============================
REVIEWS
=============================== */
.review-box{
    border:1px solid #eee;
    padding:12px;
    margin-bottom:12px;
    border-radius:8px;
    background:#fafafa;
}

/* ===============================
QUESTIONS
=============================== */
.question-box{
    border:1px solid #eee;
    padding:12px;
    margin:10px 0;
    border-radius:8px;
    background:#fafafa;
}

/* ===============================
STAR RATING (FINAL FIX)
=============================== */
.star{
    font-size:20px;
    display:inline-block;
    position:relative;
    margin-right:2px;
}

/* FULL STAR */
.star.full{
    color:#ffb400;
}

/* EMPTY STAR */
.star.empty{
    color:#ddd;
}

/* HALF STAR (FIXED) */
.star.half{
    color:#ddd;
}

.star.half::before{
    content:'★';
    position:absolute;
    left:0;
    width:50%;
    overflow:hidden;
    color:#ffb400;
}

/* ===============================
RATING BOX
=============================== */
.rating-box{
    margin:10px 0;
    font-size:16px;
}

/* ===============================
TABS
=============================== */
.tabs{
    display:flex;
    gap:10px;
    margin:20px 0;
}

.tabs button{
    padding:10px 18px;
    border:none;
    border-radius:25px;
    background:#ff2b00;
    cursor:pointer;
    font-weight:600;
    transition:0.3s;
}

.tabs button:hover{
    background:#ff6b00;
    color:#fff;
}

/* ===============================
FORM
=============================== */
textarea{
    width:100%;
    border-radius:8px;
    padding:10px;
    border:1px solid #ddd;
    margin-top:10px;
}

button{
    background:#ff6b00;
    color:#fff;
    padding:10px 15px;
    border:none;
    border-radius:6px;
    cursor:pointer;
    margin-top:10px;
}

/* ===============================
SEARCH
=============================== */
.pincode-search-shortcode form{
    display:flex;
    justify-content:center;
    align-items:center;
}

.pincode-search-shortcode input{
    padding:14px;
    width:300px;
    border:1px solid #ddd;
    border-right:none;
    border-radius:8px 0 0 8px;
}

.pincode-search-shortcode button{
    padding:14px 20px;
    border-radius:0 8px 8px 0;
}

/* ===============================
AUTOCOMPLETE
=============================== */
.autocomplete-box{
    position:absolute;
    background:#fff;
    width:100%;
    border:1px solid #ddd;
    border-radius:10px;
    margin-top:5px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    z-index:999;
}

.autocomplete-box .item{
    padding:10px;
    cursor:pointer;
}

.autocomplete-box .item:hover{
    background:#f5f5f5;
}