/* Slider shell */
.category-swiper {
    padding: 10px 0;
}
.swiper-slide {
    width: auto!important; /* auto width so each button fits naturally */
    display: inline-block;
    margin-right: 10px;
}
.category-btn {
    display: inline-block;
    align-items: center;
    gap: 6px;
    padding: 16px;
    border: 0px solid #ccc;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.2s;
}
/*.category-btn.active {
    background: #FBB24D;
    color: #fff;
    border-color: #FBB24D;
}*/
.category-btn.active {
    /*background: #FBB24D;
    color: #fff;
    border-color: #FBB24D;*/
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-bottom: 2px solid #a0a0a0;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.category-btn.active .text-wrap p {
    color: #FBB24D;
    font-weight: bold;
}
/*.category-btn.active .text-wrap p:last-child {
    text-decoration: underline;
}*/
.category-btn img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}
.item-card { display: none; } /* hide all by default */
.item-card.show { display: block; }
/*.filter-btn.active { background: #FBB24D; color: #fff; }*/

.card-box {
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    transition: 0.3s;
    margin-bottom: 15px;
}
.card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
.card-img {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
}
/* small mobile :320px. */
@media (max-width: 767px) {
    .card-img {
        width: 100px;
        height: 100px;
        border-radius: 8px;
        object-fit: cover;
    }
}
.like-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: white;
    border-radius: 20px;
    padding: 3px 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.like-badge i {
    color: #ff4d6d;
    margin-right: 3px;
}
.btn-group-toggle>.btn input[type=checkbox], .btn-group-toggle>.btn input[type=radio], .btn-group-toggle>.btn-group>.btn input[type=checkbox], .btn-group-toggle>.btn-group>.btn input[type=radio] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}
input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}
.font-noto {
    font-family: "Noto Sans Arabic"!important;
    direction: rtl;
}
.fs-16 {
    font-size: 16px!important;
}
.bg-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7); /* black overlay with opacity */
    z-index: 0;
}
.category-btn .text-wrap {
  display: flex;
  flex-direction: column; /* force stacking */
  align-items: center;    /* optional: center text inside */
  text-align: center;     /* optional: center text */
}
.form-select {
    height: 50px!important;
    border: 2px solid;
    border-color: var(--border-color-9);
    border-radius: 0;
    font-size: 15px;
}
.form-select:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: var(--ltn__secondary-color)!important;
}
.modal-dialog input[type="text"], .modal-dialog input[type="date"], .modal-dialog input[type="time"], .modal-dialog input[type="email"], .modal-dialog input[type="password"], .modal-dialog input[type="submit"], .modal-dialog textarea {
    height: unset;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.modal-dialog .input-item-date {
  margin-bottom: 0px;
}
.modal-dialog .input-item.ltn__custom-icon::before {
    top: 45%;
}
.input-item-date.ltn__custom-icon::before {
    content: "";
}
.input-item-time.ltn__custom-icon::before {
    content: "";
}
.input-item-time input[type="time"] {
    background-color: transparent;
    border: 2px solid var(--border-color-1);
    height: unset;
    width: 100%;
    padding: 5px 20px;
    margin-bottom: 0px;
}