/*messenger float btn*/
.float {
	position: fixed;
	width: 48px;
	height: 48px;
	bottom: 20px;
	right: 80px;
	background-color: #168aff;
	color: #fff;
	border-radius: 50px;
	text-align: center;
	font-size: 25px;
	z-index: 100;

	display: flex;
	align-items: center;
	justify-content: center;
}

.my-float {
	margin-top: 0px;
	margin-left: 0px;
	scale: 1.1;
}

.hero-section {
	margin-top: 10px;
}

.btn-yellow {
	background-color: #ffef00;
	color: #000;
	border: none;
	font-weight: bold;
}

.btn-yellow:hover {
	background-color: #e6d600;
	color: #000;
}

.promo-card {
	border-radius: 15px;
	padding: 2.5rem;
	color: white;
	text-decoration: none;
	display: block;
	height: 100%;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.promo-card:hover {
	transform: translateY(-5px);
	text-decoration: none;
	color: white;
}

.smartphone-bg {
	background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.laptop-bg {
	background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.deals-bg {
	background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

.school-bg {
	background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.promo-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	color: white !important;
}

.promo-subtitle {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	line-height: 1.3;
	color: white !important;
}

.promo-description {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	opacity: 0.95;
	color: white !important;
}

.yellow-text {
	color: #fbbf24;
}

.btn-custom {
	background-color: white;
	color: #1e40af;
	border: none;
	padding: 12px 30px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.btn-custom:hover {
	background-color: #f8fafc;
	color: #1e40af;
	transform: scale(1.05);
}

.product-image {
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
	max-width: 200px;
	opacity: 0.8;
}

.laptop-image {
	position: absolute;
	right: 20px;
	top: 20px;
	max-width: 180px;
	opacity: 0.9;
}

.gaming-image {
	position: absolute;
	right: 10px;
	top: 10px;
	max-width: 120px;
	opacity: 0.9;
}

.school-image {
	position: absolute;
	right: 15px;
	bottom: 15px;
	max-width: 160px;
	border-radius: 10px;
	opacity: 0.9;
}

.content-wrapper {
	position: relative;
	z-index: 2;
}

@media (max-width: 768px) {
	.promo-title {
		font-size: 2rem;
	}

	.promo-subtitle {
		font-size: 1.3rem;
	}

	.promo-card {
		padding: 2rem;
		margin-bottom: 1rem;
	}

	.product-image,
	.laptop-image,
	.gaming-image,
	.school-image {
		max-width: 120px;
	}
}

@media (max-width: 576px) {
	.promo-title {
		font-size: 1.8rem;
	}

	.promo-subtitle {
		font-size: 1.2rem;
	}

	.promo-card {
		padding: 1.5rem;
	}

	.product-image,
	.laptop-image,
	.gaming-image,
	.school-image {
		max-width: 100px;
		opacity: 0.6;
	}
}

.deal-section {
	background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
	margin-top: 30px;
	color: white;
	padding: 3rem 0;
	position: relative;
	overflow: hidden;
}

.yellow-bar {
	background: #fbbf24;
	height: 8px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.deal-title {
	font-size: 3.5rem;
	font-weight: 700;
	color: #fbbf24;
	text-align: center;
	margin-bottom: 0.5rem;
	letter-spacing: 2px;
}

.deal-subtitle {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 0.5rem;
}

.deal-description {
	text-align: center;
	font-size: 1.1rem;
	margin-bottom: 2rem;
	opacity: 0.95;
}

.btn-shop {
	background: white;
	color: #0284c7;
	border: none;
	padding: 12px 30px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	display: block;
	margin: 0 auto 3rem auto;
}

.btn-shop:hover {
	background: #f8fafc;
	color: #0284c7;
	transform: scale(1.05);
}

.product-card {
	background: white;
	border-radius: 15px;
	padding: 1.5rem;
	height: 100%;
	color: #1f2937;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-image-container {
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	background: #f8fafc;
	border-radius: 10px;
}

.product-image {
	max-width: 120px;
	max-height: 120px;
	object-fit: contain;
}

.product-title {
	font-size: 0.9rem;
	color: #4b5563;
	margin-bottom: 0.5rem;
	line-height: 1.3;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.product-rating {
	margin-bottom: 0.5rem;
}

.star {
	color: #fbbf24;
	font-size: 0.9rem;
}

.star-empty {
	color: #d1d5db;
}

.rating-count {
	color: #6b7280;
	font-size: 0.8rem;
	margin-left: 0.5rem;
}

.savings {
	color: #dc2626;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 0.25rem;
}

.price {
	color: #1f2937;
	font-size: 1.3rem;
	font-weight: 700;
}

.swiper {
	width: 100%;
	padding: 0 50px;
}

.swiper-button-next,
.swiper-button-prev {
	color: white;
	background: rgba(255, 255, 255, 1);
	border-radius: 99999999px;
	border: 1px solid gray;
	width: 44px;
	height: 44px;
	margin-top: -22px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 18px !important;
	color: black;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
	.deal-title {
		font-size: 2.5rem;
	}

	.deal-subtitle {
		font-size: 1.5rem;
	}

	.swiper {
		padding: 0 20px;
	}

	.product-card {
		padding: 1rem;
	}

	.product-image-container {
		height: 120px;
	}
}

@media (max-width: 576px) {
	.deal-title {
		font-size: 2rem;
	}

	.deal-subtitle {
		font-size: 1.3rem;
	}

	.deal-section {
		padding: 2rem 0;
	}
}


/* ===== DESKTOP STYLES ===== */
.catmenu-trigger {
	padding: 0px 10px !important;
}

.header-catmenu {}

.catmenu-trigger {
	background-color: var(--primary-color);
	color: white;
	font-weight: bold;
	border: none;
	padding: 10px 20px;
	border-radius: 6px;
	cursor: pointer;
}

.catmenu-body {
	position: absolute;
	top: 95%;
	left: 20px;
	width: 60dvw;
	display: none;
	z-index: 999;
}

.header-catmenu:hover .catmenu-body {
	display: block !important;
}

.mega-menu {
	display: grid;
	grid-template-columns: repeat(5, .5fr);
	gap: 20px;
	background-color: #fff;
	padding: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mega-column h6 {
	font-weight: bold;
	margin-bottom: 10px;
	font-size: 14px;
	text-transform: uppercase;
	color: #000;
}

.mega-column ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.mega-column ul li {
	margin-bottom: 6px;
}

.mega-column ul li a {
	text-decoration: none;
	color: #333;
	font-size: 14px;
}

.mega-column ul li a:hover {
	text-decoration: underline;
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 1024px) {
	.catmenu-body {
		position: absolute;
		display: none;
		width: 100%;
		background-color: #fff;
		box-shadow: none;
		padding: 0;
		left: 0px;
	}

	.mega-menu {
		display: block;
		padding: 10px 15px;
	}

	.mega-column {
		margin-bottom: 20px;
	}

	.mega-column h6 {
		font-size: 16px;
		margin-bottom: 8px;
	}

	.mega-column ul li a {
		font-size: 15px;
	}

	.catmenu-trigger {
		width: 100%;
		text-align: left;
		padding: 12px 15px;
		background-color: var(--primary-color);
		border: none;
		border-radius: 0;
	}

	/* Optional: Toggle support idea (for future JS if needed) */
	.catmenu-body.collapsed {
		display: none;
	}

	.header-catmenu.open .catmenu-body {
		display: block;
	}
}

.sale-title {
	color: white !important;
}

@media (max-width: 992px) {
	.content-area {
		flex-direction: column;
		text-align: center;
	}

	.text-content {
		flex: none;
		padding-right: 0;
		margin-bottom: 2rem;
	}

	.sale-title {
		font-size: 2.5rem;
	}

	.sale-description {
		font-size: 1.2rem;
	}
}

@media (max-width: 768px) {
	.sale-title {
		font-size: 2rem;
	}

	.sale-description {
		font-size: 1.1rem;
	}

	.swiper {
		padding: 0 20px;
	}

	.laptop-product-card {
		height: 260px;
		padding: 1.2rem;
	}
}

@media (max-width: 576px) {
	.laptop-sale-section {
		padding: 2rem 0;
	}

	.sale-title {
		font-size: 1.8rem;
	}

	.sale-description {
		font-size: 1rem;
	}
}



.laptop-product-card {
	background: white;
	border-radius: 12px;
	padding: 1.5rem;
	height: 330px;
	color: #1f2937;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
	display: flex;
	flex-direction: column;
}

.laptop-product-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.laptop-image-container {
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	background: #f8fafc;
	border-radius: 8px;
}

.laptop-title {
	font-size: 0.85rem;
	color: #4b5563;
	margin-bottom: 0.5rem;
	line-height: 1.2;

	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.laptop-rating {
	margin-bottom: 0.5rem;

}

.star {
	color: #fbbf24;
	font-size: 0.8rem;
}

.star-empty {
	color: #d1d5db;
}

.rating-count {
	color: #6b7280;
	font-size: 0.75rem;
	margin-left: 0.3rem;
}

.laptop-savings {
	color: #dc2626;
	font-weight: 600;
	font-size: 0.85rem;
	margin-bottom: 0.25rem;
}

.laptop-price {
	color: #1f2937;
	font-size: 1.2rem;
	font-weight: 700;
}

.additional-info {
	color: #6b7280;
	font-size: 0.75rem;
	margin-top: 0.25rem;
}

.sale-description {
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 2rem;
	opacity: 0.95;
}

.btn-shop-deals {
	background: white;
	color: #1e3a8a;
	border: none;
	padding: 12px 25px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.btn-shop-deals:hover {
	background: #f8fafc;
	color: #1e3a8a;
	transform: scale(1.05);
}

.laptop-sale-section {
	background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
	color: white;
	padding: 2.5rem 0;
	position: relative;
	overflow: hidden;
}

@media (max-width: 992px) {
	.laptop-product-card {
		height: 350px;
	}

	.laptop-image-container {
		height: 50%;
		background-color: white;

		img {
			height: 100%;
			width: 100%;
			object-fit: contain;
		}
	}
}

.custom-section-title {
	/*color: white;*/
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
	z-index: 2;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.brand-slider-section {
	padding: 60px 0;
	/*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
	position: relative;
	overflow: hidden;
}

.brand-slider-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
}

.brand-swiper {
	position: relative;
	z-index: 2;
	overflow: hidden;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	/*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);*/
	padding: 40px 0;
}

.brand-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 120px;
	transition: all 0.3s ease;
}

.brand-slide:hover {
	transform: translateY(-5px);
}

.brand-logo {
	max-height: 60px;
	max-width: 180px;
	object-fit: contain;
	transition: all 0.3s ease;
	filter: grayscale(20%) opacity(0.8);
}

.brand-slide:hover .brand-logo {
	filter: grayscale(0%) opacity(1);
	transform: scale(1.1);
}

/* Custom brand styles */
.apple-logo {
	font-size: 48px;
	color: #333;
	font-weight: 300;
}

.lenovo-logo {
	background: #E31837;
	color: white;
	padding: 8px 16px;
	font-weight: bold;
	font-size: 24px;
	border-radius: 4px;
}

.samsung-logo {
	font-size: 28px;
	color: #1428A0;
	font-weight: 400;
	letter-spacing: 3px;
}

.google-logo {
	font-size: 32px;
	font-weight: 400;
}

.google-g {
	color: #4285F4;
}

.google-o1 {
	color: #EA4335;
}

.google-o2 {
	color: #FBBC05;
}

.google-g2 {
	color: #4285F4;
}

.google-l {
	color: #34A853;
}

.google-e {
	color: #EA4335;
}

.meta-logo {
	font-size: 28px;
	color: #0668E1;
	font-weight: 600;
}

.breville-logo {
	font-size: 28px;
	color: #6B2C91;
	font-weight: 400;
	font-style: italic;
}

/* Pagination dots */
.swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
	background: white;
	transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.custom-section-title {
		font-size: 2rem;
		margin-bottom: 30px;
	}

	.brand-swiper {
		padding: 30px 0;
	}

	.brand-slide {
		height: 100px;
	}

	.brand-logo {
		max-height: 50px;
	}
}

/* Floating animation */
@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}
}

.brand-slide:nth-child(odd) {
	animation: float 6s ease-in-out infinite;
}

.brand-slide:nth-child(even) {
	animation: float 6s ease-in-out infinite reverse;
}


.shop-save-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.blog-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	height: 100%;
	position: relative;
}

.blog-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.card-header {
	height: 200px;
	position: relative;
	overflow: hidden;
}

.refurbished-header {
	background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.refurbished-header::before {
	content: '';
	position: absolute;
	top: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	backdrop-filter: blur(10px);
}

.refurbished-header::after {
	content: '♻️';
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 80px;
	opacity: 0.1;
}

.school-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.school-header::before {
	content: '';
	position: absolute;
	top: -50px;
	right: -50px;
	width: 150px;
	height: 150px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	backdrop-filter: blur(10px);
}

.school-header::after {
	content: '🎒';
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 60px;
	opacity: 0.2;
}

.card-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin: 0;
	text-align: center;
}

.refurbished-title {
	color: #2c3e50;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.school-title {
	color: white;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.card-body {
	padding: 40px 30px;
}

.card-subtitle {
	font-size: 1.25rem;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 15px;
}

.card-description {
	color: #666;
	font-size: 1rem;
	margin-bottom: 25px;
	line-height: 1.7;
}

.shop-link {
	color: #667eea;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	position: relative;
}

.shop-link::after {
	content: '→';
	transition: transform 0.3s ease;
}

.shop-link:hover {
	color: #5a67d8;
	transform: translateX(5px);
}

.shop-link:hover::after {
	transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 992px) {

	.card-title {
		font-size: 2rem;
	}

	.card-body {
		padding: 30px 25px;
	}
}

@media (max-width: 768px) {
	.shop-save-section {
		padding: 60px 0;
	}

	.card-header {
		height: 150px;
	}

	.card-title {
		font-size: 1.75rem;
	}

	.card-body {
		padding: 25px 20px;
	}
}

/* Animation on scroll */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-on-scroll.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Staggered animation */
.blog-card:nth-child(1) {
	transition-delay: 0.1s;
}

.blog-card:nth-child(2) {
	transition-delay: 0.2s;
}

.widget-customerservice{
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
	.info h5, .info h6{
	color: white !important;	
	}
}

.header-accountbox-trigger, .header-accountbox-trigger *{
	color: white !important;	
}

.hoproduct-title{
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;	
}

.hoproduct-frontimage{
	aspect-ratio: 16/9;
	object-fit: contain;
}

.grid-card {
	text-decoration: none;
	color: inherit;
	display: block;
	transition: transform 0.2s;
	padding: 20px;
	text-align: center;
	border-radius: 10px;
	margin-bottom: 20px;
}

.grid-card:hover {
	text-decoration: none;
	color: inherit;
	transform: translateY(-5px);
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.grid-image {
	width: 80px;
	height: 80px;
	object-fit: contain;
	margin-bottom: 15px;
}

.grid-title {
	font-size: 14px;
	font-weight: 500;
	color: #007bff;
	line-height: 1.3;
	margin: 0;
}

.container-fluid {
	padding: 40px 20px;
	background-color: #f8f9fa;
}

@media (max-width: 576px) {
	.grid-image {
		width: 60px;
		height: 60px;
	}
	
	.grid-title {
		font-size: 12px;
	}
	
	.grid-card {
		padding: 15px;
	}
}