/*
Modify by AIS take it
web:www.aistechit.com

=> Gobal css
01 => header
02 => banner
03 => brands
04 => promotional-products
05 => categories
06 => event
07 => product-banner
08 => follow-us
09 => footer
*/

/* <!-- => Gobal css  --> */

.cursor-pointer {
	cursor: pointer;
}


.header-title {
	text-align: center;
	text-transform: capitalize;
	font-family: 'Poppins', sans-serif;
	font-size: 40px;
	margin-bottom: 2rem;
	color: #474747;
	font-weight: 700;
	position: relative;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
}

.header-title::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: linear-gradient(90deg, #ffac5f, #ffde59);
	border-radius: 3px;
}

html {
	height: -webkit-fill-availabel;
}

body {
	height: -webkit-fill-availabel;
}

.zoom-container {
	position: relative;
	overflow: hidden;
	cursor: zoom-in;
}

.zoom-container img {
	transition: transform 0.2s ease;
}

.zoom-container:hover img {
	transform: scale(2);
	/* Adjust the scale as needed */
}

h3 {
	font-family: Poppins;
	font-weight: 600;
	text-transform: none;
	line-height: 1.5;
	color: #2b2b2b;
}

/* Base Styles */
.header-section {
    background: #75aeff;
    padding: 5px 0;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    line-height: 28px;
    text-transform: none;
    font-size: 14px;
}

.phone, .header-section {
    text-decoration: none;
    color: #000;
    font-family: sans-serif;
}

.hader-icon {
    font-size: 22px;
}

.nav-section {
    background: transparent;
}

nav {
    padding: 10px 0;
    position: relative;
}

nav .logo {
    height: 50px;
    max-width: 100%;
}

nav .site-search-container {
    position: relative;
    width: 100%;
}

nav input.site-top-search.aa-input {
    border-radius: 20px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

nav .site-tools .tools-icon {
    margin-left: 0;
}

nav .site-tools .shopping-bag-button {
    position: relative;
    margin-right: 15px;
}

nav a {
    text-decoration: none;
    line-height: 40px;
    height: 40px;
    padding: 0 10px;
    display: block;
    color: #222;
    text-align: left;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    transition: color 0.4s;
}

nav a:hover {
    color: #155ca3;
}

nav .icon svg {
    width: 24px;
    height: 24px;
}

nav .shop-cart-count {
    padding: 0 5px;
    height: 18px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    min-width: 18px;
    position: relative;
    top: -7px;
    right: 9px;
    background: #0C4886;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
}

.menu-check {
    display: none;
}

#check {
    display: none;
}

.dropdown-menu {
    padding: 0 !important;
    margin-top: 3px !important;
    height: fit-content !important;
    width: fit-content !important;
}

/* Modal Styles */
.modal.right .modal-dialog,
.modal.left .modal-dialog {
    position: fixed;
    margin: auto;
    width: 35vw;
    height: 100%;
    transform: translate3d(0%, 0, 0);
}

.modal.right .modal-content,
.modal.left .modal-content {
    height: 100%;
    overflow-y: auto;
}

.modal.right .modal-body,
.modal.left .modal-body {
    padding: 15px 15px 80px;
}

