.post-travel-btn {
    background-color: #28a745;
    color: #fff;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 500;
}

/* Deal cards */
.deal-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    position: relative;
}

.deal-card img {
    height: 200px;
    object-fit: cover;
}

.deal-image-wrapper {
    position: relative;
    display: block;
}

.discount-badge {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-image: url('/static/assets/media/customer_view/icon/discount_icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: #000;
    border-radius: 0px;
    padding: 20px 10px; /* Adjusted padding for better spacing */
    padding-top:85px;
    font-weight: 700;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center-align the text */
    justify-content: center;
    min-width: 130px;
    min-height: 150px;
    flex-wrap: wrap;
    align-content: flex-end;
}

.discount-number {
    font-size: 29px; /* Large font for "50" */
    line-height: 1; /* Tight line height to reduce spacing */
}

.discount-percent {
    font-size: 16px; /* Smaller font for "%" */
    line-height: 1;
    align-self: flex-start; /* Align "%" next to "50" */
    margin-left: 2px; /* Small spacing between "50" and "%" */
}

.discount-off {
    font-size: 14px; /* Smaller font for "OFF" */
    line-height: 1;
    margin-top: 5px; /* Space between "50%" and "OFF" */
}

.discount-label {
font-size: 12px; /* Smallest font for "Discount" */
line-height: 1;
margin-top: 5px; /* Space between "OFF" and "Discount" */
}

.deal-details {
    padding: 15px;
    background: #fff;
}

.price {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.current-price {
    font-weight: 700;
    font-size: 20px;
    color: #212529;
    margin-right: 8px;
}

.original-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 14px;
}

.book-now-btn {
    background-color: #2C7C80;
    color: #fff;
    border-radius: 5px;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 500;
    border: none;
}

.book-now-btn:hover {
    background-color: #2C7C80;
    color: #fff;
}

.deal-info {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.deal-info i {
    color: #ffc107;
    margin-right: 5px;
}

/* Filter sidebar */
.filter-sidebar {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
}

.filter-sidebar h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.filter-sidebar .form-check {
    margin-bottom: 10px;
}

.filter-sidebar .form-check-label {
    color: #555;
    font-size: 14px;
}

.category-count {
    background: #f1f1f1;
    color: #555;
    border-radius: 5px;
    padding: 2px 8px;
    font-size: 12px;
    float: right;
}

.price-range-slider {
    margin: 15px 0;
}

.range-slider {
    width: 100%;
    height: 5px;
    background: #ddd;
    outline: none;
}

.pagination {
    margin-top: 30px;
    margin-bottom: 30px;
}

.pagination .page-item .page-link {
    border-radius: 5px;
    margin: 0 3px;
    color: #333;
}

.pagination .page-item.active .page-link {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000;
}



.customized-tour {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin: 30px 0;
}

.customized-tour h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.request-btn {
    background-color: #ffc107;
    color: #000;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 500;
    border: none;
    margin-top: 10px;
}

.request-btn:hover {
    background-color: #e0a800;
}





        @media (max-width: 768px) {
            .filter-sidebar {
                margin-bottom: 30px;
            }



        }

        @media (max-width: 576px) {

            /* Discount Badge  */
           .discount-badge {
        padding: 15px 5px;
        min-width: 100px;
        min-height: 120px;
    }
    .discount-number {
        font-size: 24px;
    }
    .discount-percent {
        font-size: 14px;
    }
    .discount-off {
        font-size: 12px;
    }
    .discount-label {
        font-size: 10px;
    }


        }