/* =========================
   POI MAIN BOX
========================= */
.poi-box {
    width: 100%;
    margin-top: 20px;
    padding: 18px;
    background: #f8f5f1;
    border: 1px solid #e5ded6;
    border-radius: 0 !important;
    box-sizing: border-box;
}

/* =========================
   TITLE
========================= */
.poi-box strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #3b2a1a;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.poi-box p {
  font-size : 12px;
line-height: 1.6;
color: #6b4b33;
margin-top : 6px;
margin-bottom: 14px;
max-width: 700px;

}

/* =========================
   RESET BUTTON STYLE
========================= */
.poi-box button {
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
}

/* =========================
   FILTER LAYOUT
========================= */
.poi-filters {
     
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* =========================
   ICON BUTTON (DEFAULT WHITE)
========================= */
.poi-filter {
    width: 60px;
    height: 60px;
    background: #ffffff !important; /* WHITE */
    border: 1px solid #ddd !important;
    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: none;
}

/* =========================
   ICON IMAGE
========================= */
.filter-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: all 0.25s ease;
}

/* =========================
   TOUS BUTTON
========================= */
.poi-filter.text-btn{

  
    color: #000 !important;
  background: #000 !important;
  }

  


/* =========================
   HOVER EFFECT (BROWN)
========================= */
.poi-filter:hover {
    background: #6b4b33 !important; /* BROWN */
}

.poi-filter:hover .filter-icon {
    filter: brightness(0) invert(1);
}

/* =========================
   ACTIVE STATE
========================= */
.poi-filter.active {
    background: #6b4b33 !important;
}

.poi-filter.active .filter-icon {
    filter: brightness(0) invert(1);
}

/* =========================
   POI LIST
========================= */
#poiContainer {
    margin-top: 12px;
}

.poi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid #e6ddd4;
    font-size: 13px;
    color: #3b2a1a;
}

.poi-item div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.poi-item span {
    white-space: nowrap;
    font-size: 12px;
    color: #6b4b33;
}

/* LIST ICON */
.poi-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* =========================
   PAGINATION
========================= */
#poiPagination {
    margin-top: 12px;
    text-align: center;
}

#poiPagination button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 26px;
    height: 26px;
    margin: 0 3px;
    background: #eee;
    border-radius: 6px;
    color: #000;
    font-size: 12px;
}

#poiPagination button:hover {
    background: #ddd;
}

#poiPagination button.active-page {
    background: #6b4b33;
    color: #fff;
}



.poi-left{
    display:flex;
    flex-direction:column;
}

.poi-title{
    display:flex;
    align-items:center;
    font-weight:500;
}

.poi-rating{
    margin-left:30px;
    font-size:12px;
    color:#888;
    margin-top:2px;
}