/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/

.short-summary-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#offcanvasNavbar .offcanvas-body .nav-item,
#offcanvasNavbar .offcanvas-body .dropdown-menu {
    text-align: end;
}

@media (min-width: 992px) {

    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    #offcanvasNavbar .offcanvas-body .nav-item,
    #offcanvasNavbar .offcanvas-body .dropdown-menu {
        text-align: start;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown {
        position: relative;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        display: block;
        position: absolute;
        top: 100%;
        visibility: hidden;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.3s ease-in-out, max-height 0.5s ease-in-out, visibility 0.3s;
        transform-origin: top center;
        border-radius: 0.25rem;
    }

    .navbar-expand-lg .navbar-nav .dropdown:hover > .dropdown-menu {
        visibility: visible;
        opacity: 1;
        max-height: 500px;
    }

    .dropdown-menu-end {
        right: 0;
        left: auto;
    }
}

.transition-shadow:hover {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15)!important;
    transition: box-shadow 0.3s ease-in-out;
}

/*.collection-wrap {
    position: relative;
}*/

.collection-active.owl-carousel {
    display: flex;
    flex-direction: column; /* Stack children vertically */
}

.collection-active .owl-nav {
    /*    position: absolute;*/
    order: 1; /* Make the navigation appear first */
    align-self: flex-start; /* Push the nav buttons to the right */
    margin-bottom: 15px;
}

.collection-active .owl-stage-outer {
    order: 2; /* Make the items appear second */
}

.collection-active .owl-nav button.owl-prev,
.collection-active .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    background: #f0f0f0 !important;
    color: #333 !important;
    border-radius: 50% !important;
    font-size: 16px !important;
    transition: all 0.3s ease;
    display: inline-flex; /* Helps center the icon inside */
    align-items: center;
    justify-content: center;
}

.collection-active .owl-nav button.owl-prev:hover,
.collection-active .owl-nav button.owl-next:hover {
    background: #e0e0e0 !important;
    color: #000 !important;
}

.collection-active .owl-nav {
    display: flex;
    gap: 8px;
}