.modal.right.fade .modal-dialog {
    right: 0;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.in .modal-dialog {
    right: 0;
}

.modal.left.fade .modal-dialog {
    left: 0;
    transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.fade.in .modal-dialog {
    left: 0;
}

.modal-content {
    border-radius: 0;
    border: none;
}

.modal-header {
    border-bottom-color: #EEEEEE;
    background-color: #FAFAFA;
}

/* Responsive Adjustments */

/* Tablets and small desktops */
@media (max-width: 1024px) {
    .modal.right .modal-dialog,
    .modal.left .modal-dialog {
        width: 45vw;
    }
}

/* Large mobile devices */
@media (max-width: 768px) {
    .header-title {
        font-size: 25px;
    }

    .mobile-nav {
        display: block;
        background-color: #0082e6;
        width: 100%;
    }

    .menu-check {
        display: block;
        width: 24px;
        float: left;
        margin: 10px;
        cursor: pointer;
    }

    .mobile-nav ul {
        position: fixed;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        top: 0;
        left: -100%;
        text-align: center;
        transition: all 0.4s;
        z-index: 999;
        padding: 80px 0 0;
        margin: 0;
    }

    .mobile-nav ul li {
        display: block;
        margin: 20px 0;
    }

    .mobile-nav ul li a {
        font-size: 1.2rem;
        color: #000;
    }

    #check:checked ~ ul {
        left: 0;
    }

    .back_arrow {
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .logo-position {
        padding-left: 8% !important;
    }

    .search_icon {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    nav input.site-top-search.aa-input {
        height: 44px;
        padding: 5px 15px;
        border-radius: 5px;
        border: 0;
        background: #f1f1f1;
    }

    .modal.right .modal-dialog,
    .modal.left .modal-dialog {
        width: 60vw;
    }
}

/* Small mobile devices */
@media (max-width: 576px) {

    .header-section {
        font-size: 12px;
        padding: 3px 0;
    }

    .mobile-nav ul {
        padding-top: 60px;
    }

    .back_arrow {
        right: 15px;
        top: 15px;
    }

    .modal.right .modal-dialog,
    .modal.left .modal-dialog {
        width: 85vw;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .logo-position {
        padding-left: 15% !important;
    }

    .mobile-nav ul li a {
        font-size: 1rem;
    }

    nav input.site-top-search.aa-input {
        height: 38px;
        padding: 5px 10px;
    }
}
/* ======================banner section start==================== */

.banner-section {
	background-color: #f8f9fa;
}

/* Adjust the aspect ratio and add max-height for desktop */
.carousel-inner {
	border-radius: 0.375rem;
	overflow: hidden;
	/* Change from 16x9 to a smaller ratio like 21x9 or add max-height */
	--aspect-ratio: calc(9 / 21 * 100%);
	aspect-ratio: 21/9;
	/* Wider and shorter ratio */
}

/* Alternatively, you can set a fixed max-height for larger screens */
@media (min-width: 1280px) {
	.carousel-inner {
		aspect-ratio: 21/9;
		/* Wider and shorter ratio */
		max-height: 900px !important;
		/* Adjust this value as needed */
	}

}

@media (min-width: 992px) {
	.carousel-inner {
		max-height: 500px;
		/* Adjust this value as needed */
	}

	/* Or maintain aspect ratio but with max height */
	.ratio-16x9 {
		--bs-aspect-ratio: 56.25%;
		/* 9/16*100 */
		max-height: 500px;
	}
}

/* Keep your existing indicator styles */
.carousel-indicators {
	margin-bottom: 1rem;
}

.carousel-indicators [data-bs-target] {
	background-color: rgba(0, 0, 0, 0.25);
	border: none;
	transition: all 0.3s ease;
}

.carousel-indicators .active {
	background-color: rgba(0, 0, 0, 0.75);
	transform: scale(1.2);
}

/* Improved controls visibility */
.carousel-control-prev-icon,
.carousel-control-next-icon {
	background-size: 60%;
	transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
	background-color: rgba(0, 0, 0, 0.5) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {

	.carousel-control-prev-icon,
	.carousel-control-next-icon {
		padding: 1.5rem !important;
	}

	/* You might want a taller banner on mobile */
	.carousel-inner {
		aspect-ratio: 16/9;
		/* Original ratio for mobile */
	}
}

/* <!-- 03 => =============brands======================  --> */

/* Brands Carousel Section */
.brands-carousel-section {
	margin: 3rem 0;
	padding: 2rem 0;
	background: linear-gradient(135deg, #f9f9ff 0%, #f0f4ff 100%);
	position: relative;
	overflow: hidden;
}

.brands-carousel-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
	opacity: 0.5;
	z-index: 0;
}

.brands-carousel-section .container {
	position: relative;
	z-index: 1;
}

.brands-carousel-subtitle {
	text-align: center;
	font-size: 1rem;
	color: #666;
	margin-bottom: 2rem;
	font-weight: 400;
}

/* Brand Card Styling */
.brand-card {
	background: white;
	border-radius: 12px;
	padding: 20px 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.brand-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Brand Image Container */
.brand-image-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 120px;
	margin-bottom: 15px;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	background: #f8f9fa;
}

.brand-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(42, 42, 114, 0.1) 0%, rgba(254, 82, 0, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.brand-link:hover .brand-overlay {
	opacity: 1;
}

.brand-carousel-image {
	max-width: 80%;
	max-height: 80%;
	margin: auto;
	object-fit: contain;
	transition: all 0.4s ease;
	filter: grayscale(20%);
	opacity: 0.9;
}

.brand-link:hover .brand-carousel-image {
	transform: scale(1.1);
	filter: grayscale(0%);
	opacity: 1;
}

.brand-name {
	font-size: 0.95rem;
	color: #444;
	margin-top: auto;
	font-weight: 500;
	text-align: center;
	padding: 0 5px;
}

/* Owl Carousel Customization */
.brands-carousel {
	position: relative;
	padding: 0 40px;
}

.brand-carousel-item {
	padding: 5px;
}

/* Owl Carousel Nav Arrows */
.brands-carousel .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
	margin-top: 0;
}

.brands-carousel .owl-prev,
.brands-carousel .owl-next {
	position: absolute;
	width: 45px;
	height: 45px;
	background: white !important;
	border-radius: 50% !important;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	display: flex !important;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.brands-carousel .owl-prev:hover,
.brands-carousel .owl-next:hover {
	background: linear-gradient(135deg, #ff7e5f, #feb47b) !important;
}

.brands-carousel .owl-prev {
	left: -10px;
}

.brands-carousel .owl-next {
	right: -10px;
}

.brands-carousel .owl-prev i,
.brands-carousel .owl-next i {
	font-size: 1.3rem;
	color: #555;
	transition: color 0.3s ease;
}

.brands-carousel .owl-prev:hover i,
.brands-carousel .owl-next:hover i {
	color: white;
}

/* Owl Carousel Dots */
.brands-carousel .owl-dots {
	text-align: center;
	margin-top: 25px;
}

.brands-carousel .owl-dot {
	width: 14px;
	height: 4px;
	background: #ddd !important;
	border-radius: 2px;
	margin: 0 4px;
	transition: all 0.3s ease;
}

.brands-carousel .owl-dot.active {
	width: 24px;
	background: linear-gradient(90deg, #ff7e5f, #feb47b) !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
	.brands-carousel-title {
		font-size: 1.8rem;
	}

	.brand-image-container {
		height: 100px;
	}
}

@media (max-width: 768px) {
	.brands-carousel-section {
		padding: 1.5rem 0;
	}

	.brands-carousel-title {
		font-size: 1.6rem;
	}

	.brand-card {
		padding: 15px 10px;
	}

	.brands-carousel .owl-prev,
	.brands-carousel .owl-next {
		width: 38px;
		height: 38px;
	}
}

@media (max-width: 576px) {
	.brands-carousel-title {
		font-size: 1.4rem;
	}

	.brands-carousel-subtitle {
		font-size: 0.9rem;
	}

	.brand-image-container {
		height: 80px;
	}

	.brand-name {
		font-size: 0.85rem;
	}
}


/* <!-- 04 => promotional-products  --> */

/* === Promotional Products Section === */

.promo-products-wrapper {
    padding: 3rem 0;
    background-color: #ffffff;
}

.promo-products-header {
    margin-bottom: 2rem;
}

.promo-products-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.promo-products-grid {
    display: flex;
    gap: 0.75rem; /* Reduced gap */
    flex-wrap: wrap;
}

.promo-main-item {
    flex: 2;
    aspect-ratio: 4 / 3;
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: #f1f5f9;
}

.promo-secondary-group {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* Reduced gap */
}

.promo-secondary-item {
    aspect-ratio: 16 / 9;
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: #f1f5f9;
}

.promo-small-items {
    display: flex;
    gap: 0.75rem; /* Reduced gap */
}

.promo-small-item {
    flex: 1;
    aspect-ratio: 1 / 1;
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: #f1f5f9;
}

/* Image Styling */
.promo-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 6px;
    transition: transform 0.3s ease;
    background-color: #f4f4f4; /* fallback bg in case image fails */
}

.promo-main-item {
    aspect-ratio: 2 / 1;
}

.promo-secondary-item {
    aspect-ratio: 2 / 1;
}

.promo-small-item {
    aspect-ratio: 1 / 1;
}

.promo-mobile-item {
    aspect-ratio: 16 / 9;
}


.promo-main-item,
.promo-secondary-item,
.promo-small-item,
.promo-mobile-item {
    position: relative;
    overflow: hidden;
}

/* Hover Animation */
.promo-product-link:hover .promo-product-image {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.promo-product-link:hover .promo-product-label {
    background-color:  rgba(0, 0, 0, 0.7);
    color: #fff;
    transition: background-color 0.3s ease;
}


/* Label Styling - Reduced vertical gap */
/* Product Label */
.promo-product-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.493);
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}


/* Mobile Layout */
.promo-products-mobile {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
}

.promo-mobile-item {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: #f1f5f9;
}

/* Responsive Rules */
@media (max-width: 768px) {
    .promo-products-desktop {
        display: none;
    }

    .promo-products-mobile {
        display: flex;
    }

    .promo-product-label {
        font-size: 0.85rem;
        padding-top: 0.3rem;
    }
}



/* <!-- 05 => categories  --> */

/* Categories Section Styles */
/* Categories Section */
/* Categories Section */
.categories-section {
    padding: 3rem 1rem;
    background-color: #f9fafb;
}

.categories-container {
    max-width: 1280px;
    margin: 0 auto;
}

.categories-scroller-wrapper {
    padding: 0 2rem;
    position: relative;
}

/* Category Card Styling */
.categories-carousel .category-card {
    background: #fff;
    border-radius: 1rem;
    height: 100%;
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    border-color: #f97316;
}

.category-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

/* Image Wrapper */
.category-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1; /* Makes it square and consistent */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f5f9;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-link:hover .category-image {
    transform: scale(1.05);
}

/* Text Content */
.category-content {
    padding: 1rem;
}

.category-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.category-shop-now {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #f97316;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.category-link:hover .category-shop-now {
    opacity: 1;
    transform: translateY(0);
}

/* Owl Carousel Custom */
.owl-stage {
    display: flex;
    align-items: stretch;
}

.owl-item {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white !important;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    color: #f97316 !important;
    font-size: 1.5rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -10px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -10px;
}

.owl-carousel .owl-nav button:hover {
    background: #f97316 !important;
    color: white !important;
}


/* <!-- 06 => event  --> */

/* Event Section Styles */
.event-section {
	width: 100%;
	padding: 2rem 0;
	margin: 0 auto;
	max-width: 1200px;
}

.event-container {
	width: 100%;
}

/* Event Header Styles */
.event-header {
	width: 100%;
	margin-bottom: 1.5rem;
}

.event-title-container {
	width: 100%;
}

.event-title-row {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.event-title-col {
	width: 100%;
	margin-bottom: 1rem;
}

.event-timer-col {
	width: 100%;
}

.event-name {
	display: flex;
	align-items: center;
	font-size: 1.5rem;
	font-weight: 600;
	color: #333;
	line-height: 55px;
}

.event-icon {
	width: 30px;
	margin-right: 10px;
}

.event-timer-container {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-direction: column;
	width: 100%;
}

.event-time-text {
	color: #dc3545;
	font-size: 1.25rem;
	margin-right: 1rem;
	text-align: center;
	margin-bottom: 0.5rem;
}

/* Event Banner Styles */
.event-banner {
	width: 100%;
	margin-bottom: 2rem;
}

.event-banner-image {
	width: 100%;
	border-radius: 6px;
	display: block;
}

/* Products Grid Styles */
.event-products {
	width: 100%;
	margin-top: 2rem;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1.5rem;
}

.product-item {
	width: 100%;
}

/* Timer Styles */
.event-timer {
	margin-top: 0.5rem;
}

/* Responsive Styles */
@media (min-width: 768px) {
	.event-title-col {
		width: 50%;
		margin-bottom: 0;
	}

	.event-timer-col {
		width: 50%;
	}

	.event-timer-container {
		flex-direction: row;
	}

	.event-time-text {
		margin-bottom: 0;
		text-align: left;
	}
}

@media (max-width: 576px) {
	.event-name {
		font-size: 1.25rem;
		line-height: 40px;
	}

	.products-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 1rem;
	}
}

/* <!-- 07 => product-banner   --> */

/* Promotional Banner Section */
.promo-banner-section {
	padding: 2.5rem 0;
	background-color: #f9fafb;
}

.promo-banner-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.promo-banner-link {
	display: block;
	border-radius: 0.75rem;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
}

.promo-banner-link:hover {
	transform: translateY(-0.25rem);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.promo-banner-image {
	width: 100%;
	height: 300px;
	object-fit: cover;
	display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.promo-banner-section {
		padding: 1.5rem 0;
	}
    .promo-banner-image {
        height: auto;
    }
}

/* <!-- 08 => follow-us  --> */

/* Follow Us Section Styles */
.follow-us-section {
	padding: 3rem 0;
	background-color: #f3f4f6;
}

.follow-us-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* Header Styles */


.follow-us-subtitle {
	text-transform: uppercase;
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	color: #4b5563;
	font-weight: 500;
	margin-bottom: 0.5rem;
	text-align: center;
}

/* Instagram Grid Styles */
.instagram-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 1rem;
}

.instagram-post {
	position: relative;
	border-radius: 0.5rem;
	overflow: hidden;
}

.instagram-link {
	display: block;
	position: relative;
}

.instagram-image {
	width: 100%;
	height: 16rem;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.instagram-link:hover .instagram-image {
	transform: scale(1.05);
}

.instagram-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.instagram-link:hover .instagram-overlay {
	opacity: 1;
}

.instagram-icon {
	color: white;
	font-size: 1.75rem;
}

/* Responsive Grid Layout */
@media (min-width: 640px) {
	.instagram-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px) {
	.instagram-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1024px) {
	.instagram-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 480px) {
	.instagram-image {
		height: 12rem;
	}

	.follow-us-title {
		font-size: 1.5rem;
	}
}

/* <!-- 09 => footer  --> */

/* Footer Styles */
.site-footer {
	background-color: #2c3e50;
	color: #ecf0f1;
	font-family: 'Poppins', sans-serif;
	margin: 0;
	padding-top: 20px;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.footer-column {
	margin-bottom: 30px;
	padding: 0 15px;
}

.footer-column h4 {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-column h4::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 2px;
	background: #3498db;
}

.footer-column p {
	color: #bdc3c7;
	line-height: 1.6;
	font-size: 14px;
	margin-bottom: 0;
}

.contact-info {
	margin-bottom: 15px;
	display: flex;
	align-items: flex-start;
}

.contact-info i {
	color: #3498db;
	margin-right: 10px;
	margin-top: 3px;
	font-size: 16px;
	flex-shrink: 0;
}

.contact-info span {
	color: #bdc3c7;
	font-size: 14px;
	line-height: 1.4;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: #bdc3c7;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 14px;
	display: block;
	line-height: 1.4;
}

.footer-links a:hover {
	color: #3498db;
	padding-left: 5px;
}

.payment-methods {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	flex-wrap: wrap;
	gap: 10px;
}

.payment-methods img {
	height: 30px;
	width: auto;
	max-width: 100%;
}

.payment-methods h6 {
	color: #fff;
	font-size: 14px;
	margin: 0;
}

.social-links {
	margin-top: 30px;
}

.social-links h6 {
	color: #fff;
	margin-bottom: 15px;
	font-size: 16px;
}

.social-icons {
	display: flex;
	gap: 15px;
}

.social-icons a {
	color: #fff;
	background: #3498db;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	text-decoration: none;
	font-size: 25px;
}

.social-icons a:hover {
	background: #1a252f;
	transform: translateY(-3px);
}

.footer-bottom {
	background: #1a252f;
	padding: 20px 0;
	text-align: center;
	margin-top: 50px;
}

.footer-bottom p {
	color: #bdc3c7;
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
}

.footer-bottom p a {
	color: #3498db;
	text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 1199px) {
	.footer-container {
		max-width: 100%;
	}
}

@media (max-width: 991px) {
	.footer-column {
		margin-bottom: 40px;
	}


}

@media (max-width: 767px) {

	.footer-column {
		text-align: center;
		margin-bottom: 30px;
		padding: 0 10px;
	}

	.footer-column h4::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.contact-info i {
		margin-right: 0;
		margin-bottom: 5px;
	}

	.payment-methods {
		align-items: center;
	}

	.social-icons {
		justify-content: center;
	}

	.footer-bottom {
		margin-top: 30px;
		padding: 15px 0;
	}
}

@media (max-width: 575px) {
	.footer-column {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.footer-column h4 {
		font-size: 16px;
	}

	.footer-column p,
	.contact-info span,
	.footer-links a {
		font-size: 13px;
	}

	.footer-links li {
		text-align: left;
	}

	.payment-methods {
		display: flex;
		justify-content: center;
	}

	.payment-methods h6,
	.social-links h6 {
		font-size: 14px;
	}

	.social-icons a {
		width: 32px;
		height: 32px;
		font-size: 14px;
	}
}

.shipment-section {
	padding: 3rem 1rem;
	background-color: #f9fafb;
	font-family: 'Poppins', sans-serif;
}

.shipment-box {
	max-width: 1280px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 1rem;
	padding: 2rem;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.shipment-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	border-bottom: 1px solid #e5e7eb;
	padding-bottom: 1rem;
	margin-bottom: 2rem;
}

.shipment-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: #1f2937;
	margin-right: 1rem;
	margin-bottom: 0.5rem;
}

.shipment-status {
	padding: 0.4rem 1.25rem;
	border-radius: 9999px;
	font-size: 0.9rem;
	font-weight: 600;
	background-color: #ecfdf5;
	color: #059669;
	margin-bottom: 0.5rem;
}

/* Carousel Container */
.shipment-carousel {
	margin-top: 1rem;
	position: relative;
}

/* Shipment Card */
.shipment-card {
	background: #ffffff;
	border-radius: 0.75rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	margin: 0.5rem;
	height: auto;
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
}

.shipment-card:hover {
	transform: translateY(-4px);
}

/* Product Image */
.shipment-product {
	display: flex;
	justify-content: center;
    width: 100%;
	margin-bottom: 1rem;
}

.shipment-product-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; /* চিত্রের অনুপাত */
    object-fit: contain;
    background-color: #fff; /* ইমেজের রঙের সাথে মেলান */
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    padding: 10px; /* সামান্য padding দিলে center হবে */
}



/* Info Table */
.shipment-info {
	flex: 1;
}

.shipment-info table {
	width: 100%;
	font-size: 0.9rem;
	border-collapse: collapse;
	table-layout: fixed;
}

.shipment-info th,
.shipment-info td {
	padding: 0.4rem 0;
	border-bottom: 1px solid #e5e7eb;
	text-align: left;
	word-break: break-word;
}

.shipment-info th {
	color: #6b7280;
	font-weight: 500;
	width: 40%;
}

.shipment-info td {
	color: #111827;
	font-weight: 600;
}

/* Owl Carousel Nav */
.owl-nav {
	position: absolute;
	top: -60px;
	right: 0;
	margin-top: 0;
}

.owl-nav button {
	background: #e5e7eb !important;
	color: #111827 !important;
	border: none !important;
	padding: 0.5rem 1rem !important;
	margin: 0 0.25rem !important;
	border-radius: 9999px !important;
	transition: background 0.3s ease !important;
	font-size: 1rem !important;
	line-height: 1 !important;
}

.owl-nav button:hover {
	background: #d1d5db !important;
}

.owl-nav button span {
	font-size: 1.5rem;
	line-height: 0.5;
	position: relative;
	top: -2px;
}

/* Responsive */
@media (min-width: 1600px) {
	.shipment-box {
		max-width: 1400px;
	}
}

@media (max-width: 1024px) {
	.shipment-title {
		font-size: 1.6rem;
	}


}

@media (max-width: 768px) {
	.shipment-box {
		padding: 1.5rem;
	}

	.shipment-title {
		font-size: 1.4rem;
	}

	.shipment-info table {
		font-size: 0.85rem;
	}

	.owl-nav {
		top: -55px;
	}
}

@media (max-width: 480px) {
	.shipment-box {
		padding: 1.25rem;
	}

	.shipment-title {
		font-size: 1.25rem;
	}

	.shipment-info table {
		font-size: 0.8rem;
	}

	.shipment-status {
		font-size: 0.8rem;
		padding: 0.3rem 1rem;
	}

	.owl-nav {
		position: static;
		text-align: center;
		margin-top: 1rem;
	}
}


#small-screen-nav-links {
	display: none;
}


.dropdown-menu[data-bs-popper] {
	margin-top: 12px !important;
}

.search_icon {
	height: 15px;
	position: absolute;
	left: 8px;
	top: 10px;
	width: 15px;
}

#productTails {
	margin: 50px 0px 30px 0px;
}

#productTails .container {
	padding: 80px;

}

@media only screen and (max-width: 1024px) {
	#productTails .container {
		padding: 0px;
	}


	/*nav .shop-cart-count {*/
	/*    top: -34px;*/
	/*    right: -15px;*/
	/*}*/

	.section-content {
		padding: 20px;
	}

	#loginForm {
		padding: 20px !important;
	}
}

#productTails .product-adv-1 {
	height: 580px;
}

#productTails .product-adv-2 {
	height: 320px;
}

