/* Custom styles for Jose Jalapenos */

/* Back-to-top button */
.jj-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: #C41E1E;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, background 0.2s;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.jj-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}
.jj-scroll-top:hover {
    background: #a01818;
}

/* Specials countdown — 2×2 grid instead of single row */
.ul-discount .ul-countdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Clip absolutely-positioned footer vector images so they don't overflow */
.ul-footer {
    overflow: hidden;
}

/* Menu/drinks page intro heading — center-stack instead of left/right spread */
.ul-inner-menu .ul-section-heading {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* WYSIWYG output — restore list styling reset by template base CSS */
.ul-blog-details ul,
.ul-blog-details ol {
    padding-left: 1.75rem;
    margin-bottom: 1rem;
}
.ul-blog-details ul {
    list-style-type: disc;
}
.ul-blog-details ol {
    list-style-type: decimal;
}
.ul-blog-details li {
    margin-bottom: 0.35rem;
    line-height: 1.7;
}
.ul-blog-details ul ul {
    list-style-type: circle;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

/* Locations link in header top bar — white and slightly bold */
.ul-header-contact-info a {
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
}
.ul-header-contact-info a:hover {
    color: rgba(255,255,255,0.8) !important;
}
/* Slider image border radius */
.ul-banner-img-slider .swiper-slide img {
  border-radius: 999px 0 0 999px;
}