﻿/* Loading container */
#loadingContainer {
    background-color: #e9f0f5;
    height: 55px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main section */
.sight-attraction-section {
    background-color: #e9f0f5;
    padding-top: 12px;
}

/* Category container */
.sight-attraction-category-container {
    position: relative;
}

/* Gradient overlays for carousel edges */
.sight-attraction-category-container.beforeStyle::before,
.sight-attraction-category-container.afterStyle::after {
    content: "";
    position: absolute;
    top: -10px;
    height: 65px;
    width: 107px;
    z-index: 0;
}

.sight-attraction-category-container.beforeStyle::before {
    left: 0;
    z-index: 1;
    background: linear-gradient(270deg, rgba(233, 240, 245, 0) 0.46%, #E9F0F5 50.94%);
}

.sight-attraction-category-container.afterStyle::after {
    right: 0;
    background: linear-gradient(90deg, rgba(233, 240, 245, 0) 0.46%, #E9F0F5 50.94%);
}

/* Owl carousel stage */
.sight-attraction-category-container .owl-stage {
    padding-left: 65px;
    display: flex;
    flex-wrap: nowrap;
}

/* Single category styling */
.sight-attraction-category-container .single-category {
    width: 144px;
    margin: 0 auto;
    padding: 0;
}

.sight-attraction-category-container .single-category a {
    display: flex;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    color: #061B2B;
    padding: 5px 6px;
    height: 55px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
}

/* Category link decorative elements */
.sight-attraction-category-container .single-category a::before,
.sight-attraction-category-container .single-category a::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 12px;
    height: 20px;
    background-image: url(/Assets/img/categories-side-icon.svg);
    background-repeat: no-repeat;
    background-size: 12px 20px;
    background-position: left center;
    opacity: 0;
}

.sight-attraction-category-container .single-category a::before {
    right: -12px;
}

.sight-attraction-category-container .single-category a::after {
    left: -12px;
    transform: scaleX(-1);
}

/* Active, hover and focus states */
.sight-attraction-category-container .single-category a.active::before,
.sight-attraction-category-container .single-category a.active::after,
.sight-attraction-category-container .single-category a:focus::before,
.sight-attraction-category-container .single-category a:focus::after,
.sight-attraction-category-container .single-category a:hover::before,
.sight-attraction-category-container .single-category a:hover::after {
    opacity: 1;
}

.sight-attraction-category-container .single-category a:hover {
    background-color: #fff;
    color: #0357AB;
}

.sight-attraction-category-container .single-category a.active,
.sight-attraction-category-container .single-category a:focus {
    outline-offset: -2px;
    border: 0 !important;
    color: #0357AB;
    background-color: #fff;
}

/* Category image handling */
.sight-attraction-category-container .single-category a .category-over-image,
.sight-attraction-category-container .single-category a:hover .category-image,
.sight-attraction-category-container .single-category a:focus .category-image,
.sight-attraction-category-container .single-category a.active .category-image {
    display: none;
}

.sight-attraction-category-container .single-category a:hover .category-over-image,
.sight-attraction-category-container .single-category a:focus .category-over-image,
.sight-attraction-category-container .single-category a.active .category-over-image {
    display: block;
}

.sight-attraction-category-container .single-category img {
    width: 36px;
    max-width: 100%;
}

.sight-attraction-category-container .single-category .category-name {
    width: calc(100% - 36px);
    padding-left: 2px;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

/* Owl carousel navigation */
.sight-attraction-category-container .owl-nav {
    padding: 0;
    margin: 0;
}

.sight-attraction-category-container .owl-nav button.owl-prev,
.sight-attraction-category-container .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translate(-50%, calc(-50% - 5px));
    width: 22px;
    height: 22px;
    border: 2px solid #0357AB;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
}

.sight-attraction-category-container .owl-nav button.owl-prev {
    left: 11px;
}

.sight-attraction-category-container .owl-nav button.owl-next {
    right: -11px;
}

.sight-attraction-category-container button.owl-prev.disabled,
.sight-attraction-category-container button.owl-next.disabled {
    display: none;
}

/* Navigation button arrows */
.sight-attraction-category-container .owl-nav button.owl-prev span,
.sight-attraction-category-container .owl-nav button.owl-next span {
    font-size: 0;
    line-height: 0;
    height: 0;
    width: 0;
    display: inline-block;
    border-color: #0357AB;
    border-width: 2px 2px 0 0;
    border-style: solid;
    padding: 2px;
}

.sight-attraction-category-container .owl-nav button.owl-prev span {
    transform: rotate(-135deg) translate(-1px, 1px);
}

.sight-attraction-category-container .owl-nav button.owl-next span {
    transform: rotate(45deg) translate(-1px, 1px);
}

.sight-attraction-category-container .owl-nav button span img {
    display: none;
}

/* Mobile category container */
.sight-attraction-category-mobile-container {
    display: none;
}

.sight-attraction-category-mobile-container div.fancy-select div.trigger {
    padding-left: 16px;
    font-size: 14px !important;
}

.sight-attraction-category-mobile-container div.fancy-select div.trigger:after {
    content: "";
    height: 0;
    width: 0;
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: #0357ab;
    padding: 4px;
    transform: rotate(45deg) translate(-50%, -50%);
    top: 50%;
    right: 16px !important;
    transition: all 300ms ease;
}

.sight-attraction-category-mobile-container div.fancy-select div.trigger.open:after {
    top: 13px;
    transform: rotate(-135deg) translate(-50%, -50%);
}

/* Utility classes */
.px-12 {
    padding-left: 12px;
    padding-right: 12px;
}

.clear-both {
    clear: both;
}

.pb-20 {
    padding-bottom: 20px;
}

.related-article a.read-more-articles {
    margin-bottom: 20px !important;
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
    background: 0 none !important;
}

/* Mobile styles */
@media screen and (max-width: 767.98px) {
    /* Loading container */
    #loadingContainer {
        height: 44px;
    }
    
    /* Utility classes */
    .pb-mob-0 {
        padding-bottom: 0 !important;
    }
    
    /* Section styling */
    .sight-attraction-section {
        background-color: transparent;
    }
    
    /* Hide desktop carousel, show mobile dropdown */
    .sight-attraction-category-container.owl-carousel {
        display: none !important;
    }
    
    .sight-attraction-category-mobile-container {
        padding: 0 12px;
        display: block !important;
    }
    
    section#saCategeriesCarouselSection {
        visibility: visible !important;
    }
    
    /* Mobile dropdown styling */
    .sight-attraction-category-mobile-container select {
        padding: 0;
        display: none;
        width: 100%;
    }
    
    .sight-attraction-category-mobile-container .fancy-select {
        border: 1px solid #e6e6e6;
        border-radius: 4px;
        height: 44px;
        width: 100%;
        font-size: 14px;
        color: #061B2B;
    }
    
    .sight-attraction-category-mobile-container select option,
    .sight-attraction-category-mobile-container .fancy-select .options {
        width: 100%;
    }
    
    .sight-attraction-category-mobile-container .fancy-select .options {
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3), 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
        border-radius: 4px;
    }
    
    .sight-attraction-category-mobile-container .fancy-select .options li {
        margin: 0;
        padding: 5px 10px;
        height: auto;
        font-size: 14px;
        line-height: 1.4;
        color: #061B2B;
    }
}
