.h-auto{
    height: auto !important;
}

.text-wrap{
    word-wrap: break-word !important;
    white-space: normal !important;
}

.text-right{
    text-align: right !important;
}

/* Sidebar */
.sidebar .widget {
    margin-bottom: 15px;
}

.sidebar .widget h3 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.sidebar .widget .input-group {
    display: flex;
}

.sidebar .widget .input-group .input-text {
    flex: 1;
    margin-bottom: 0;
}

.sidebar .widget .input-group .btn {
    margin-left: 5px;
}

/* Pagination */
.pagination {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    gap: 5px;
}

.pagination li a {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
}

.pagination li.active a,
.pagination li a:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

/* Product gallery */
.lightbox img {
    margin-bottom: 15px;
    border-radius: 4px;
    transition: opacity 0.3s;
}

.lightbox:hover img {
    opacity: 0.85;
}

/* Image fluid */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.text-white {
    color: #fff !important;
}

.text-gray {
    color: #6c757d !important;
}

.border-white {
    border-color: #fff !important;
}