#productTails .product-adv-3 {
	height: 245px;
}

#productTails span {
	position: absolute;
	top: 85%;
	left: 10%;
	color: #0c4886;
	font-size: 25px;
	font-weight: bolder;
	transition: transform 0.3s ease;
	border-radius: 5px;
	padding: 5px;
}

#productTails .product-adv-3 span {
	position: absolute;
	top: 77%;
	left: 10%;
	color: #0c4886;
	font-size: 25px;
	font-weight: bolder;
	transition: transform 0.3s ease;
	border-radius: 5px;
	padding: 5px;
}

#productTails .product-adv {
	position: relative;
	/* Make product-adv the reference point for span */
}

#productTails .product-adv a:hover>span {
	transform: translate(50%, -50%) scale(1.2);
	/* Scale on hover */
}


.product-card-wrapper {
	background: #fff;
	border-radius: 10px !important;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	overflow: hidden;
	position: relative;

}

.product-card-wrapper:hover {
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
	transform: translateY(-5px);
}

.products a {
	text-decoration: none !important;
	color: #474747;
}

.products h3 {
	font-size: 40px;
	color: #474747;
}

.image-container {
    position: relative;
    width: 100%;
    height: 220px;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

/* Hover effect optional */
.image-container img:hover {
    transform: scale(1.05);
}


.first-image {
	z-index: 1;
}

.second-image {
	z-index: 2;
	opacity: 0;
	position: absolute;
	top: 0px;
}

.image-container:hover .second-image {
	opacity: 1;
}

.image-container:hover .first-image {
	opacity: 0;
}

#productBanner {
	margin: 150px 0px 80px 0px;
}

