body {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    font-family: 'Poppins', sans-serif;
    background-image: url('../../assets/img/background.jpg');
    background-size: cover;
    background-attachment: fixed;
}

.category {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    position: relative;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    cursor: pointer;
}

.category-text {
    background: #ffffff;
    width: 100%;
    height: 100px;
    transition: height 0.15s ease-out;
    overflow: hidden;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d29886;
}

.category-text:hover {
    height: 100%;
    transition: height 0.25s ease-in;
    opacity: .9;
    border-radius: 10px;
}

.offcanvas-bottom {
    height: 100vh;
}

.category-item {
    width: 100%;
    height: auto;
    text-decoration: none;
    display: flex;
    gap: .5rem;
    margin-bottom: 1rem;
    border-radius: 20px;
}

.category-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    margin: 5px;
    border: 1px solid #d1d1d1;
}

.category-item h5 {
    text-transform: uppercase;
    font-size: .95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}