/* ================================================
	GLOBAL STYLES
================================================ */
* {
	font-family: 'Montserrat', sans-serif;.btn-danger
	font-weight: 400;
	font-style: normal;
	line-height: 1.5em;
	scroll-behavior: smooth;
}

body {
	color: #212529;
	padding-top: 76px;
}

.row {
	margin: 0 !important;
	padding: 0 !important;
}

a {
	text-decoration: none !important;
}

@media (max-width: 440px) {
	body {
		padding-top: 60px !important;
	}
}

h4 {
	font-family: 'Playfair Display', serif;
	font-weight: 400;
}

/* ================================================
	NAVBAR
================================================ */
.navbar {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	padding: 10px 20px;
	transition: all 0.3s ease;
}

.navbar:hover {
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
	height: 90px;
	padding-top: 0;
	z-index: 1;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.navbar-brand img:hover {
	transform: scale(1.05);
}

.hamburger i {
	font-size: 25px;
	color: #333;
	transition: color 0.3s ease;
}

.hamburger i:hover {
	color: #ff6b6b;
}

.navbar-toggler:focus {
	box-shadow: none !important;
}

.navbar-toggler {
	border: none !important;
}

/* place this AFTER bootstrap / theme css */
.navbar .nav-link.cart-icon,
.navbar .nav-link.cart-icon:hover,
.navbar .nav-link.cart-icon:focus,
.navbar .nav-link.cart-icon:active,
.navbar .nav-link.cart-icon.active {
	border-bottom: none !important;
	box-shadow: none !important;
	outline: none !important;
}

/* also hide any underline created by pseudo-elements */
.navbar .nav-link.cart-icon::after,
.navbar .nav-link.cart-icon::before {
	display: none !important;
	content: none !important;
}


/* Show dropdown on hover for desktop */
@media (min-width: 992px) {
	.navbar .dropdown:hover .dropdown-menu {
		display: block !important;
		margin-top: 0;
	}
}

@media (max-width: 440px) {
	.cart-icon .badge {
		display: inline-block !important;
	}
	
	.offcanvas .dropdown-menu {
		position: static;
		/* dropdown menu follows flow inside offcanvas */
		float: none;
		width: 100%;
		/* optional: full width */
		margin: 0;
		background-color: #fff;
		border: 0;
		box-shadow: none;
	}
	
	.cart-icon {
		background: none !important;
	}
}

/* ================================================
	BUTTONS & BADGES
================================================ */
.loading-btn {
	border: none !important;
	font-size: 14px !important;
	color: white;
	background: linear-gradient(135deg, #ff6b6b, #ff9770);
	padding: 10px 20px;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.loading-btn:hover {
	background: linear-gradient(135deg, #ff9770, #ff6b6b);
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(255, 107, 107, 0.4);
}

.cart-icon {
	position: relative;
	cursor: pointer;
}

.cart-icon .badge {
	position: absolute;
	background-color: #c6a35d !important;
	color: #fff;
	font-size: 13px;
	height: 18px;
	width: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	top: -6px;
	left: 0;
	border-radius: 50%;
	font-weight: 600;
	box-shadow: 0 0 6px rgba(255, 107, 107, 0.5);
}

/* ================================================
	BANNER SECTION
================================================ */
.main-banner {
	padding: 0 !important;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.main-banner img {
	border-radius: 8px;
	height: 450px;
	width: 100%;
	transition: transform 1s ease;
}

.main-banner:hover img {
	transform: scale(1.05);
}

/* ================================================
	HEADERS & TEXT
================================================ */
.header {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	text-align: center;
	background-image: linear-gradient(to right top, #FFD700, #F4CE00, #E9C400, #DEBB00, #D3B200);
	padding: 0 !important;
    min-height: 90px;
}

.header .title {
	font-weight: 700;
	font-size: 38px;
	color: #212529;
	text-transform: capitalize;
	position: relative;
}

/**
	.underline {
	width: 90px;
	height: 4px;
	background: linear-gradient(90deg, #ff6b6b, #ff9770);
	border-radius: 10px;
	margin-top: 10px;
}**/

.header h1 {
	/** font-size: 40px; **/
	font-weight: 900;
	font-size: 35px;
}

/* ================================================
	PRODUCT CARD
================================================ */
.card1 {
	width: auto;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	transition: all 0.3s ease;
}

.card1:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card1 img {
	height: 270px;
	width: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.card1:hover img {
	transform: scale(1.05);
}

.card1 .card-body {
	border: 1px solid #e0e0e0;
	border-top: none;
	border-radius: 0 0 10px 10px;
	padding: 15px;
}

.price {
	font-size: 20px;
	color: #ff6b6b !important;
	font-weight: 600;
}

/**
	.card1 .btn {
	background: linear-gradient(135deg, #051144, #051144);
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	}
	
	.card1 .btn:hover {
	background: linear-gradient(135deg, #051144, #051144);
	transform: translateY(-2px);
	}
**/

/* Quantity Controls Wrapper */
.quantity-controls {
	width: 100% !important;
}

/* Quantity box (shown after ADD click) */
.quantity-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 140px;
	height: 42px;
	border: 1px solid #d1d1d1;
	border-radius: 30px;
	background: #fff;
	padding: 0 8px;
	width: 100% !important;
}

/* + and - buttons */
.quantity-btn {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: none;
	background: #f2f2f2;
	color: #333;
	font-size: 14px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.25s ease;
}

.quantity-btn:hover {
	background: #e0e0e0;
}

/* Quantity number */
.quantity-display {
	font-size: 14px;
	font-weight: 600;
	min-width: 20px;
	text-align: center;
}

/* ADD Button – Full Width */
.add-btn {
	width: 100% !important;
	color: #051144 !important;
	border: none;
	border-radius: 50px !important;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	padding: 10px !important;
	background: none !important;
	border: #051144 solid 1px !important;
}

/* Hover effect */
.add-btn:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

/* Hide quantity until ADD is clicked (you already use hidden) */
.hidden {
	display: none;
}

/* ================================================
	RESPONSIVE DESIGN
================================================ */
@media (max-width: 768px) {
	.navbar-brand img {
		width: 40px;
		height: 40px;
	}
	
	.header .title {
		font-size: 30px;
	}
	
	.card1 img {
		height: 220px;
	}
	
	.main-banner img {
		height: 200px;
	}
}


/* ====================================================
	GENERAL STYLES
==================================================== */
hr {
	background-color: #eee !important;
	color: #000 !important;
	margin: 10px 0 !important;
	border: none;
	height: 2px;
	border-radius: 5px;
}

.card-title {
	font-size: 24px;
	color: #222;
	letter-spacing: 0.5px;
}

.card1 {
	position: relative;
	cursor: pointer;
	background: #fff;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.card1:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* ====================================================
	ADD BUTTONS & QUANTITY CONTROLS
==================================================== */
/**
	.control-box {
	width: 65px;
	height: 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f8f9fa;
	color: #333;	
	border-radius: 6px;
	border: 1px solid #ddd;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
	}
	
	.quantity-wrapper {
	width: 250px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	}
	
	.quantity-display {
	color: #111;
	font-weight: 600;
	font-size: 14px;
	}
	
	.add-btn {
	width: 65px;
	height: 25px;
	color: #fff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(135deg, #ff6b6b, #ff9770);
	transition: all 0.3s ease;
	}
	
	.add-btn:hover {
	background: linear-gradient(135deg, #ff9770, #ff6b6b);
	box-shadow: 0 3px 10px rgba(255,107,107,0.3);
	}
**/
/* ====================================================
	BUTTONS
==================================================== */
.btn-primary,
.btn-success {
	border: none;
	color: white;
	font-size: 13px;
	border-radius: 5px !important;
	padding: 8px 14px;
	background: linear-gradient(135deg, #007bff, #00b4d8);
	transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-success:hover {
	transform: translateY(-1px);
}

.btn-warning {
	border-radius: 50px !important;
	padding: 8px 14px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	background: none !important;
}

.btn-danger {
	border-radius: 50px !important;
	padding: 8px 14px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	background: #051144 !important;
	border:#051144 1px solid !important;
}

.btn-warning:hover,
.btn-danger:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
	border:#051144 1px solid !important;
}

.btn-outline-primary {
	border: #051144 solid 1px !important;
}

.btn-outline-primary:hover {
	border: #051144 solid 1px !important;
	background: #051144 !important;
}

.btn.loading-btn {
	padding: 5px 10px;
	font-size: 12px;
	background-color: rgb(46, 182, 254) !important;
}

.btn.loading-btn .spinner-border-sm {
	width: 16px;
	height: 16px;
	padding: 20px !important;
}

/* ====================================================
	FLOATING ICONS
==================================================== */
.whatsup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	height: 55px;
	width: 55px;
	font-size: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
	background: #25D366;
	border-radius: 50%;
	color: #fff;
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
	transition: all 0.3s ease-in-out;
}

.whatsup:hover {
	transform: scale(1.1) rotate(10deg);
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.check-btn a {
	position: fixed;
	bottom: 20px;
	right: 20px;
	height: 55px;
	width: 55px;
	padding: 10px;
	text-decoration: none;
	font-size: 20px;
	color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
	background: linear-gradient(135deg, #ff6b6b, #ff9770);
	box-shadow: 0 8px 18px rgba(255, 107, 107, 0.4);
	transition: all 0.3s ease-in-out;
}

.check-btn a:hover {
	transform: scale(1.1);
	box-shadow: 0 10px 25px rgba(255, 107, 107, 0.6);
}

/* ====================================================
	PRODUCT & CART SECTIONS
==================================================== */
.item-1 {
	padding: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	background: #fff;
	transition: all 0.3s ease;
}

.item-1:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.cart-img img {
	width: 200px;
	height: 100px;
	object-fit: contain;
}

.quantity-wrapper1 button {
	padding: 5px 8px;
	background-color: #f1f3f5;
	margin: 0 10px;
	height: 25px;
	width: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.quantity-wrapper1 button:hover {
	background: #ff9770;
	color: #fff;
}

/* ====================================================
	FORM STYLES
==================================================== */
.s-address input,
.s-address textarea,
.s-address select {
	margin-bottom: 5px;
	background-color: #f7f7f7;
	font-size: 13px;
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 8px;
	transition: border-color 0.3s ease;
}

.s-address input:focus,
.s-address textarea:focus,
.s-address select:focus {
	border-color: #ff6b6b;
	outline: none;
}

.cart-details input,
.cart-details .btn {
	background-color: #f7f7f7;
	font-size: 13px;
	margin-bottom: 20px !important;
}

/* ====================================================
	PRODUCT DISPLAY
==================================================== */
.p-name {
	font-size: 18px;
	font-weight: 700;
	color: #333;
}

.quantity {
	background-color: #f1f3f5;
	font-size: 14px;
	border-radius: 4px;
	padding: 2px 6px;
	font-weight: 600;
}

.line-through {
	text-decoration: line-through;
	color: #888;
}

.desc li,
.desc p {
	text-align: justify;
	color: #555;
}

/* ====================================================
	ABOUT PAGE
==================================================== */
.about-ul li {
	text-align: justify;
	padding-right: 20px;
}

.about-card {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.about-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.about-card img {
	width: 100%;
	height: 13rem;
	object-fit: cover;
}

/* ====================================================
	CONTACT PAGE
==================================================== */
.contact-page {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	background: #fff;
	padding: 20px;
}

.contact-form input,
.contact-form textarea {
	margin-bottom: 20px;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #ff6b6b;
	outline: none;
}

.contact-info {
	color: #000;
	border-radius: 10px;
	padding: 0 20px;
}

.contact-info a {
	color: #000 !important;
	text-decoration: none !important;
}

.contact-info i {
	font-size: 24px;
	height: 50px;
	width: 50px;
	border-radius: 50%;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ff6b6b;
	color: #fff;
}

/* ====================================================
	SOCIAL ICONS
==================================================== */
.social-icons {
	margin-top: 30px;
	text-align: center;
}

.social-icons a {
	display: inline-block;
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 50%;
	background-color: #fff;
	color: #001524;
	margin: 0 8px;
	text-align: center;
	font-size: 22px !important;
	transition: all 0.3s ease;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
	transform: translateY(-3px);
	box-shadow: #c6a35d;
}

.fa-whatsapp {
	background-color: #25D366;
	color: white;
	border-radius: 50%;
}

/* ====================================================
	DROPDOWNS
==================================================== */
.dropdown-center {
	position: relative !important;
	padding: 3px 10px 3px 0px;
}

.dropdown-center a {
	color: #ffffff;
	text-decoration: none !important;
	font-size: 16px;
}

.track-img {
	filter: brightness(2000%);
	margin-bottom: 5px;
	width: 20px;
	height: 20px;
}

/* ====================================================
	MISC
==================================================== */
.txt-secondary {
	color: #aaa;
}

.txt-success {
	color: #00ad09;
}

.hidden {
	display: none;
}

.btn:active {
	border: none !important;
}

.title {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff5e6;
	color: #444;
	height: 25px;
	font-weight: 600;
}

/* ----------------------------------------------------
	✨ FANCY ECOMMERCE ENHANCEMENTS ✨
---------------------------------------------------- */

/* Smooth transitions globally */
* {
	transition: all 0.3s ease-in-out;
	scroll-behavior: smooth;
}

/* Navbar enhancement */
.navbar {
	/** background: linear-gradient(90deg, #fefefe, #f5f8ff); **/
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
	transition: transform 0.4s;
}

.navbar-brand img:hover {
	transform: rotate(-5deg) scale(1.1);
}

/* Nav links */
.nav-link {
	color: #333 !important;
	position: relative;
	border-bottom: 2px solid transparent;
	padding-bottom: 3px;
	/* match your spacing */
	transition: border-color 0.3s;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.nav-link:hover {
	border-bottom: 2px solid #007bff;
}


/* Banner styling */
.main-banner {
	position: relative;
	overflow: hidden;
}

.main-banner img {
	filter: brightness(0.95);
	transition: transform 1s ease;
}

.main-banner:hover img {
	transform: scale(1.05);
}

/* Card styling */
.card1 {
	border: none;
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	transition: all 0.4s ease;
}

.card1:hover {
	transform: translateY(-8px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.card1 img {
	height: 270px;
	object-fit: cover;
	border-radius: 15px 15px 0 0;
}

/* Card body refinement */
.card1 .card-body {
	border: none;
	padding: 15px 20px;
	background-color: #fff;
}

.card1 .card-body .card-title {
	font-size: 16px;
	margin-bottom: 5px;
	color: #232323;
}

.card1 .card-body p {
	color: #555;
	font-size: 13px;
	line-height: 1.5;
}


/* Add to cart or button enhancement */
.btn,
.apply-btn {
	border-radius: 8px;
	font-weight: 600;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.apply-btn {
	background: linear-gradient(135deg, #007bff, #00aaff);
	color: #fff !important;
	border: none;
}

.apply-btn:hover {
	background: linear-gradient(135deg, #00aaff, #007bff);
	transform: translateY(-2px);
}

/* Cart icon badge */
.cart-icon .badge {
	box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

/* Header title enhancement */
.header .title {
	font-weight: 800;
	font-size: 40px;
	background: linear-gradient(90deg, #007bff, #00bcd4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Underline accent 
	.underline {
	background: linear-gradient(90deg, #00bcd4, #007bff);
	margin-top: 5px;
}*/

/* Footer or bottom fixed elements */
.btns {
	background: #fff;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

/* Product details fancy touch */
.product-name {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	color: #333;
}

.discount-tax-info {
	border-left: 5px solid transparent;
	background: linear-gradient(90deg, #f8f9fa, #ffffff);
}

/* Hover pop for discount/tax info */
.discount-tax-info:hover {
	transform: scale(1.02);
}

/* Contact icons hover */
.contact-info i {
	background-color: #2B65C9;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-info i:hover {
	background-color: #051144;
	color: #fff;
	transform: rotate(10deg);
}

/* Smooth mobile card interaction */
@media (max-width: 440px) {
	.card1 {
		border-radius: 12px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	}
	
	.card1:hover {
		transform: scale(1.03);
	}
	
	.main-banner img {
		border-radius: 12px !important;
	}
	
	.contact-info i {
	font-size: 16px;
	height: 40px;
	width: 50px !important;
	border-radius: 50%;
	margin-bottom: 10px;
	padding-right:0 !important;
}

}


/* ============================================
	✨ Modern Fancy Alert & Rating Enhancements ✨
	(Keeps all class names, logic, and behavior)
=============================================== */

/* App Alert (Base) */
.app-alert {
	position: fixed;
	top: 27% !important;
	right: 20px;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: left;
	width: 320px !important;
	min-height: 55px;
	font-size: 15px;
	font-weight: 500;
	border-radius: 12px;
	padding: 12px 20px;
	backdrop-filter: blur(14px);
	background: rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	color: #fff;
	text-align: left;
	opacity: 0;
	transform: translateX(100px);
	animation: slideIn 0.5s forwards;
}

/* Entry animation */
@keyframes slideIn {
	0% {
		opacity: 0;
		transform: translateX(100px);
	}
	
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Exit animation */
@keyframes fadeOut {
	0% {
		opacity: 1;
		transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		transform: translateX(50px);
	}
}

/* Text inside alert */
#app-page-alert span {
	padding-left: 35px;
	line-height: 1.3em;
}

/* Close icon styling */
.btn-sm i {
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	cursor: pointer;
	opacity: 0.8;
	transition: 0.3s;
}

.btn-sm i:hover {
	opacity: 1;
	transform: translateY(-50%) rotate(90deg);
}

/* SUCCESS Alert */
.app-alert.success {
	background: linear-gradient(90deg, #d8f8e4, #a4f0c6);
	border-left: 5px solid #1fa87d;
	color: #0a573f;
}

.app-alert.success::before {
	content: "✓";
	position: absolute;
	height: 28px;
	width: 28px;
	border-radius: 50%;
	background: #1fa87d;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	box-shadow: 0 0 8px rgba(31, 168, 125, 0.5);
}

/* DANGER Alert */
.app-alert.danger {
	background: linear-gradient(90deg, #ffd6d6, #ffb1b1);
	border-left: 5px solid #e74c3c;
	color: #a22020;
}

.app-alert.danger::before {
	content: "✕";
	position: absolute;
	height: 28px;
	width: 28px;
	border-radius: 50%;
	background: #e74c3c;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	box-shadow: 0 0 8px rgba(231, 76, 60, 0.4);
}

/* WARNING Alert */
.app-alert.warning {
	background: linear-gradient(90deg, #fff2c4, #ffe694);
	border-left: 5px solid #ffbf00;
	color: #856404;
}

.app-alert.warning::before {
	content: "!";
	position: absolute;
	height: 28px;
	width: 28px;
	border-radius: 50%;
	background: #ffbf00;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	box-shadow: 0 0 8px rgba(255, 191, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 450px) {
	.app-alert {
		top: 48% !important;
		left: 5%;
		width: 90% !important;
		font-size: 15px;
		padding: 16px;
		border-radius: 10px;
	}
}

/* Dismiss button */
.alert-dismissable .close,
.alert-dismissible .close {
	right: -6px;
	top: -6px;
	font-size: 22px;
	color: inherit;
	opacity: 0.8;
	transition: all 0.3s;
}

.alert-dismissible .close:hover {
	opacity: 1;
	transform: rotate(90deg);
}

/* ============================================================
	✨ Modern Rating Stars
============================================================ */

.rating {
	display: flex;
	gap: 6px;
	font-size: 2.2rem;
	align-items: center;
	justify-content: flex-start;
}

.rating input {
	display: none;
}

.rating label {
	color: #ddd;
	cursor: pointer;
	transition: all 0.3s ease;
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

/* Hover and selected colors */
.rating label:hover,
.rating label:hover~label {
	color: #ffc107;
	transform: scale(1.1);
}

.rating input:checked~label {
	color: #ffb800;
	text-shadow: 0 0 8px rgba(255, 184, 0, 0.4);
}

/* Rating text */
.rating-text {
	font-size: 14px;
	font-weight: 600;
	color: #ff9800;
	margin-left: 10px;
}

/* Product name + rating layout */
.product-name-rating a {
	text-decoration: none !important;
}

.product-name-rating img {
	width: 60px;
	height: 80px;
	object-fit: cover;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 5px;
	transition: transform 0.3s ease;
}

.product-name-rating img:hover {
	transform: scale(1.05);
}

/* Carousel arrows polish */
.carousel-control-prev i,
.carousel-control-next i {
	font-size: 25px;
	color: #333;
	background: #fff;
	padding: 8px 12px;
	border-radius: 50%;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.carousel-control-prev i:hover,
.carousel-control-next i:hover {
	background: #007bff;
	color: #fff;
	transform: scale(1.1);
}


/* ===========================
	🌟 Fancy Ecommerce Enhancements
=========================== */

/* Buttons & Links */
.view-msg a {
	background: linear-gradient(135deg, #00c6ff, #0072ff);
	color: #fff !important;
	font-weight: 600;
	border: none;
	box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
	transition: all 0.3s ease-in-out;
}

.view-msg a:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 114, 255, 0.5);
}

/* Ratings */
.star-rating {
	color: rgb(255, 143, 0);
	/* dark green shade */
	font-size: 25px;
}

.average-ratings {
	color: #145a32;
	/* deeper green tone for text */
	font-weight: 600;
}


/* Product Card */
.card1 {
	background: #fff;
	border: none;
	border-radius: 0px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.card1:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.card1 img {
	height: 350px;
	object-fit: cover;
	transition: all 0.4s ease;
}

.card1:hover img {
	transform: scale(1.05);
}

.card1 .card-body {
	border-top: 1px solid #eee;
	border-radius: 0 0 15px 15px;
}

/* Price Styling */
.price {
	font-size: 18px;
	color: #111 !important;
	font-weight: 700;
}

/* media query for mobile devices */
@media (max-width: 440px) {
	.card1 img {
		height: 150px;
		object-fit: cover;
		transition: all 0.4s ease;
	}
	
	.price {
		font-size: 12px !important;
	}
}

/* ============================= */
/* 🔹 Fancy Pagination Design */
/* ============================= */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 40px 0;
}

.pagination .nav-links {
	display: flex;
	gap: 10px;
	align-items: center;
}

.pagination .nav-links .page-numbers {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 38px;
	height: 38px;
	font-size: 15px;
	font-weight: 600;
	color: #444;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	border: 1px solid #e0e0e0;
	transition: all 0.3s ease;
	cursor: pointer;
	text-decoration: none !important;
}

.pagination .nav-links .page-numbers:hover {
	background: linear-gradient(135deg, #dfa64c, #dfa64c);
	color: #fff !important;
	transform: translateY(-3px);
	text-decoration: none !important;
}

.pagination .nav-links .page-numbers.current {
	background: linear-gradient(135deg, #2B65C9, #2B65C9);
	color: #fff !important;
	border: none;
	transform: scale(1.1);
}

.pagination .nav-links .page-numbers.next,
.pagination .nav-links .page-numbers.prev {
	width: auto;
	padding: 0 14px;
	font-weight: 600;
	border-radius: 50px;
}

.pagination .nav-links .page-numbers.next:hover,
.pagination .nav-links .page-numbers.prev:hover {
	background: linear-gradient(135deg, #051144, #051144);
	color: #fff !important;
	transform: translateY(-2px);
}

/* Mobile optimization */
@media (max-width: 768px) {
	.pagination .nav-links .page-numbers {
		width: 34px;
		height: 34px;
		font-size: 13px;
	}
}


.loader-container {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) !important;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
}

.spinner-container {
	display: flex;
	align-items: center;
	gap: 10px;
}

.custom-spinner {
	width: 20px;
	height: 20px;
	border: 2px solid #ccc;
	border-top: 2px solid #0d6efd;
	border-radius: 50%;
	animation: spin 1s linear infinite !important;
}

.loading-text {
	margin: 0;
	font-size: 16px;
	color: #0d6efd;
}

/* Spinner inside button */
.spinner {
	width: 16px;
	height: 16px;
	border: 2px solid #f3f3f3;
	/* light gray border */
	border-top: 2px solid #0d6efd;
	/* blue color */
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	display: inline-block;
	vertical-align: middle;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	
	100% {
		transform: rotate(360deg);
	}
}




/* Add to Cart Check Icon */
.cart-check-icon {
	display: inline-block;
	color: #00AD09 !important;
	animation: pop 0.4s ease;
}

@keyframes pop {
	0% {
		transform: scale(0.5);
		opacity: 0;
	}
	
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* Header Title */
.header .title {
	font-size: 40px;
	font-weight: 800;
	text-transform: uppercase;
	background: linear-gradient(90deg, #0072ff, #00c6ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: 1px;
}

/* Underline 
	.underline {
	background: linear-gradient(90deg, #0072ff, #00c6ff);
	height: 6px;
	width: 90px;
	border-radius: 10px;
	margin-top: 10px;
}*/

/* Track Order */
.card-track-order .card {
	background: #fff;
	border: none;
	border-radius: 15px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.tracking-item .tracking-content {
	background: #f1f9ff;
	border-left: 4px solid #00ba0d;
	font-weight: 600;
}

.tracking-item .tracking-icon {
	background: #00ba0d;
	box-shadow: 0 0 10px rgba(0, 186, 13, 0.4);
}

/* Smooth hover for all interactive elements */
a,
button {
	transition: all 0.3s ease-in-out !important;
}

/* ================================
	🌟 Fancy Enhancements (Tracking + Reviews)
================================ */

/* --- Enhanced Professional Order Tracking --- */
#tracking {
	padding: 20px 0;
}

.tracking-list {
	position: relative;
	margin-left: 20px;
	border-left: 3px solid #e5e5e5;
	padding-left: 25px;
}

.tracking-item-pending {
	position: relative;
	margin-bottom: 30px;
	padding-left: 15px;
}

.tracking-item-pending:last-child {
	margin-bottom: 0;
}

/* Icon Circle */
.tracking-item-pending .tracking-icon {
	position: absolute;
	left: -34px;
	top: 0;
	width: 22px;
	height: 22px;
	background-color: #e5e5e5;
	border-radius: 50%;
	border: 2px solid #fff;
	box-shadow: 0 0 0 3px #e5e5e5;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #888;
	font-size: 12px;
	transition: all 0.3s ease;
}

/* Active/Completed Step */
.tracking-item-pending.active .tracking-icon {
	background-color: #28a745;
	box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.3);
	color: #fff;
}

/* Step Box */
.tracking-item-pending .tracking-content {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 12px 15px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.tracking-item-pending.active .tracking-content {
	background: #f5fff7;
	border-color: #c2f2cb;
}

/* Hover Effect */
.tracking-item-pending:hover .tracking-content {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Text styles */
.tracking-item-pending .tracking-content span {
	display: block;
	color: #666;
	font-size: 13px;
	margin-top: 3px;
}

.tracking-item-pending .tracking-content strong {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: #333;
	margin-bottom: 4px;
}

/* Animation Pulse for active step */
.tracking-item-pending.active .tracking-icon::after {
	content: '';
	position: absolute;
	border: 2px solid rgba(40, 167, 69, 0.4);
	border-radius: 50%;
	width: 28px;
	height: 28px;
	left: -5px;
	top: -5px;
	animation: pulse 1.5s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
		opacity: 1;
	}
	
	70% {
		transform: scale(1.3);
		opacity: 0;
	}
	
	100% {
		transform: scale(0.95);
		opacity: 0;
	}
}

/* Pending style */
.tracking-item-pending {
	background: #fcfcfc;
	border-left: 4px solid #ddd;
	border-radius: 10px;
}

.tracking-item-pending .tracking-content {
	color: #999;
	background: #f4f4f4;
	border-left: 3px dashed #ccc;
}

/* --- Customer Review Carousel --- */
#carouselExampleSlidesOnly1 {
	background: linear-gradient(145deg, #fdfdfd, #f1f1f1);
	padding: 25px 0;
	border-radius: 20px;
}

#carouselExampleSlidesOnly1 .card {
	border: none;
	background: #fff;
	border-radius: 15px !important;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease-in-out;
}

#carouselExampleSlidesOnly1 .card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.customer-card .card-body {
	background: linear-gradient(135deg, #f8f9fa, #e8e7c8);
	border-radius: 0 0 15px 15px;
}

.customer-card img {
	border-radius: 15px 15px 0 0;
	filter: brightness(0.98);
	transition: all 0.3s ease-in-out;
}

.customer-card:hover img {
	filter: brightness(1.05);
	transform: scale(1.03);
}

/* Review Texts */
#carouselExampleSlidesOnly1 .card-title {
	color: #0072ff;
	font-size: 1.1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

#carouselExampleSlidesOnly1 .card-text {
	color: #555;
	line-height: 1.5;
}

/* Carousel Controls */
#carouselExampleSlidesOnly1 .carousel-control-prev,
#carouselExampleSlidesOnly1 .carousel-control-next {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

#carouselExampleSlidesOnly1 .carousel-control-prev:hover,
#carouselExampleSlidesOnly1 .carousel-control-next:hover {
	background: linear-gradient(135deg, #0072ff, #00c6ff);
	transform: scale(1.1);
}

/* Hover wave overlay effect */
#carouselExampleSlidesOnly1 .hover-effect::after {
	background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 80%);
}

/* Responsive */
@media (max-width: 768px) {
	#carouselExampleSlidesOnly1 .card-title {
		font-size: 1rem;
	}
	
	#carouselExampleSlidesOnly1 .card-text {
		font-size: 0.85rem;
	}
}

/* .test-qoute i{
    position: absolute;
	right: 30px;
	top:  5%;
	font-size: 40px;
	color: #3fca55;
	z-index: 1;
} */


/* ======== PRODUCT PAGE ======== */
.product-name-rating a {
	color: #222 !important;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.3s ease, transform 0.3s ease;
}

.product-name-rating a:hover {
	color: #e91e63 !important;
	transform: scale(1.03);
}

/* Review Box */
.review-textarea {
	height: 120px;
	font-size: 14px;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 10px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.review-textarea:focus {
	outline: none;
	border-color: #e91e63;
	box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.15);
}

/* File Input */
.file-input {
	display: flex;
	height: 60px;
	border: 2px dashed rgba(0, 0, 0, 0.2);
	align-items: center;
	justify-content: center;
	background-color: #fafafa;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.file-input:hover {
	background-color: #fff5f8;
	border-color: #e91e63;
	box-shadow: 0 3px 10px rgba(233, 30, 99, 0.1);
}

/* Carousel Controls */
.slide .carousel-control-next:hover,
.slide .carousel-control-prev:hover,
.slide .carousel-control-next:focus,
.slide .carousel-control-prev:focus {
	background-color: rgba(255, 255, 255, 0.4) !important;
	backdrop-filter: blur(5px);
	border-radius: 50%;
}

/* Responsive Iframe */
iframe {
	height: 350px !important;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 450px) {
	iframe {
		height: 200px !important;
	}
}

@media (max-width: 440px) {
	.product-name {
		margin-top: 40px !important;
	}
}

/* ======== ORDER TRACKING ======== */
.tracking-icon {
	height: 38px;
	width: 38px;
	background: linear-gradient(135deg, #f9f9f9, #fff);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease;
}

.tracking-icon i {
	color: rgba(0, 0, 0, 0.7);
	font-size: 14px;
}

.tracking-icon:hover {
	transform: scale(1.1);
	background: linear-gradient(135deg, #ffe6ef, #fff);
}

.col-12 {
	position: relative !important;
}

.status-pending {
	position: absolute;
}

/* ======== PAYMENT SUCCESS ======== */
.fancy-row {
	padding: 15px 0 5px 0 !important;
	display: flex;
	align-items: center;
	border-bottom: 1px dashed #eee;
}

.fancy-row:last-child {
	border-bottom: none;
}

.fancy-label {
	font-weight: 600;
	font-size: 16px;
	color: #333;
}

.fancy-value {
	font-weight: 400;
	font-size: 16px;
	color: #555;
}

.fancy-label::after {
	margin-left: 5px;
	color: #888;
	content: "";
}

.fancy-row h6 {
	margin-bottom: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
	
	.fancy-label,
	.fancy-value {
		font-size: 14px;
	}
}

/* CATEGORY CARD STYLING */
.category {
	position: relative;
	text-align: center;
	margin-bottom: 25px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	
}

.category a {
	text-decoration: none;
	color: inherit;
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 2%;
}

.category .center-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 2%;
	border: 1px solid #dcc1a4;
}

.category .center-container span {
	display: block;
	padding: 12px 8px 6px;
	/* top | left-right | bottom */
	font-size: 15px;
	font-weight: 500;
	text-align: center;
	color: #222;
	letter-spacing: 0.4px;
}

/* MAIN CHANGE HERE */
.category .img-circle {
	width: 100%;
	height: 390px;
	/* increase here */
	aspect-ratio: unset;
	/* remove ratio lock */
	border-radius: 2%;
	overflow: hidden;
	position: relative;
	background: #f7f7f7;
}

.category .img-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 1%;
	transition: transform 0.4s ease;
}


/* Optional hover zoom like reference */
.category:hover .img-circle img {
	transform: scale(1.08);
}


/* OVERLAY EFFECT */
.category a p {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0;
	padding: 10px 0;
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	text-transform: capitalize;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(2px);
	transition: background 0.3s ease;
}

/* HOVER EFFECT */

.category:hover a p {
	background: rgba(0, 0, 0, 0.65);
}

/* MOBILE ADJUSTMENTS */
@media screen and (max-width: 440px) {
	
	.check-btn a,
	.whatsup {
		bottom: 7%;
		z-index: 2;
	}
	
	.index-container {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
	
	.home-checkout {
		top: 40%;
		right: 0;
		padding: 0 15px;
		box-shadow: none;
		width: 100% !important;
	}
}


/* ======== CUSTOM FIELDS ======== */
.custom-field {
	font-size: 16px;
	color: #333;
	font-weight: 500;
}



/* ============================= */
/* 🔹 PAYMENT SUCCESS PAGE STYLE */
/* ============================= */
.payment-success h1 {
	color: #00AD09;
	font-size: 22px !important;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}


/* ============================= */
/* 🔹 TESTIMONIAL SECTION */
/* ============================= */
.testimonial-dv .carousel-indicators {
	left: 0;
	top: auto;
	bottom: -40px;
}

.testimonial-dv .carousel-indicators button {
	background: #bbb;
	border-radius: 50%;
	width: 9px;
	height: 9px;
	border: none;
	transition: all 0.3s ease;
}

.testimonial-dv .carousel-indicators button:hover {
	background: #888;
	transform: scale(1.2);
}

.testimonial-dv .carousel-indicators .active {
	background: #444;
}

.testimonial-dv .mobile-frame {
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: none;
	filter: brightness(0.7) saturate(0.3);
}

.testimonial-dv .image-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.testimonial-dv .image-container img {
	width: 100%;
	border-radius: 10px;
	object-fit: cover;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* ============================= */
/* 🔹 BUTTON & INPUT CLEANUP */
/* ============================= */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

/* ============================= */
/* 🔹 ANNOUNCEMENT & NAVBAR */
/* ============================= */
.announcement-bar {
	padding: 10px;
	background: linear-gradient(135deg, #ff6f61, #ff9a76);
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
	text-align: center;
}

.announcement-bar a {
	color: #fff !important;
	text-decoration: none !important;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
	font-weight: 600;
	letter-spacing: 0.5px;
}

.nav-first-row {
	min-height: 10px !important;
	color: #2c2528 !important;
	padding: 4px 0 !important;
}

.nav-second-row {
	height: 60px;
	color: #2c2528 !important;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	background: #fff;
	border-radius: 0 0 10px 10px;
}

.search-menu .nav-link {
	color: #000 !important;
	display: inline;
	padding: 6px;
	top: 35px;
	transition: all 0.3s ease;
}

.search-menu .nav-link:hover {
	color: #e91e63 !important;
	transform: scale(1.1);
}

.search-menu .nav-link i {
	margin-top: 25%;
	font-size: 20px;
	color: #333;
}

/* ============================= */
/* 🔹 CATEGORY & PRODUCT DISPLAY */
/* ============================= */
.bg-orange-category {
	background: linear-gradient(135deg, #fffde7, #fcffd6);
	padding: 60px 0;
	border-radius: 10px;
}

.swiper-slide img {
	width: 100% !important;
	height: 170px;
	display: block;
	border-radius: 12px;
	object-fit: cover;
	box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
	transition: transform 0.4s ease;
}

.swiper-slide img:hover {
	transform: scale(1.05);
}

.swiper-slide a {
	color: #000 !important;
	text-decoration: none !important;
	font-weight: 500;
}

/* ============================= */
/* 🔹 PRODUCT CARDS */
/* ============================= */
.image-container {
	position: relative;
	display: inline-block;
	width: 100%;
}

.card-img-top,
.card-img-top-product {
	width: 100% !important;
	border-radius: 0px !important;
	object-fit: cover;
	transition: all 0.3s ease;
}

.card-img-top {
	height: 500px;
}

.card-img-top-product {
	height: 400px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-img-top:hover,
.card-img-top-product:hover {
	transform: scale(1.03);
}

.overlay-text {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.6);
	color: white;
	padding: 8px 15px;
	font-size: 18px;
	text-align: center;
	border-radius: 8px;
	backdrop-filter: blur(4px);
}

.overlay-text h3 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 16px;
	font-weight: 600;
}

/* ============================= */
/* 🔹 DISCOUNT BADGE */
/* ============================= */
.discount-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: linear-gradient(135deg, #006400, #228B22);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	padding: 5px 10px;
	border-radius: 30px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	animation: floatBadge 3s ease-in-out infinite;
	z-index: 2;
}

/* Subtle floating animation for fancy look */
@keyframes floatBadge {
	
	0%,
	100% {
		transform: translateY(0);
	}
	
	50% {
		transform: translateY(-3px);
	}
}

/* Optional: make it smaller on mobile */
@media (max-width: 576px) {
	.discount-badge {
		font-size: 12px;
		padding: 4px 8px;
		top: 8px;
		right: 8px;
	}
}


/* ============================= */
/* 🔹 NEWSLETTER SECTION */
/* ============================= */
.bg-orange-newsletter {
	background: linear-gradient(135deg, #fffde7, #fcffd6);
	padding: 25px;
	border-radius: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.bg-orange-newsletter .form-control,
.bg-orange-newsletter .input-group .btn {
	border-radius: 25px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.bg-orange-newsletter .btn-primary {
	border-top-right-radius: 25px !important;
	border-bottom-right-radius: 25px !important;
	background: linear-gradient(135deg, #ff6f61, #ff9a76);
	border: none;
	transition: all 0.3s ease;
}

.bg-orange-newsletter .btn-primary:hover {
	background: linear-gradient(135deg, #ff8a80, #ffb199);
	transform: scale(1.05);
}

/* ============================= */
/* 🔹 ABOUT IMAGE */
/* ============================= */
.about-img img {
	width: 100%;
	border-radius: 15px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
	height: 180px;
	object-fit: cover;
}

/* ============================= */
/* 🔹 WISHLIST BUTTON */
/* ============================= */
.wishlist-btn {
	position: absolute;
	top: -100px;
	right: 10px;
	background: #000 !important;
	border-radius: 50%;
	font-size: 14px;
	color: #fff !important;
	border: #fff solid 1px;
	padding: 6px;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: all 0.3s ease;
}

.wishlist-btn:hover {
	background: #e91e63 !important;
	transform: scale(1.1);
}

/* ============================= */
/* 🔹 MOBILE RESPONSIVE UPGRADES */
/* ============================= */
@media (max-width: 768px) {
	.nav-item.social-media {
		position: absolute;
		bottom: 0;
		width: 100%;
	}
	
	.nav-item.social-media .insta {
		width: 35px !important;
		height: 35px !important;
	}
	
	.nav-item.social-media .youtube {
		width: 50px !important;
		height: 36px !important;
	}
	
	.copy-right {
		font-size: 13px;
	}
	
	.home-products {
		margin: 20px 0;
		background: #fff;
		padding: 20px !important;
		border-radius: 20px;
		box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
	}
	
	.center-container .img-circle img {
		height: 170px !important;
	}
	
	.cat-name {
		font-size: 13px;
		text-align: center;
	}
	
	.testimonial-card {
		height: 220px !important;
	}
}



/* ============================= */
/* 🔹 FOOTER STYLING */
/* ============================= */
footer {
	color: #fff;
	box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.25);
	padding: 0 !important;
}

.quick-links {
	padding: 20px 0 5px 0 !important;
}

.quick-links a {
	color: #f1f1f1;
	text-decoration: none;
	transition: color 0.3s ease, transform 0.3s ease;
	display: inline-block;
}

.quick-links a:hover {
	color: #00e5ff;
	transform: translateX(4px);
}

.footer a:hover {
	color: aqua;
}

.footer-a a {
	color: #000;
	text-decoration: none;
}

.name-nav {
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* ============================= */
/* 🔹 HOME PRODUCT SECTION */
/* ============================= */
.bg-products {
	background: #f5f5f5;
	padding: 50px 0;
}

.home-products {
	margin: 20px 0;
	background: #fff;
	padding: 50px;
	border-radius: 25px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-products:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* ============================= */
/* 🔹 PRODUCT GALLERY */
/* ============================= */
.product-gallery {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
}

.product-gallery__media-list-wrapper {
	width: 100%;
}

.product-gallery__media-list {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	width: 100%;
	height: 470px;
	padding: 0;
	scrollbar-width: none;
}

.product-gallery__media-list::-webkit-scrollbar {
	display: none;
}

.product-gallery__media {
	scroll-snap-align: start;
	flex: 0 0 100%;
	width: 100%;
	padding: 0;
	margin: 0;
	height: auto;
}

.product-gallery__media img {
	display: block;
	width: 100%;
	max-height: 550px;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}

.product-gallery__media img:hover {
	transform: scale(1.03);
}

.product-gallery__thumbnail-list-wrapper {
	overflow: hidden;
}

.product-gallery__thumbnail-list {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	scrollbar-width: none;
	padding-bottom: 10px;
}

.product-gallery__thumbnail-list::-webkit-scrollbar {
	display: none;
}

.product-gallery__thumbnail {
	cursor: pointer;
	border: 2px solid transparent;
	border-radius: 10px;
	flex: 0 0 auto;
	transition: all 0.3s ease;
	background: none;
}

.product-gallery__thumbnail:hover {
	border-color: #00bcd4;
	transform: scale(1.05);
	padding: 0 !important;
}

.product-gallery__thumbnail[aria-current="true"] {
	border-color: #dfa64c;
	padding: 0 !important;
}

.product-gallery__thumbnail img {
	display: block;
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* ============================= */
/* 🔹 GALLERY CONTROLS */
/* ============================= */
.circle-button {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #ddd;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

.circle-button:hover {
	background: #f8f8f8;
	transform: scale(1.1);
}

.gallery-controls {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding-top: 10px;
}

.gallery-progress-container {
	width: 100%;
}

.gallery-progress-bar {
	height: 4px;
	background-color: #e0e0e0;
	border-radius: 2px;
	overflow: hidden;
	position: relative;
}

.gallery-progress-fill {
	height: 100%;
	background: #dfa64c;
	border-radius: 2px;
	transition: width 0.3s ease;
}

.gallery-nav-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-left: 10px;
}

.gallery-nav-button {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #ddd;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.gallery-nav-button:hover {
	background: #e0f7fa;
	transform: scale(1.1);
}

.gallery-nav-button svg {
	width: 20px;
	height: 20px;
	color: #dfa64c;
}

/* ============================= */
/* 🔹 TESTIMONIALS */
/* ============================= */
.testimonials {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	align-items: stretch;
	margin-top: 20px;
}

.testimonial-card {
	flex: 1 1 calc(100% - 30px);
	background: #fff;
	padding: 20px;
	border-radius: 15px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.profile-icon {
	width: 45px !important;
	height: 45px !important;
	border-radius: 50%;
	margin-right: 10px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 16px;
}

.verified-badge {
	background-color: #00ad09;
	color: white;
	font-size: 12px;
	padding: 4px 8px;
	border-radius: 6px;
	margin-left: 10px;
	box-shadow: 0 2px 5px rgba(0, 173, 9, 0.4);
}

.stars {
	color: #ffc107;
	font-size: 15px;
	margin: 5px 0;
}

.review-text {
	font-size: 14px;
	color: #555;
	line-height: 1.6;
}

/* ============================= */
/* 🔹 RESPONSIVE OPTIMIZATION */
/* ============================= */
@media (max-width: 768px) {
	.product-gallery__media img {
		max-height: 400px;
	}
	
	.product-gallery__thumbnail {
		margin-top: 15px;
	}
	
	.product-gallery__thumbnail img {
		width: 90px;
		height: 90px;
	}
	
	.gallery-controls {
		padding: 0 10px;
	}
	
	.gallery-nav-button {
		width: 34px;
		height: 34px;
	}
	
	.product-gallery__media-list {
		height: 350px;
		border-radius: 10px;
	}
	
	.testimonial-card {
		height: auto !important;
		padding: 18px;
	}
	
	.review-text {
		font-size: 13px;
	}
}

/* ============================= */
/* 🔹 LOGIN PAGE */
/* ============================= */

.login-page {
	display: flex;
	justify-content: center;
}

.login {
	/** background: #fff; **/
	border-radius: 10px;
	max-width: 500px;
	width: 100%;
}

.login-page .btn-danger {
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}


/* ============================= */
/* 🔹 PRODUCT WIDGET */
/* ============================= */

.sidebar-widget {
	background: #ffffff;
	border-radius: 12px;
	border: none !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	padding: 20px;
	transition: transform 0.3s, box-shadow 0.3s;
}

.sidebar-widget:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.sidebar-widget img {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 15px;
	transition: transform 0.3s;
}

.sidebar-widget img:hover {
	transform: scale(1.05);
}

.sidebar-widget h3 {
	font-size: 1.25rem;
	margin-bottom: 15px;
	color: #333;
	border-bottom: 2px solid #f0f0f0;
	padding-bottom: 5px;
}

.sidebar-widget p {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.5;
}

@media(max-width:768px) {
	.sidebar-widget {
		margin-top: 20px;
		padding: 15px;
	}
	
	.sidebar-widget img {
		height: 50px;
		width: 50px;
	}
	
}

/* ============================= */
/* 🔹 PRODUCT VARIANT */
/* ============================= */

.variant-section {
	background: #ebeeff;
	border-radius: 1rem;
}

.variant-card {
	transition: all 0.3s ease;
}

.variant-card:hover {
	transform: translateY(-2px);
}

.variant-pill {
	background: #fff !important;
	color: #333;
	border-color: #dee2e6;
	font-weight: 500;
	transition: all 0.25s;
	cursor: pointer;
}

.variant-pill a {
	color: #000 !important;
}

.variant-pill:hover {
	background: #051144 !important;
	border-color: #0d6efd;
	color: #fff !important;
}

.variant-pill a:hover {
	color: #fff !important;
}


@media(max-width:768px) {
	.variant-section {
		padding: 5px !important;
	}
}


/* ============================= */
/* 🔹 Whatsapp Icon */
/* ============================= */

.whatsapp-float {
	position: fixed;
	bottom: 10px;
	right: 10px;
	background-color: #25D366;
	color: white;
	width: 50px;
	height: 50px;
	font-size: 22px;
	border-radius: 50%;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	z-index: 999;
	transition: background 0.3s ease;
}


.whatsapp-float i {
	font-size: 30px !important;   /* increase icon size */
	line-height: 1;
}


.whatsapp-float:hover {
	background-color: #1ebd5a;
	color: #fff !important;
}



/* ----------------------------
	Mobile Menu Enhancements
----------------------------- */

@media (max-width: 576px) {
	
	/* Navbar */
	.navbar {
		background-color: #fff;
		border-bottom: 1px solid #e0e0e0;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
		padding: 6px 10px !important;
	}
	
	.navbar-brand img {
		/** max-height: 42px; **/
		object-fit: contain;
	}
	
	.navbar-toggler {
		border: none;
		padding: 5px 8px;
	}
	
	.navbar-toggler:focus {
		box-shadow: none;
	}
	
	.navbar-toggler-icon {
		filter: brightness(0);
	}
	
	/* Cart + Icons */
	.nav-link i {
		font-size: 1.2rem;
	}
	
	.nav-link {
		color: #222 !important;
		padding: 8px 0;
	}
	
	.nav-link:hover {
		color: #000 !important;
	}
	
	.badge {
		font-size: 0.65rem;
		min-width: 15px;
		min-height: 15px;
		top: auto !important;
	}
	
	/* -------------------
		Offcanvas Menu
	------------------- */
	.offcanvas {
		background: #fff;
		width: 85%;
		max-width: 320px;
		border-right: none;
		box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
	}
	
	.offcanvas-header {
		background: #f8f8f8;
		border-bottom: 1px solid #e0e0e0;
	}
	
	.offcanvas-title {
		font-size: 1rem;
		font-weight: 600;
		color: #333;
	}
	
	.btn-close {
		filter: brightness(0.3);
	}
	
	/* Menu Items */
	.offcanvas-body {
		padding: 0;
	}
	
	.navbar-nav .nav-item {
		padding: 10px 15px;
	}
	
	.navbar-nav .nav-item.border-bottom {
		border-color: #eee !important;
	}
	
	.navbar-nav .nav-link {
		font-size: 0.95rem;
		color: #333 !important;
		font-weight: 500;
		display: block;
		padding: 6px 0;
		position: relative;
	}
	
	.navbar-nav .nav-link i {
		margin-right: 6px;
		font-size: 1rem;
		color: #666;
	}
	
	.navbar-nav .nav-link:hover {
		background-color: #f7f7f7;
		border-radius: 6px;
	}
	
	/* Hello User */
	.name-nav {
		font-weight: 600;
		color: #222 !important;
		background: #f5f5f5;
		border-radius: 6px;
	}
	
	/* Social Icons Row */
	.offcanvas-body .row {
		padding: 8px 10px;
		justify-content: flex-start;
		align-items: center;
		margin-left: 10px !important;
	}
	
	.offcanvas-body .row .col-1 {
		width: auto;
		margin-right: 8px;
	}
	
	.offcanvas-body .row .nav-link {
		padding: 4px;
		font-size: 1.1rem;
		color: #333 !important;
	}
	
	.offcanvas-body .row .nav-link:hover {
		color: #000 !important;
		transform: scale(1.1);
	}
	
	/* WhatsApp Floating Button */
	.whatsapp-float {
		bottom: 15px;
		left: 15px;
		padding: 10px 18px;
		font-size: 15px;
		border-radius: 25px;
		box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
	}
	
	.whatsapp-float i {
		font-size: 18px;
	}
}

.fixed-top {
	height: 75px;
}

.fixed-top a {
	font-size: 12px;
}

.logo-border {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin-top: 50px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	/* INSET BORDER – joins with logo */
	box-shadow: inset 0 0 0 2px #051144;
}

.logo-border img {
	/* width: 100%; */
	width: 108px;
	height: auto;
	/* height: 100%; */
	object-fit: contain;
	/* keeps logo intact */
	border-radius: 50%;
}

.middle-menu-bar {
	height: 100px;
}

/* Header Icon Base */
.header-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	font-size: 14px;
	text-decoration: none;
	position: relative;
	transition: all 0.25s ease;
	background: transparent;
}

/* ALL icons inside header */
.header-icon i {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 18px;
	color: #fff !important;
	transition: all 0.25s ease;
}

/* Hover effect – SAME for login, track, cart */
.header-icon:hover i {
	background-color: #fff;
	color: #051144 !important;
	transform: scale(1.1);
}

/* Cart badge stays clean */
.cart-icon .badge {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 18px;
	height: 18px;
	font-size: 11px;
	line-height: 18px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	z-index: 5;
}

/* Search input */
.search-btn {
	border-top-right-radius: 999px !important;
	border-bottom-right-radius: 999px !important;
	background: #dfa64c;
	border: none;
	transition: all 0.25s ease;
}

.search-btn i {
	color: #fff;
}



/* Button hover */
.search-btn:hover {
	background: #7a1d1d;
}

/* ===============================
	MOBILE HEADER – MATCH DESKTOP
=============================== */
@media (max-width: 767px) {
	
	/* Apply desktop icon style to mobile icons */
	.col-3 .nav-link {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 38px;
		border-radius: 50%;
		position: relative;
		transition: all 0.25s ease;
		background: transparent;
		padding: 0;
	}
	
	.col-3 .nav-link i {
		width: 38px;
		height: 38px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		font-size: 18px;
		transition: all 0.25s ease;
	}
	
	/* Hover / tap effect same as desktop */
	.col-3 .nav-link:hover i,
	.col-3 .nav-link:active i {
		background-color: #fff;
		color: #051144 !important;
		transform: scale(1.1);
	}
	
	/* Cart badge – same as desktop */
	.col-3 .cart-icon .badge {
		position: absolute;
		top: -4px;
		right: -4px;
		min-width: 18px;
		height: 18px;
		font-size: 11px;
		line-height: 18px;
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: 600;
		z-index: 5;
	}
	
	/* Spacing like desktop */
	.col-3 {
		gap: 1.5rem !important;
		align-items: center;
	}
	
	/* ===============================
		CART ICON – WHITE BG, BLACK ICON
	=============================== */
	
	/* Default cart appearance */
	.cart-icon .fa-shopping-cart {
		background-color: #fff !important;
		color: #000 !important;
	}
	
	/* Optional hover – keep it clean & subtle */
	.cart-icon:hover i {
		background-color: #f5f5f5 !important;
		color: #000 !important;
		transform: scale(1.1);
	}
	
	/* Force navbar toggler icon to white */
	.navbar-toggler-icon {
		filter: invert(1) brightness(2) contrast(2);
	}
	
	
	.category .img-circle {
		width: 100%;
		height: 150px;
		/* increase here */
		aspect-ratio: unset;
		/* remove ratio lock */
		border-radius: 2%;
		overflow: hidden;
		position: relative;
		background: #f7f7f7;
	}
	
	.fixed-top {
		height: 60px !important;
	}
	
	.fixed-top a {
		font-size: 15px !important;
	}
	
	.whatsapp-float {
		left: auto !important;
		/*remove left */
		right: 15px !important;
		/* move to right */
		bottom: 15px;
	}
	
	.btn-primary,
	.btn-success {
		font-size: 12px !important;
	}
	
	/* Mobile logo: remove underline and focus outline */
	
	.navbar-brand .img:hover {
		text-decoration: none !important;
		
	}
	
	.main-banner img {
		height: 150px !important;
		margin-top: 0px !important;
	}
	
	.header h1 {
		font-size: 25px !important;
	}
	
	
}

/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
	position: relative;
	margin-top: 45px;
	padding-top: 90px;
	background-image: linear-gradient(to left bottom, #194A9C, #1E51A7, #2257B2, #275EBE, #2B65C9, #2D68CE, #2E6CD3, #306FD8, #306FD8, #306FD8, #306FD8, #306FD8);
	color: #ffffff;
}

.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
	position: relative;
	margin-bottom: 45px;
}

.footer h2 {
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 10px;
	font-size: 20px;
	font-weight: 600;
	color: #ffffff;
}

.footer h2::after {
	position: absolute;
	content: "";
	width: 60px;
	height: 2px;
	left: 0;
	bottom: 0;
	background: #c6a35d;
}

.footer .footer-link a {
	display: block;
	margin-bottom: 10px;
	color: #ffffff;
	transition: .3s;
}

.footer .footer-link a::before {
	position: relative;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 10px;
}

.footer .footer-link a:hover {
	color: #c6a35d;
	letter-spacing: 0.2px;
	color: #ffffff;
	text-shadow: 2px 2px 4px #c6a35d;
	
}

.footer .footer-contact p i {
	width: 25px;
}

.footer .footer-contact p a {
	color: #fff;
}

.footer .footer-social {
	position: relative;
	margin-top: 20px;
}

.footer .footer-social a {
	display: inline-block;
	width: 35px;
	height: 35px;
	padding: 5px 0;
	text-align: center;
	border: 1px solid rgba(256, 256, 256, .3);
	border-radius: 60px;
	transition: .3s;
}

.footer .footer-social a i {
	font-size: 15px;
	color: #ffffff;
}

.footer .footer-social a:hover {
	background: #c6a35d;
	border-color: #c6a35d;
	
}

.footer .footer-social a:hover i {
	color: #ffffff;
}


.footer .footer-menu .f-menu {
	position: relative;
	padding: 15px 0;
	font-size: 0;
	text-align: center;
	border-top: 1px solid rgba(256, 256, 256, .1);
	border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.footer .footer-menu .f-menu a {
	color: #ffffff;
	font-size: 16px;
	margin-right: 15px;
	padding-right: 15px;
	border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu .f-menu a:hover {
	color: #ffffff;
	text-shadow: 2px 2px 4px #c6a35d;
}

.footer .footer-menu .f-menu a:last-child {
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}


.footer .copyright {
	padding: 30px 15px;
}

.footer .copyright p {
	margin: 0;
	color: #000;
}

.footer .copyright .col-md-6:last-child p {
	text-align: right;
}

.footer .copyright p a {
	color: #000;
	font-weight: 500;
	letter-spacing: 1px;
}

.footer .copyright p a:hover {
	color: #000;
	
}

@media (max-width: 768px) {
	
	.footer .copyright p,
	.footer .copyright .col-md-6:last-child p {
		margin: 5px 0;
		text-align: center;
	}
}

/* Remove default Bootstrap arrow */
.accordion-button::after {
	background-image: none !important;
	content: "+";
	font-size: 22px;
	font-weight: 600;
	transform: none !important;
}

/* Change to minus when open */
.accordion-button:not(.collapsed)::after {
	content: "−";
}

/* Optional: align better */
.accordion-button {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.exclusive-bg {
	background: #ebeeff;
}

.exclusive-box p {
	font-size: 14px;
	color: #777;
}

.icon-circle {
	width: 70px;
	height: 70px;
	border: 1.5px solid #051144;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.icon-circle i {
	font-size: 26px;
	color: #051144;
}


.price-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.old-price {
	font-size: 13px;
	color: #000;
	text-decoration: line-through;
}

.new-price {
	font-size: 16px;
	font-weight: 600;
	color: #0a9d58;
}

.save-badge {
	margin-top: 4px;
	display: inline-block;
	padding: 1px 10px;
	background: #0a9d58;
	color: #fff;
	font-size: 12px;
	border-radius: 5px;
}


/* ============================= */
/* 🔹 RELATED PRODUCT  */
/* ============================= */
.hover-card {
	transition: all 0.3s ease;
	margin: 10px;
}

.hover-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.swiper-slide a:hover {
	color: #fff !important;
}

.swiper-button-prev,
.swiper-button-next {
	color: #333;
	background: #fff;
	border-radius: 50%;
	width: 38px;
	height: 38px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	background: #2B65C9;
	color: #fff;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	font-size: 16px;
	font-weight: bold;
}

.search-bar-mobile {
	position: sticky;
	top: 45px;
	z-index: 3;
	background-color: #fff;
}

.watermark-bg {
	position: fixed;
	inset: 0;
	z-index: -1;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.watermark-bg img {
	width: 700px;
	max-width: 70%;
	opacity: 0.07;
}

@media screen and (max-width:500px) {
	.watermark-bg img {
		width: 700px;
		max-width: 100%;
		opacity: 0.07;
	}
}

.your-cart {
	width: 65%;
}

.your-cart .add-more a {
	text-decoration: none;
	color: #198754;
	font-weight: bold;
	transition: all .5s ease;
}

.your-cart .add-more a:hover,
.your-cart .add-more a:hover .plus-outline {
	border-color: #051144;
	color: #051144;
	transition: all .5s ease;
}

.your-cart .add-more a .plus-outline {
	width: 18px;
	height: 18px;
	padding: 5px;
	border: 2.3px solid #198754;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}


@media screen and (max-width:500px) {
	.your-cart {
		width: 100%;
	}
	
	.your-cart .add-more a .plus-outline {
		width: 18px;
		height: 18px;
		padding: 7px;
		font-size: 11px;
	}
}

.image-wrapper {
	position: relative;
	width: 100%;
}

.out-of-stock-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.out-of-stock-overlay span {
	background: #dc3545;
	color: #fff;
	padding: 6px 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	border-radius: 4px;
}


.out-of-stock-overlay-text span {
	background: #dc3545;
	color: #fff;
	padding: 6px 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	border-radius: 4px;
}

.badge-online {
    background: #1c7ed6;
    color: #fff;
}
.badge-office {
    background: #6c757d;
    color: #fff;
}


/* Header */
.fixed-top {
    background-image: linear-gradient(to left bottom, #194A9C, #1E51A7, #2257B2, #275EBE, #2B65C9, #2D68CE, #2E6CD3, #306FD8, #306FD8, #306FD8, #306FD8, #306FD8);
    color: #ffffff !important;
}

.fixed-top a {
    color: #ffffff !important;
}

.fixed-top a:hover {
    color: #F79B18 !important;
    border-bottom: 2px solid #F79B18 !important;
}

/* Middle Menu */
.middle-menu-bar {
    background: #ffffff !important;
}

.middle-menu-bar a {
    color: #000 !important;
}

.middle-menu-bar a:hover {
    color: #2B65C9 !important;
    border-bottom: 2px solid #2B65C9 !important;
}

.middle-menu-bar .dropdown-menu {
    background: #264E65 !important;
}

.middle-menu-bar .dropdown-menu a {
    color: #ffffff !important;
}

.middle-menu-bar .dropdown-menu a:hover {
    background: #F79B18 !important;
    color: #264E65 !important;
}

/* Footer */
footer .quick-links {
    background: #264E65 !important;
    color: #ffffff !important;
}

footer a {
    color: #ffffff !important;
}

footer a:hover {
    color: #F79B18 !important;
}

footer .social-media a i {
    color: #ffffff !important;
}

footer .social-media a i:hover {
    color: #F79B18 !important;
}

.footer .copyright {
    background: #dfa64c !important;
    color: #ffffff !important;
}

footer .copyright b,
footer .designed-cmp-name a {
    color: #ffffff !important;
}

/* Buttons */
.btn-primary {
    background: #2B65C9 !important;
    border-color: #2B65C9 !important;
    color: #ffffff !important;
}

.btn-primary:hover {
    background: #dfa64c !important;
    border-color: #dfa64c !important;
    color: #ffffff !important;
}

.blog-item {
    background-color: #ffffff;
    box-shadow: 0 6px 2px #ccc;
    height: 600px;
}

.blog-item a img {
    border: none !important;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    height: auto;
}

.cat-badge {
    color: #2B65C9;
}

/* ===============================
   BLOG SIDEBAR
==================================*/

.widget{
    position: sticky;
    top:30px;
}

/* Card Design */
.category-card,
.latest-card{
    background:#ffffff !important;
    border:1px solid #f1f1f1;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.category-card:hover,
.latest-card:hover{
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

/* Heading */
.category-card h5,
.latest-card h5{
    font-size:22px;
    font-weight:700;
    color:#222;
    margin-bottom:25px;
    position:relative;
    padding-bottom:12px;
}

.category-card h5::after,
.latest-card h5::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:55px;
    height:3px;
    background:#2B65C9;
    border-radius:10px;
}

/* ===============================
   CATEGORY
==================================*/

.category-list{
    margin:0;
    padding:0;
}

.category-list li{
    list-style:none;
    margin-bottom:12px;
}

.category-item{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
    padding:12px 15px;
    border-radius:10px;
    transition:.3s;
    border:1px solid #eeeeee;
    background:#fff;
}

.category-item:hover{
    background:#fff8f2;
    border-color:#2B65C9;
    transform:translateX(5px);
    text-decoration:none;
}

/* Circle Badge */

.category-badge{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#2B65C9;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:18px;
    transition:.3s;
}

.category-item:hover .category-badge{
    background:#dfa64c;
    transform:rotate(8deg);
}

.category-name{
    color:#444;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.category-item:hover .category-name{
    color:#2B65C9;
}

/* ===============================
   LATEST POSTS
==================================*/

.latest-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:20px;
    padding-bottom:20px;
    border-bottom:1px solid #efefef;
}

.latest-item:last-child{
    margin-bottom:0;
    padding-bottom:0;
    border:none;
}

.latest-img{
    width:90px;
    min-width:90px;
    height:80px;
    border-radius:10px;
    overflow:hidden;
}

.latest-img img{
    width:100% !important;
    height:100% !important;
    object-fit:cover;
    transition:.4s;
}

.latest-item:hover .latest-img img{
    transform:scale(1.08);
}

.latest-content{
    flex:1;
}

.latest-title{
    display:block;
    color:#222;
    font-size:15px;
    font-weight:600;
    line-height:1.5;
    text-decoration:none;
    transition:.3s;
    margin-bottom:10px;
}

.latest-title:hover{
    color:#2B65C9;
    text-decoration:none;
}

.latest-date{
    color:#777;
    font-size:13px;
}

.latest-date i{
    color:#2B65C9;
    margin-right:6px;
}

/* ===============================
   RESPONSIVE
==================================*/

@media(max-width:991px){

    .widget{
        position:relative;
        top:0;
        margin-top:40px;
    }

    .latest-img{
        width:75px;
        min-width:75px;
        height:70px;
    }

}

@media(max-width:576px){

    .category-item{
        padding:10px;
    }

    .category-badge{
        width:38px;
        height:38px;
        font-size:16px;
    }

    .latest-item{
        gap:12px;
    }

    .latest-title{
        font-size:14px;
    }

}

/* ==========================
   BLOG CONTENT
========================== */

.blog h2 {
    font-weight: 700;
}

.blog-content ~ p,
.other-page p{
    text-align: justify;
    color: #555;
}

/* Headings */
.blog-content ~ h1,
.blog-content ~ h2,
.blog-content ~ h3,
.blog-content ~ h4,
.blog-content ~ h5,
.blog-content ~ h6,
.other-page h1,
.other-page h2,
.other-page h3,
.other-page h4,
.other-page h5,
.other-page h6{
    font-weight: 700;
    line-height: 1.4;
}

/* Bold */
.blog-content ~ b,
.blog-content ~ strong,
.other-page b,
.other-page strong{
    color: #000000b5 !important;
    font-weight: 700;
}

/* Italic */
.blog-content ~ i,
.blog-content ~ em,
.other-page i,
.other-page em{
    color: #666;
    font-style: italic;
}

/* Lists */
.blog-content ~ ul,
.blog-content ~ ol,
.other-page ul,
.other-page ol{
    padding-left: 30px;
    color: #555;
}

.blog-content ~ ul li::marker,
.blog-content ~ ol li::marker,
.other-page ul li::marker,
.other-page ol li::marker{
    color: #2B65C9;
}

/* Links */
.blog-content ~ p a,
.other-page a{
    color: #2B65C9;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.blog-content ~ p a:hover,
.other-page a:hover{
    color: #dfa64c;
    text-decoration: underline;
}

/* Images */
.blog img {
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

/* Tables */
.blog-content ~ table,
.other-page table{
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.blog-content ~ table th,
.other-page table th{
    background: #2B65C9;
    color: #fff;
    padding: 12px;
    border: 1px solid #ddd;
}

.blog-content ~ table td,
.other-page table td{
    padding: 12px;
    border: 1px solid #ddd;
}

.blog-content ~ table tr:nth-child(even),
.other-page table tr:nth-child(even){
    background: #fafafa;
}

/* Horizontal Line */
.blog-content ~ hr,
.other-page hr{
    border: none;
    border-top: 1px solid #ddd;
    margin: 30px 0;
}

.blog-centent a {
    font-size: 18px;
}

.blog-single-header h1 {
    font-size: 28px;
}

/* Responsive */
@media (max-width:768px){

    .blog-content,
    .other-page{
        font-size: 15px;
        line-height: 1.8;
    }

    .blog-content ~ h1,
    .other-page h1{
        font-size: 30px;
    }

    .blog-content ~ h2,
    .other-page h2{
        font-size: 26px;
    }

    .blog-content ~ h3,
    .other-page h3{
        font-size: 22px;
    }
    
    .blog-content ~ table,
    .other-page table{
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .blog-content ~ table th,
    .blog-content ~ table td,
    .other-page table th,
    .other-page table td{
        min-width: 140px;
    }
    
    .blog img {
        height: auto;
    }
}

/* Index page new sections */

.welcome-section {
    padding: 60px 0 20px;
    background: transparent;
}

.welcome-section .section-tag {
    display: inline-block;
    color: #dfa64c;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
}

.welcome-section h2 {
    color: #2B65C9;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.welcome-section h2 span {
    color: #dfa64c;
}

.welcome-section .welcome-content {
    /* max-width: 900px; */
    margin: 0 auto;
}

.welcome-section .welcome-content p {
    text-align: justify;
    line-height: 1.9;
    color: #666;
    margin-bottom: 20px;
}

.welcome-section .welcome-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.welcome-section .feature-box {
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid #edf0f5;
    transition: .3s;
}

.welcome-section .feature-box:hover {
    transform: translateY(-8px);
    border-color: #dfa64c;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.welcome-section .feature-box i {
    font-size: 34px;
    color: #dfa64c;
    margin-bottom: 18px;
}

.welcome-section .feature-box h5 {
    color: #2B65C9;
    margin-bottom: 10px;
    font-weight: 700;
}

.welcome-section .feature-box p {
    color: #666;
    margin: 0;
}

@media(max-width:991px) {

    .welcome-section .welcome-features {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:576px) {

    .welcome-section .welcome-features {
        grid-template-columns: 1fr;
    }

    .welcome-section h2 {
        font-size: 16px;
    }
    
    .welcome-section .section-tag {
        display: inline-block;
        color: #dfa64c;
        letter-spacing: 2px;
        font-weight: 800;
        margin-bottom: 7px;
        font-size: 13px;
    }
    
    .welcome-section {
        padding: 20px 0;
    }
    
    .welcome-section .welcome-content {
        max-width: 900px;
        margin: 0 auto 25px;
    }
}

.spiritual-banner {
    background: url('../images/Temple.jpg') center center/cover;
    position: relative;
    padding: 140px 0;
    margin-bottom: 50px;
}

.spiritual-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(26, 45, 74, .82);
}

.spiritual-banner .overlay {
    position: relative;
    z-index: 2;
    text-align: center;
}

.spiritual-banner h2 {
    color: #fff;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
}

.spiritual-banner p {
    color: #eee;
    max-width: 750px;
    margin: auto;
    line-height: 1.9;
    margin-bottom: 35px;
}

@media screen and (max-width: 468px) {
    .spiritual-banner h2 {
        font-size: 20px;
    }
    
    .spiritual-banner {
        padding: 45px 0;
    }
}

.offer-banner {
    padding: 30px 0 10px;
    overflow: hidden;
}

.offer-banner img {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    display: block;
    animation: offerZoom 4s ease-in-out infinite;
    transition: .3s;
}

.offer-banner:hover img {
    animation-play-state: paused;
    transform: scale(1.02);
}

@keyframes offerZoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }
}

@media(max-width:768px) {
    .offer-banner {
        padding: 7px 14px;
    }

    .offer-banner img {
        border-radius: 8px;
        height: auto;
    }
}

    .welcome-img {
        width: 100%;
        max-width: 430px;
        animation: floatImg 5s ease-in-out infinite;
        border-radius: 20px;
        height: 270px;
        object-fit: cover;
    }

    .ganapathi-slokam {
        margin: 30px 0;
        padding: 25px;
        border-left: 5px solid #dfa64c;
        background: #f8f9fc;
        border-radius: 10px;
    }

    .ganapathi-slokam h4 {
        color: #dfa64c;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }

    .ganapathi-slokam h3 {
        color: #2B65C9;
        font-size: 34px;
        line-height: 1.7;
        font-weight: 700;
        font-family: 'Noto Serif Tamil', 'Noto Sans Tamil', serif;
        margin: 0;
    }

    @keyframes floatImg {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-12px);
        }

        100% {
            transform: translateY(0);
        }
    }

    @media(max-width:991px) {

        .welcome-img {
            margin-bottom: 0;
            height: auto;
        }

        .ganapathi-slokam {
            text-align: center;
        }

        .ganapathi-slokam h3 {
            font-size: 28px;
        }

    }

    @media(max-width:576px) {

        .ganapathi-slokam h3 {
            font-size: 16px;
            line-height: 1.6;
        }
        
        .ganapathi-slokam h4 {
            font-size: 16px;
         }

    }
    
    .welcome-section p {
        text-align: justify;
    }


.modal-content {
    max-width: max-content !important;
}


.page-content img{
border: #009DFF medium solid;
border-radius: 10px;
box-shadow: #D3B200 3px 3px 3px;
}

.page-content h2{
color: #009DFF;
font-weight: bold;
}