#productBanner img {
	height: 340px;
}

.flash-sell .section-title-header {
	border-bottom: 1px solid #ececec;
	padding-bottom: 10px;
}

.product-discount-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 3;
}

.product-discount-value {
	background: linear-gradient(135deg, #0c4886 0%, #0d6efd 100%);
	color: #fff;
	padding: 3px 10px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	width: fit-content;
	position: relative;
	top: 15px;
	left: 5px;
	z-index: 3;
}

.view-all-button {
	padding: 0.6em 2em;
	border: none;
	outline: none;
	color: rgb(255, 255, 255) !important;
	background: #0c4886;
	cursor: pointer;
	position: relative;
	z-index: 0;
	border-radius: 10px;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	transition: all 0.3s ease;
}

.view-all-button:hover {
	color: #474747 !important;
	background: #75BDB0 !important;
	transition: .4s;
}

.add-to-cart-button {
	color: #fff !important;
	background: linear-gradient(135deg, #0c4886 0%, #0d6efd 100%);
	border: none;
	border-radius: 25px;
	padding: 8px 25px !important;
	text-decoration: none;
	width: fit-content !important;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	display: inline-block;
	margin-top: 10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.add-to-cart-button:hover {
	color: #fff !important;
	background: linear-gradient(135deg, #0d6efd 0%, #0c4886 100%);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(12, 72, 134, 0.3);
}

.product-title {
	font-weight: 600;
	margin: 15px 0 5px;
	color: #333;
	font-size: 16px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.price-container {
	min-height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.current-price {
	font-weight: 700;
	font-size: 18px;
}

.old-price {
	font-size: 15px;
}

.product-details-container {
	padding: 0 5px 10px;
}

@media (max-width: 768px) {
	.product-card-wrapper {
		width: 100%;
		margin-bottom: 20px;
	}

	.image-container {
		height: 180px;
	}



	.product-title {
		font-size: 15px;
	}

	.add-to-cart-button {
		padding: 6px 20px !important;
		font-size: 13px;
	}
}


#aboutUs h3 {
	font-size: 40px;
	color: #474747;
	padding: 30px 0px;
	margin-top: 20px;
}

.follow-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}

.column {
	flex: 1 1 20%;
	max-width: 20%;
	box-sizing: border-box;
}

.column img {
	width: 100%;
	height: 380px;
}

footer h4 {
	color: #2b2b2b;
	font-family: Poppins;
	font-size: 18px;
	padding: 50px 0px 10px 0px;
}

footer span {
	font-family: Poppins;
	font-weight: 500;
	line-height: 28px;
	text-transform: none;
	font-size: 14px;
	margin: 0;
	color: #000;
}


footer ul {
	padding-left: 0;
}

footer ul li {
	list-style: none;
	line-height: 25px;
}

footer ul li a {
	text-decoration: none;
	color: #000;
}

footer .follow-us a {
	color: #fff;
	border-radius: 10px;
	text-decoration: none;
}

footer .follow-us a i {
	padding: 5px;
	background: #000000;
	border-radius: 2px;
}

.qty-input {
	border: 1px solid gray;
	width: fit-content;
	border-radius: 20px;
	padding: 0px 10px;
}

.qty-input .qty-count {
	border: none;
	background: transparent;
	font-size: 30px;
	font-weight: 500;
	line-height: 0px;
}

 .product-qty {
	border: none;
	width: 80px;
	text-align: center;
	font-size: 25px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* For Firefox */
input[type="number"] {
	-moz-appearance: textfield;
}

.single_add_to_cart_button {
	font-weight: 600;
	text-transform: uppercase;
	vertical-align: top;
	pointer-events: auto;
	background-color: #0c4886;
	color: #ffffff;
	border-radius: 50px;
	text-decoration: none;
	padding: 10px 20px;
	transition: .4s;
	border: none;
}

.single_add_to_cart_button:hover {
	background: #155ca3;
	color: #ffffff;
	border-radius: 40px;
}


.single_order_now_button {
	font-weight: 600;
	text-transform: uppercase;
	vertical-align: top;
	pointer-events: auto;
	background-color: #388fc5;
	color: #ffffff;
	border-radius: 50px;
	text-decoration: none;
	padding: 10px 30px;
	transition: .4s;
	border: none;
}

.single_order_now_button:hover {
	background: #67a6d2;
	color: #ffffff;
	border-radius: 40px;
}

.qty-count--minus:hover,
.qty-count--add:hover {
	color: #75bdb0;
}

#productDescription {
	margin-top: 50px;
}

#productDescription .description-title {
	font-size: 25px;
	font-family: Poppins;
	color: #0c4886;
	text-align: center;
	margin-bottom: 20px;
}

.product-description-title {
	font-family: Poppins;
	font-weight: 600;
	text-transform: none;
	line-height: 1.5;
	color: #2b2b2b;
}

#relatedProduct {
	margin-top: 50px;
	border-top: 1px solid gray;
}

.related-heading {
	font-family: Poppins;
	text-align: center;
	font-size: 18px;
	font-weight: normal;
	padding: 25px 0;
}

.product-images {
	margin-top: 20px;
	height: 300px;
	overflow-y: auto;
}

.product-images div:hover img {
	border: 1px solid gray;
	transition: .4s;
}

#productOrderInfo span {
	border-radius: 5px;
	padding: 5px;
	font-size: 20px;
}

#productImageDisplay {
	aspect-ratio: auto 600 / 600;
}

