
.carousel_header {
	position: relative;
	& h5 {
		font-size: 1.5rem;
		margin: 0 0 0.5rem;
		font-weight: 700;
        text-transform: uppercase;
	}
	& .more_items {
		display: block;
		text-align: left;
		text-decoration: none;
		font-size: 0.875rem;
		font-weight: 700;
		color: var(--font_color_main);
		&:hover {
			text-decoration: underline;
		}
		letter-spacing: 0.04em;
	}
	& i {
		font-size: 0.7em;
	}
}

.carouselControls {
	height: 80px;

	& .OriCarouselObserver {
		position: absolute;
		top: 0;
		left: 0;
		margin: 0;
	};
	& .oriCarouselIndicator {
		position: absolute;
		left: 0;
		top: 1.4rem;
		padding: 0;
		font-size: 1rem;
		z-index: 1;
		width: 15em;
		@media screen and (max-width:450px){
			width: 10em;
		}
	}
	& .indicator-separatorFT::after,
	.indicator-separator::after {
		top: -0.3em !important;
	};
	& .oriCarouselPrevNext {
		position: absolute;
		top: 0.9rem;
		right: 0;
		z-index: 5;
	}
}
/***************************carousel2.css************************************************************/
.carousel {
    width: calc(100%);
    overflow: auto;
    position: relative;
    border: 0px solid #ccc;
    /* margin: 0.5rem; */
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 25%;
    box-sizing: border-box;
    background-color:transparent;
    list-style: none;
    gap: 1rem;
    user-select: none;
    cursor: grab;
    &::-webkit-scrollbar {
        display: none;
        width: 0 !important;
        background: transparent;
    }
   /*  scroll-snap-type: x mandatory ;
    overscroll-behavior-x: contain; */
   
   
    & li{
        box-sizing: border-box;
        border: 0px solid #ccc;
        padding: 1rem;
        aspect-ratio: 1/1.3 ;
        overflow: hidden;
        margin: 1px;
        /* scroll-snap-align:left; */
      
    }

   
   
     @media screen and (max-width: 1200px) {
        grid-auto-columns: 33%;
        padding: 0;
        border: none;
        
    }
     @media screen and (max-width: 750px) {
        grid-auto-columns: 50%;
        padding: 0;
        border: none;
        
    }
   
     @media screen and (max-width: 500px) {
        grid-auto-columns: 100%;
        padding: 0;
        border: none;
        
    }
    @media screen and (max-height: 500px) and (max-width: 1000px) {
       grid-auto-columns: 33%;
       padding: 0;
       border: none;
    }
    scrollbar-width: none;

    /* Prevent image dragging and selection */
    .OriCarousel img, 
    .OriCarousel[draggable] {
        -webkit-user-drag: none;
        -khtml-user-drag: none;
        -moz-user-drag: none;
        -o-user-drag: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        pointer-events: none; /* This prevents click events on images during drag */
    }
    
    /* Re-enable pointer events when not dragging */
    &:not(.dragging) img,
    &:not(.dragging) [draggable] {
        pointer-events: auto;
    }
}



.carousel.dragging {
    scroll-snap-type: none;   /* Disable snapping while dragging */
    scroll-behavior: auto;    /* Instant move, not smooth */
    cursor: grabbing;
}


.OriCarouselObserver{
    position: relative;
    margin: 2rem 0;
    height: 4px;
    width: 100%;
    background-color: #d8d3d3;
    user-select: none; /* Disables text selection */
    -webkit-user-select: none; /* For Safari */
    -ms-user-select: none; /* For Internet Explorer/Edge */
    -moz-user-select: none; /* For Firefox */
	padding:0;
	box-sizing:border-box;
    display: block;
    > .thumb{
        position: absolute;
        left: 0;
        top: 0;
        height: 4px;
        width: 0;
        background-color: #030303;
        user-select: none; /* Disables text selection */
        -webkit-user-select: none; /* For Safari */
        -ms-user-select: none; /* For Internet Explorer/Edge */
        -moz-user-select: none; /* For Firefox */
        cursor: pointer;
        border: 5px solid #f0eeee00;
        border-width: 0px 0;
        display: block;
        box-sizing:unset;
       
    }

	
}
.carouselControls{
    position: relative;
    width: calc(100% - 1rem) ;
    height: 50px;
	/* margin: 0 0.5rem; */
}
.OriCarouselObserver .thumb::after{
    content: " ";
    position: absolute;
    display: block;
    left: 0;
    top: -15px;
    height: 30px;
    width: 100%;
   background-color:transparent;
}

.outerThumbnails .oriGalPrevNext{
    position: absolute;
    right: 10px;
    bottom: 0;
    border: 0px solid #000;
}
.oriCarouselPrevNext{
    display: block;
    float: right;
    width: 5rem;
    border: 0px solid #000;
    position: relative;
}
.oriCarouselPrevNext button{
    font-size: 2rem;
    text-align: center;
    text-indent: -2.5px;
    line-height: 1.1;
    color: #26313a;
    cursor: pointer;
    background: none;
    border:none;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    margin: 0;
    padding: 0;
}
.oriCarouselPrevNext button:disabled{
    color: #ccc;
    cursor: default;
}
.oriCarouselPrevNext button.prev{ float: left;}
.oriCarouselPrevNext button.next{ float: right;}

.oriCarouselIndicator{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 1.5rem;;
    padding: 0 1rem;
    width: 20rem;
}
.oriCarouselIndicator .indicator-separatorFT::after{
    content: " ";
    width: 0.5rem;
    height: 0.1rem;
    position: relative;
    display: inline-block;
    background-color: #26313a;
    top: -0.51em;
    
}
/* .oriCarouselIndicator .indicator-itemVisTo{
    display: none;
} */
.oriCarouselIndicator .indicator-separator::after{
    content: " ";
    width: 2.5rem;
    height: 0.1rem;
    position: relative;
    display: inline-block;
    background-color: #26313a;
    top: -0.51em;
   
}


/* Carousel Dot Indicator Styles */
.oriCarouselIndicatorDots {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    padding: 10px;
    z-index: 10;
}

.carousel-dot {
   
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgb(145, 144, 144);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.carousel-dot:hover {
    background-color: rgba(233, 38, 38, 0.7);
    
    transform: scale(1.2);
}

.carousel-dot.visible {
    background-color: #050505;
    
}

.carousel-dot.active {
    background-color: #050505;
   
   
}

.carousel-dot.active:hover {
    background-color: #1a242b;
    
}
.PageCarouselPaintArtWorks,
.PageCarouselArtists,
.PageCarouselEvents,
.PageCarouselGuides {
	padding: 3em 0;
}
