/*
 * Custom BlinQ Styles
 * Theme: iRollers
 * Author: https://www.blinq.com.au
 *
 * Note: Customize BlinQ styles to match the iRollers theme branding.
 * Modify these styles with caution and always test thoroughly.
 * Backup your CSS file before making changes.
 */

/*
 *Header Stickey Effect
 */

/* blinQ-nav-header Styles */
.blinQ-nav-header {
	background-color: rgba(255, 255, 255, 1);
	z-index: 2000; /* Adjust the z-index as needed */
	margin: 0;
	border-bottom: 0px solid #dadada;
	width: 100%;
	text-align: center;
	transition: background 0.5s ease; /* Add a smooth transition effect for background changes */
}

/* blinQ-nav-header Scrolling Down */
.blinQ-nav-header.scrolled {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.8); /* Adjust the background color and transparency */
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5); /* Add a subtle box shadow when scrolled */
}

/* Slider Carousel Styles */
#slider-top .elementor-widget-image-carousel .swiper-slide {
	padding: 15px;
	background: #fff;
	border-radius: 30px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}
#slider-top .swiper-slide-image {
	width: 100%;
}
#slider-top .elementor-image-carousel-caption {
	padding-top: 5px;
}
#slider-top .swiper-slide-image {
	overflow: hidden;
    transition: filter 0.3s ease;
}
#slider-top .swiper-slide:hover .swiper-slide-image {
    filter: grayscale(100%);
}
#slider-top .swiper-slide-link {
	color: var(--e-global-color-text) !important;
	transition: color 0.3s ease;
}
#slider-top .swiper-slide:hover .swiper-slide-link {
	color: var(--e-global-color-primary) !important;
}

.batman::after {
    position: relative !important;
	background-color: red !important; /* Required for positioning the gradient */
}
.batman::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100%; !important; /* Adjust height as needed */
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%) !important;
}

/* Product Category Styles */
.product-title {
	color: #fff;
	font-weight: 500;
	font-size: 16px;
}
.item-count {
	color: #fff;
	font-weight: 400;
	font-size: 12px;
}
.collection-box {
	transition: filter 0.5s ease;
}
.collection-box:hover {
	filter: grayscale(100%);
}


/* Disable all animations */
*,
*::before,
*::after {
    animation-delay: -0.0001s !important;
    animation-duration: 0s !important;
    animation-play-state: paused !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
    transition-property: none !important;
    scroll-behavior: auto !important;
}

.drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 15px;
}
.drawer.open {
  right: 0;
}
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer-content {
  margin-top: 1rem;
  max-height: 80%;
  overflow-y: auto;
}