#productImageMaximize {
	bottom: 10px;
	right: 20px;
	z-index: 1000;
	/* Make sure it stays above other content */
	background-color: rgba(255, 255, 255, 0.8);
	/* Optional: semi-transparent background */
	cursor: pointer;
}

.product-images div img {
	opacity: .6;
}

.product-image-preview-active,
.sm-product-image-preview-active,
.modal-product-image-preview-active,
.modal-sm-product-image-preview-active {
	border: 1px solid black !important;
	opacity: 1 !important;
}

.modal .product-images {
	height: 800px;
}

.modal .product-images img {
	height: 150px;
	width: 200px;
}

#productImageDisplayModal {
	height: 800px;
    object-fit: contain;
}

#productOrderInfo h3,
#productOrderInfo .product-price {
	font-size: 24px !important;
	margin-top: 0;
	font-weight: 500;
	margin-bottom: 10px;
}

#productOrderInfo del,
#productOrderInfo .del-old-price {
	color: #757575 !important;
}

a.campaign-button,
a.gallery-button {
	display: none;
}

#collapseCategory ul,
#collapseBrand ul,
#collapseSize ul,
#collapseFilter ul,
#collapseFilter ul,
#collapseFilter ul {
	padding: 0px;
}

#collapseCategory .category,
#collapseBrand .brand,
#collapseSize .size,
#collapseFilter .category,
#collapseFilter .brand,
#collapseFilter .size {
	margin: 0;
	font-size: var(--font-size-b2);
	font-weight: var(--s-medium);
	padding: 2px 5px;
	list-style: none;
	border-radius: 10px;
}

