body {
    color: #000000;
    font-family:  "Montserrat", Arial, Helvetica, sans-serif;
}

a {
    color: #000000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.btn, .btn:hover {
    text-decoration: none !important;
}

.sidebar {
    background-color: #f8f9fa;
    padding: 15px;
}

.footer {
    background-color: #343a40;
    font-size: 12px;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer p {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    color: #ccc;
}

.nav-item {
    margin: 3px;
    width: auto;
    float: left;
}

.nav-item a {
    font-size: 15px;
    text-align: left;
    text-decoration: none;
}

.offer-container {
    overflow: hidden;
    padding: 5px;
}

.offer-title {
    width: 100%;
}

.loader,
.loader:before,
.loader:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: load7 1.8s infinite ease-in-out;
    animation: load7 1.8s infinite ease-in-out;
}

.loader {
    color: #400080;
    font-size: 10px;
    margin: 10px auto 0 auto;
    position: relative;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.loader:before,
.loader:after {
    content: '';
    position: absolute;
    top: 0;
}

.loader:before {
    left: -3.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.loader:after {
    left: 3.5em;
}

@-webkit-keyframes load7 {
    0%, 80%, 100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

@keyframes load7 {
    0%, 80%, 100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

.form-control,
.form-select,
.page-link {
    border-color: #cccccc;
}

header {
    border-bottom: 1px solid black;
}

li.page-item {
    border-color: black;
}

#breadcrumb {
    background-color: #F8F9FA;
    margin-bottom: 15px;
    padding: 8px;
    border-radius: 5px;
    margin-left: 10px;
}

.breadcrumb {
    margin-bottom: 0px;
}

li.page-item a, li.page-item a:hover {
    color: #000000;
    font-size: 16px;
    text-decoration: none;
}

#toTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: red;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
}

#topTopBtn:hover {
    background-color: #555;
}

.limit-text-3,
.limit-text-4,
.limit-text-5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.limit-text-3 {
    -webkit-line-clamp: 3; /* Number of lines to show */
}

.limit-text-4 {
    -webkit-line-clamp: 4; /* Number of lines to show */
}

.limit-text-5 {
    -webkit-line-clamp: 5; /* Number of lines to show */
}

.offer-button {
    line-height: 35px;
    width:100%;
    font-size: 22px;
}

@media (min-width: 801px) {
    .offer-container {
        display: flex;
    }

    .offer-title {
        width: calc(100% - 200px);
    }

    .product-details {
        height: 350px;
    }

    .product-cat-image {
        height: 250px;
    }
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .sidebar-wrapper {
        order: 2; /* Move sidebar to the bottom on small screens */
    }
    .content-wrapper {
        order: 1;
    }

    .offer-button {
        width: 100%;
    }
}