.product-table-heading {
	display: flex;
	justify-content: space-between;
}

.product-table-heading .title {
	margin-bottom: 20px;
	font-weight: 500;
	display: inline-block;
}

.table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.remove-wishlist {
	border: none;
	background: none;
}

.axil-product-table {
	font-family: var(--font-secondary);
	margin: 0;
}

.axil-product-table thead th {
	font-size: 20px;
	text-transform: capitalize;
	border: none;
	color: var(--color-heading);
	padding: 18px 15px;
}

.axil-product-table tbody td.product-thumbnail {
	min-width: 130px;
	width: 130px;
}

.axil-product-table tbody td.product-thumbnail a {
	border-radius: 10px;
	display: block;
}

.axil-product-table tbody td.product-thumbnail a img {
	border-radius: 10px;
	height: 80px;
	width: 80px;
	object-fit: cover;
}

.axil-product-table tbody td.product-title {
	width: 30%;
	color: var(--color-black);
}

.axil-product-table tbody td.product-title a {
	text-decoration: none;
	color: #000;
}

.axil-product-table.axil-cart-table .pro-qty {
	width: auto;
	display: flex;
}

.axil-product-table.axil-cart-table .pro-qty .qtybtn {
	font-size: 20px;
	line-height: 27px;
	font-weight: 500;
}


.pro-qty .qtybtn {
	background: #ffffff;
	border: 1px solid #ddd;
	border-radius: 10%;
}

.pro-qty .qtybtn {
	width: 32px;
	display: block;
	float: left;
	line-height: 26px;
	cursor: pointer;
	text-align: center;
	font-size: 16px;
	font-weight: 300;
	color: #000;
	height: 32px;
	background: #f6f7fb;
	border-radius: 50%;
	transition: .3s;
	border: 2px solid rgba(0, 0, 0, 0);
}

.axil-product-table.axil-cart-table .pro-qty input {
	margin: 0 5px;
	min-width: 45px;
	border: none;
	width: 30px;
	text-align: center;
}

.axil-product-table.axil-cart-table td:last-child {
	padding-right: 50px;
	text-align: right;
}

.toast-success {
	background-color: #0b2e13;
}

.sweet-alert {
	background-color: white;
	font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	width: 478px;
	padding: 17px;
	border-radius: 5px;
	text-align: center;
	position: fixed;
	left: 50%;
	top: 50%;
	margin-left: -256px;
	margin-top: -200px;
	overflow: hidden;
	display: none;
	z-index: 99999;
	display: block;
	margin-top: -177px;
	border: 1px solid black;
}

.showSweetAlert[data-animation=pop] {
	-webkit-animation: showSweetAlert .3s;
	animation: showSweetAlert .3s;
}

.sweet-alert .sa-icon {
	width: 80px;
	height: 80px;
	border: 4px solid gray;
	-webkit-border-radius: 40px;
	border-radius: 40px;
	border-radius: 50%;
	margin: 20px auto;
	padding: 0;
	position: relative;
	box-sizing: content-box;
}

.sweet-alert button {
	background-color: #8cd4f5;
	color: white;
	border: 0;
	box-shadow: none;
	font-size: 17px;
	font-weight: 500;
	-webkit-border-radius: 4px;
	border-radius: 5px;
	padding: 10px 32px;
	margin: 26px 5px 0 5px;
	cursor: pointer;
}

.sweet-alert .sa-icon.sa-info {
	border-color: #c9dae1;
}

.sweet-alert .sa-icon.sa-success {
	border-color: #a5dc86;
}

.animateXMark {
	-webkit-animation: animateXMark .5s;
	animation: animateXMark .5s;
}

.sweet-alert .sa-icon.sa-error .sa-line {
	position: absolute;
	height: 5px;
	width: 47px;
	background-color: #f27474;
	display: block;
	top: 37px;
	border-radius: 2px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	left: 17px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	right: 16px;
}

.sweet-alert .sa-icon.sa-custom {
	background-size: contain;
	border-radius: 0;
	border: 0;
	background-position: center center;
	background-repeat: no-repeat;
}

.sweet-alert .sa-error-container {
	background-color: #f1f1f1;
	margin-left: -17px;
	margin-right: -17px;
	overflow: hidden;
	padding: 0 10px;
	max-height: 0;
	webkit-transition: padding .15s, max-height .15s;
	transition: padding .15s, max-height .15s;
}

.sweet-alert .sa-icon.sa-warning {
	border-color: #f8bb86;
}

.sweet-alert .sa-icon.sa-warning .sa-body {
	position: absolute;
	width: 5px;
	height: 47px;
	left: 50%;
	top: 10px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	margin-left: -2px;
	background-color: #f8bb86;
}

.sweet-alert .sa-icon.sa-warning .sa-dot {
	position: absolute;
	width: 7px;
	height: 7px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin-left: -3px;
	left: 50%;
	bottom: 10px;
	background-color: #f8bb86;
}

fieldset {
	opacity: 0;
}

.axil-order-summery .checkout-btn {
	width: 100%;
	text-align: center;
}

a.axil-btn,
button.axil-btn {
	border-radius: 6px;
	font-size: var(--font-size-b1);
	line-height: var(--line-height-b1);
	font-weight: 700;
	display: inline-block;
	padding: 16px 38px;
	position: relative;
	transition: all .3s ease-in-out;
	z-index: 1;
	text-decoration: none;
	border: 1px solid #0C4886;
	color: #0C4886;
}

.axil-order-summery {
	border: 1px solid #EFEFEF;
	padding: 40px;
}

.axil-order-summery .title {
	font-weight: var(--s-medium);
}

.axil-order-summery .summery-table tbody td {
	border-bottom: 1px solid;
	border-color: rgba(101, 105, 115, .2);
	font-size: var(--font-size-b1);
	font-weight: var(--s-medium);
	color: #292930;
	padding: 18px 15px 18px 0;
	min-width: 180px;
}

.axil-order-summery .summery-table .order-total-amount {
	font-size: 20px;
	font-weight: bold;
	color: #38C5AF;
	;
}

.cart-item .pro-qty {
	display: flex;
}

.cart-item .quantity-input {
	text-align: center;
}

#modalCartValue {
	position: unset;
}


/* Full-screen height for the modal */
.modal-dialog.modal-dialog-slide {
	position: fixed !important;
	top: 0 !important;
	right: 0 !important;
	margin: 0 !important;
	width: 40vw;
	/* Full width of the viewport */
	transform: translateX(100%) !important;
	transition: transform 0.3s ease-out !important;
	height: 100vh;
	/* Full height of the viewport */
}

/* Ensures the modal content also takes full height */
.modal-dialog-slide .modal-content {
	height: 100% !important;
	/* Full height of the viewport */
	padding: 0;
	/* Remove padding if needed for full coverage */
}

/* Slide-out animation when the modal is shown */
.modal.show .modal-dialog-slide {
	transform: translateX(0) !important;
}

/* 70% fixed height for cart-sidebar-content */
/*.cart-sidebar-content {*/
/*height: 70vh;*/
/*}*/

/* Optional: To ensure no extra margins or padding at the modal */
.modal-body {
	padding: 0 !important;
	margin: 0 !important;
}

.modal-sm-body{display: none;}
/* Optional: Ensure modal always displays correctly across different devices */
@media (max-width: 768px) {
	.modal-dialog.modal-dialog-slide {
		width: 100vw;
		/* Ensure full width on smaller screens */
	}
}

article input,
article select {
	border: 1px solid #DDDDDD !important;
	border-radius: 0 !important;
}

#staticRight .total {
	color: #2b2b2b;
	font-size: 14px;
	font-weight: 700;
	line-height: 28px;
}

#staticRight .amount {
	color: #0c4886;
	font-size: 14px;
	font-weight: 700;
	line-height: 28px;
}

.cart-sidebar-content .mini_cart_item img,
.mini_cart_item_copy .mini_cart_item img {
	max-width: 75px;
	max-height: 75px;
	object-fit: cover;
}

.mini_cart_item .item-title,
.mini_cart_item_copy .item-title {
	font-size: 14px;
	font-family: Poppins;
	color: #2b2b2b;
	font-weight: 500;
}

.mini_cart_item .qty-input,
.mini_cart_item_copy .qty-input {
	width: 38px;
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 0;
	border-top: 0;
	border-bottom: 0;
	color: #2b2b2b;
}

.mini_cart_item .item-price,
.mini_cart_item_copy .item-price {
	color: #2b2b2b;
}

.mini_cart_item .item-title,
.mini_cart_item_copy .item-title {
	font-family: Poppins;
	font-weight: 500;
	text-transform: none;
	font-size: 14px;
	color: #474747
}

.mini_cart_item .cart-remove,
.mini_cart_item_copy .cart-remove {
	opacity: .2;
	transition: .4s;
}

.mini_cart_item .cart-remove:hover,
.mini_cart_item_copy .cart-remove:hover {
	opacity: 1;
}

.mini_cart_item .cart-qty-input,
.mini_cart_item_copy .cart-qty-input {
	border: 1px solid #ccc;
	border-radius: 10px;
}

.mini_cart_item .cart-qty-input .qty-input-button,
.mini_cart_item_copy .cart-qty-input .qty-input-button {
	font-size: 14px;
	line-height: 0;
}


@media only screen and (max-width: 1440px) {

	.column img {
		height: 288px;
	}

	#productDescription {
		padding: 30px;
	}
}


@media only screen and (max-width: 1024px) {
	.modal .product-images {
		height: 600px;
	}

	#productImageDisplayModal {
		height: 800px;
	}

	.image-container {
		position: relative;
		width: 100%;
		height: 100px;
	}



	.column img {
		height: 203px;
	}

}

@media only screen and (max-width: 768px) {

	header,
	#large-screen-nav,
	#big-screen-nav-links {
		display: none;
	}

	nav .shop-cart-count {
		top: -7px;
		right: 11px;
	}

	#small-screen-nav-links {
		display: block;
	}

	.image-container {
		position: relative;
		width: 100%;
		height: 200px;
	}



	.column img {
		height: 153px;
	}

	.add-to-cart-button {
		padding: 5px 16px !important;
		font-size: 14px !important;
	}

	footer {
		margin-bottom: 10px;
	}

	footer .follow-us a {
		width: 100% !important;
	}

	#productTails .product-adv-1 {
		height: 320px;
	}

	#productTails .product-adv-2 {
		height: 180px;
	}

	#productTails .product-adv-3 {
		height: 125px;
	}

	#productTails .product-adv-1 span {
		top: 82%;
	}

	#productTails .product-adv-2 span {
		top: 65%;
	}

	#productTails .product-adv-3 span {
		top: 65%;
	}

	#productBanner {
		margin: 100px 0px 40px 0px;
	}

	#productBanner img {
		height: 260px;
	}

	.single_add_to_cart_button,
	.single_order_now_button {
		font-weight: 400;
		border-radius: 30px !important;
		padding: 10px 20px;
		font-size: 14px;
	}


	.product-images {
		padding: 0px;
	}


	.modal-fullscreen {
		padding: unset !important;
	}

	#productImageDisplay {
		height: 320px;
	}

	#smallScreenProducts {
		margin-bottom: 30px;
	}

	#smallScreenProducts .product-images {
		margin: 0;
		width: 100%;
		overflow-x: auto;
		display: flex;
		justify-content: flex-start;
		height: auto;
		padding: 10px 0;
	}

	#smallScreenProducts img {
		height: 350px;
		width: 100%;
        object-fit: contain;
	}

    .sm-image-preview{
        height: 70px !important;
        width: 70px !important;
    }

	#smallScreenProducts .product-images div {
		margin-right: 3vw;
		width: fit-content;
	}

	.modal .product-images {
		margin-top: 20px;
		width: 100%;
		overflow-x: auto;
		display: flex;
		justify-content: flex-start;
		height: auto;
		padding: 10px 0;
	}

	.modal img {
		height: 300px;
	}

	.modal .product-images div {
		margin: 5px;
	}

	.modal .product-images div img {
		height: 50px;
		width: auto;
		border-radius: 5px;
	}

	a.campaign-button {
		display: block;
		text-decoration: none;
		position: fixed;
		top: 25%;
		right: 20px;
		width: 50px;
		height: 50px;
		background: linear-gradient(to bottom, hotpink 0%, tomato 100%);
		box-shadow: 0 4px 4px rgba(0, 0, 0, .3);
		border-radius: 50%;
		line-height: 50px;
		text-align: center;
		color: white;
		font-family: Arial, sans-serif;
		font-size: 16px;
		z-index: 9999;
	}

	a.gallery-button {
		display: block;
		text-decoration: none;
		position: fixed;
		top: 40%;
		right: 10px;
		width: 60px;
		height: 60px;
		border-radius: 50%;
		text-align: center;
		color: white;
		font-family: Arial, sans-serif;
		font-size: 16px;
		z-index: 9999;
	}

	a.gallery-button img {
		height: 40px;
	}


	#productDescription .description-title {
		text-align: left;
		width: fit-content;
		padding: 5px 10px;
		border: 1px solid #0c4886;
	}


	.mini_cart_item .item-title,
	.mini_cart_item_copy .item-title {
		font-size: 12px;
	}

	.mini_cart_item .qty-input,
	.mini_cart_item_copy .qty-input {
		font-size: 12px;
	}

	.mini_cart_item .item-price,
	.mini_cart_item_copy .item-price {
		font-size: 12px;
	}

	.mini_cart_item .item-title a,
	.mini_cart_item_copy .item-title a {
		font-size: 12px;
	}

	.mini_cart_item .cart-qty-input,
	.mini_cart_item_copy .cart-qty-input {
		border-radius: 12px;
	}

	.mini_cart_item .cart-qty-input .qty-input-button,
	.mini_cart_item_copy .cart-qty-input .qty-input-button {
		font-size: 10px;
	}

}

@media only screen and (max-width: 767px) {
	#cart_form .d-xl-flex {
		display: inline-block;
	}

	.qty-input {
		width: auto;
		display: inline-block;
	}

	.qty-input .qty-count {
		padding: 0;
	}
    .modal-sm-body{display: block !important;}
}

@media only screen and (max-width: 425px) {

	.products h6,
	p {
		font-size: 14px;
	}

	.image-container {
		height: 150px;
		width: 100%;
	}



	.product-discount-value {
		top: 37px;
		padding: 5px;
	}

	#staticRight .modal-title {
		font-size: 16px;
	}

	#productTails .product-adv-1 {
		height: 200px;
	}

	#productTails .product-adv-2 {
		height: 100px;
	}

	#productTails .product-adv-3 {
		height: 85px;
	}

	#productTails span {
		position: relative;
		top: -46px;
		left: 10%;
		font-size: px;
		padding: 0px;
	}


	#productBanner {
		margin: 50px 0px 20px 0px;
	}

	#productBanner img {
		height: 100px;
	}

	#productImageMaximizeSm {
		position: absolute;
		bottom: 10px;
		right: 10px;
		z-index: 1000;
		background-color: rgba(255, 255, 255, 0.8);
		cursor: pointer;
	}

	#productDescription ul li img {
		padding: 10px;
		border: 2px solid black;
		box-sizing: border-box;
	}

	#productOrderInfo span {
		border-radius: 2px;
		padding: 2px;
		font-size: 16px;
	}

	nav .shop-cart-count {
		top: -8px;
		right: 11px;
	}

	.column {
		flex: 1 1 100%;
		max-width: 100%;
	}

	.modal {
		max-height: 650px;
	}

	.column img {
		height: 100%;
	}

	.qty-input .product-qty,
	.qty-input .qty-count {
		font-size: 15px;
	}

	.axil-order-summery {
		padding: 5px;
	}

	.cart-item .quantity-input {
		width: 40px;
	}

	.dropdown-menu[data-bs-popper] {
		left: -78px !important;
	}

	.cart-sidebar-content {
		height: 60vh;
	}

	/* Slide-in from the right */
	.modal-dialog.modal-dialog-slide {
		width: 70vw;
		height: 100%;
	}

	#staticRight .modal-body {
		padding: 0;
	}

	.cart-sidebar-content .mini_cart_item img {
		max-width: 50px;
		max-height: 50px;
		object-fit: cover;
	}

	.view-all-button {
		padding: 0 10px;
	}
}

#staticRight {
	width: unset !important;
}
