/* GLOBAL */
body{
	margin:0;
	font-family:Arial;
	display:flex;
	flex-direction:column;
	min-height:100vh;
	font-family: 'Open Sans', Arial, sans-serif;
}
a{
	text-decoration:none;
}
main{
	flex:1;
}
h1{
	font-size: 150px;
	margin-top: 5px;
	margin-bottom: 20px;
	text-align: left;
}
h3{
	font-size: 40px;
	font-family:'Glegoo',Georgia,"Times New Roman",serif;
	margin-bottom: 5px;
}
table{
	width:100%;
	border-collapse:collapse;
}
table th,table td{
	padding:10px;
	border-bottom:1px solid #ddd;
}
/* TOP BAR */
.topbar{
	background:#590022;
	color:white;
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding:10px 40px;
	font-size:14px;
	flex-wrap:wrap;
	/* IMPORTANT */
	gap:5px;
}
.topbar a{
	color:white;
	margin-left:10px;
	text-decoration:none;
}
/* ========================= */
/* MOBILE FIX */
/* ========================= */
@media (max-width: 768px){
	.topbar{
		flex-direction:column;
		align-items:center;
		text-align:center;
		padding:10px 15px;
	}
	.topbar span,.topbar a{
		display:block;
		margin:3px 0;
	}
}
@media (max-width: 768px){
	/* Stack topbar but keep icons inline */
	.topbar{
		flex-direction:column;
		align-items:center;
		text-align:center;
		gap:5px;
	}
	.top-left,.top-right{
		display:flex;
		align-items:center;
		justify-content:center;
		flex-wrap:wrap;
		gap:10px;
	}
	/* Hide retail store text */
	.top-left span:nth-child(2){
		display:none;
	}
	/* Show only email icon (hide text) */
	.top-right a:first-child{
		font-size:0;
	}
	.top-right a:first-child i{
		font-size:16px;
	}
	/* Keep all icons in one row */
	.top-right{
		flex-direction:row;
	}
}
/* ADMIN MENU */
.admin-menu a{
	display:block;
	background:#590022;
	color:white;
	padding:15px;
	margin:10px 0;
	border-radius:6px;
}
/* NAVBAR */
.navbar{
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding:15px 40px;
	background:white;
	box-shadow:0 2px 5px rgba(0,0,0,0.1);
	position:relative;
	z-index:1000;
}
.logo img{
	height:75px;
}
/* MENU */
.menu{
	display:flex;
	gap:25px;
	list-style:none;
	align-items:center;
	margin:0;
	padding:0;
}
.menu li a{
	color:#590022;
	font-weight:600;
}
.menu li a:hover{
	color:#a40c46;
}
/* DROPDOWN */
.dropdown{
	position:relative;
}
.submenu{
	display:none;
	position:absolute;
	top:100%;
	left:0;
	background:white;
	min-width:180px;
	padding:10px 0;
	list-style:none;
	margin:0;
	z-index:9999;
	box-shadow:0 5px 15px rgba(0,0,0,0.15);
	border-radius:5px;
}
.submenu li{
	padding:10px 20px;
}
.submenu li a{
	color:#333;
	display:block;
}
.submenu li:hover{
	background:#f5f5f5;
}
.dropdown:hover .submenu{
	display:block;
}
/* ========================= */
/* MOBILE RESPONSIVE FIX */
/* ========================= */
.menu-toggle{
	display:none;
	font-size:24px;
	cursor:pointer;
}
/* Tablet & Mobile */
@media (max-width: 992px){
	.submenu{
		display:none;
		position:relative;
		box-shadow:none;
		width:100%;
		padding-left:15px;
	}

	.submenu.show{
		display:block !important; /* 🔥 FORCE SHOW */
	}

	/* VERY IMPORTANT */
	.dropdown:hover .submenu{
		display:none !important;
	}
	.navbar{
		padding:15px 20px;
	}
	.logo img{
		height:60px;
	}
	/* SHOW HAMBURGER */
	.menu-toggle{
		display:block;
	}
	/* HIDE MENU INITIALLY */
	.menu{
		position:absolute;
		top:100%;
		left:0;
		width:100%;
		background:#fff;
		flex-direction:column;
		align-items:flex-start;
		padding:10px;
		display:none;
		box-shadow:0 5px 15px rgba(0,0,0,0.1);
		gap: 5px;
	}
	.menu.active{
		display:flex;
	}
	.menu li{
		width:100%;
	}
	.menu li a{
		display:block;
		width:100%;
		padding:12px 0;
	}
	/* FIX DROPDOWN FOR MOBILE */
	.submenu{
		position:relative;
		top:0;
		left:0;
		box-shadow:none;
		border-radius:0;
		display:none;
		width:100%;
		padding-left:10px;
	}
	.submenu.show{
		display:block;
	}
	/* REMOVE HOVER BEHAVIOR ON MOBILE */
	.dropdown:hover .submenu{
		display:none;
	}
}


/* HERO SECTION */
.hero{
	position:relative;
	min-height:800px;
	/* better than fixed height */
	height:100vh;
	/* full screen */
	overflow:hidden;
}
.hero-slide{
	position:absolute;
	width:100%;
	height:100%;
	background-size:cover;
	background-position:center;
	background-attachment:fixed;
	opacity:0;
	transition:opacity 1s ease-in-out;
	display:flex;
	align-items:center;
	justify-content:center;
}
/* MOBILE FIX for parallax */
@media (max-width: 768px){
	.hero-slide{
		background-attachment:scroll;
		/* IMPORTANT */
	}
}
.hero-slide.active{
	opacity:1;
}
.hero-slide::before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.3);
}
.hero-content{
	padding:30px;
	border-radius:10px;
	position:relative;
	z-index:2;
	text-align:center;
	max-width:90%;
}
/* TEXT */
.hero h1{
	font-size:68px;
	color:#590022;
	font-family:'Aclonica', Helvetica, Arial, Lucida, sans-serif;
	margin-bottom:10px;
	line-height:1.2;
}
.hero p{
	font-size:30px;
}
/* ========================= */
/* RESPONSIVE TEXT */
/* ========================= */
@media (max-width: 992px){
	.hero h1{
		font-size:48px;
	}
	.hero p{
		font-size:22px;
	}
}
@media (max-width: 768px){
	.hero{
		height:80vh;
		min-height:600px;
	}
	.hero h1{
		font-size:36px;
	}
	.hero p{
		font-size:18px;
	}
	.hero-content{
		padding:20px;
	}
}
@media (max-width: 480px){
	.hero{
		height:70vh;
		min-height:500px;
	}
	.hero h1{
		font-size:28px;
	}
	.hero p{
		font-size:16px;
	}
}
/* ABOUT SECTION */
.about{
	padding:50px 5%;
	background:#f7f7f7;
}
.about-container{
	display:flex;
	gap:30px;
	flex-wrap:wrap;
	margin:0 100px;
}
/* TILE */
.about-tile{
	flex:1;
	min-width:280px;
	/* reduce a bit */
	padding:20px;
	background:white;
	border-radius:10px;
	border:1px solid #eee;
	box-shadow:0 4px 15px rgba(0,0,0,0.1);
	transition:0.3s ease;
	box-sizing:border-box;
	/* IMPORTANT FIX */
}
.about-tile:hover{
	transform:translateY(-5px);
	box-shadow:0 10px 25px rgba(0,0,0,0.15);
	border-color:#8d888a;
	background:#fafafa;
}
/* TEXT */
.left h2{
	font-size:40px;
	line-height:1.1;
	color:#590022;
	padding:10px;
	font-family:'Bilbo Swash Caps', Helvetica, Arial, Lucida, sans-serif;
}
.right p{
	font-size:22px;
	margin-bottom:25px;
	color:#333;
	padding:10px;
}
/* ========================= */
/* RESPONSIVE FIX */
/* ========================= */
@media (max-width: 1200px){
	.about-container{
		margin:0 50px;
	}
}
@media (max-width: 992px){
	.about-container{
		margin:0 20px;
	}
	.left h2{
		font-size:32px;
	}
	.right p{
		font-size:18px;
	}
}
@media (max-width: 768px){
	.about{
		padding:40px 15px;
	}
	.about-container{
		flex-direction:column;
		margin:0;
	}
	.about-tile{
		width:100%;
		min-width:unset;
		/* REMOVE WIDTH LIMIT */
		padding:15px;
		/* reduce padding */
	}
	.left h2{
		font-size:26px;
		text-align:center;
	}
	.right p{
		font-size:16px;
		text-align:center;
	}
}
@media (max-width: 480px){
	.left h2{
		font-size:22px;
	}
	.right p{
		font-size:15px;
	}
}
/* BUTTON */
.btn{
	display:inline-block;
	padding:12px 28px;
	background:#590022;
	color:white;
	border-radius:30px;
	font-size:18px;
	transition:0.3s;
	text-decoration:none;
	text-align:center;
}
/* HOVER */
.btn:hover{
	background:#7a0030;
}
/* ========================= */
/* RESPONSIVE FIX */
/* ========================= */
@media (max-width: 768px){
	.btn{
		padding:10px 22px;
		font-size:16px;
	}
}
@media (max-width: 480px){
	.btn{
		width:95%;
		/* full width button */
		padding:12px;
		font-size:15px;
	}
}
/* PRODUCTS SECTION */
.products{
	background:#f5f5f5;
	padding:50px 10%;
	text-align:center;
}
.product-grid{
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:30px;
	margin-top:40px;
}
.product{
	background:white;
	padding:20px;
	border-radius:15px;
	box-shadow:0 4px 15px rgba(0,0,0,0.1);
	text-align:center;
	transition:0.3s;
}
.product:hover{
	transform:translateY(-6px);
	box-shadow:0 15px 35px rgba(0,0,0,0.15);
}
.product-img{
	width:100%;
	height:320px;
	object-fit:cover;
	border-radius:15px;
	margin-bottom:15px;
	transition:transform 0.35s ease;
}
.product:hover .product-img{
	transform:scale(1.02);
}
/* ========================= */
/* RESPONSIVE PRODUCT GRID */
/* ========================= */
/* Large tablets */
@media (max-width: 1200px){
	.product-grid{
		grid-template-columns:repeat(3,1fr);
	}
}
/* Tablets */
@media (max-width: 992px){
	.products{
		padding:40px 5%;
	}
	.product-grid{
		grid-template-columns:repeat(2,1fr);
		gap:20px;
	}
	.product-img{
		height:260px;
	}
}
/* Mobile */
@media (max-width: 576px){
	.product-grid{
		grid-template-columns:1fr;
	}
	.product{
		padding:15px;
	}
	.product-img{
		height:220px;
	}
}
/* Small mobile */
@media (max-width: 400px){
	.product-img{
		height:200px;
	}
}
/* VIDEO SECTION */
.video-section{
	position:relative;
	height:100vh;
	min-height:500px;
	overflow:hidden;
}
/* FIX VIDEO FIT */
.video-section video{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	object-fit:cover;
	/* IMPORTANT */
}
/* TEXT */
.video-text{
	position:absolute;
	top:50%;
	left:50%;
	/* center properly */
	transform:translate(-50%,-50%);
	font-family:'Aclonica', Helvetica, Arial, Lucida, sans-serif;
	color:#590022;
	/*text-align:center;*/
	font-size:30px;
	width:90%;
}
/* ========================= */
/* RESPONSIVE FIX */
/* ========================= */
@media (max-width: 992px){
	.video-text{
		font-size:24px;
	}
}
@media (max-width: 768px){
	.video-section{
		height:70vh;
	}
	.video-text{
		font-size:20px;
	}
}
@media (max-width: 480px){
	.video-section{
		height:60vh;
	}
	.video-text{
		font-size:16px;
	}
}
@media (max-width: 992px){
	.video-text h1{
		font-size:40px;
	}
	.video-text h3{
		font-size:22px;
	}
}
@media (max-width: 768px){
	.video-text h1{
		font-size:30px;
	}
	.video-text h3{
		font-size:18px;
	}
}
@media (max-width: 480px){
	.video-text h1{
		font-size:64px;
	}
	.video-text h3{
		font-size:16px;
	}
}
/* PRODUCT PAGE */
.product-page{
	padding:60px 8%;
	background:#f5f5f5;
}
.container{
	display:flex;
	gap:40px;
}
/* SIDEBAR */
.sidebar{
	width:260px;
}
.sidebar-banner{
	width:100%;
	border-radius:15px;
	margin-bottom:20px;
}
.category-list{
	list-style:none;
	padding:0;
	margin:20px 0;
}
.category-list li{
	padding:5px 0;
	cursor:pointer;
}
.search-icon{
	margin:10px 0;
	color:#590022;
}
.buy-now{
	display:inline-block;
	background:#590022;
	color:white;
	padding:10px 20px;
	border-radius:20px;
	margin-top:15px;
}
/* PRODUCT CONTENT */
.product-content{
	flex:1;
}
.page-title{
	font-size:40px;
	color:#590022;
	margin-bottom:10px;
}
/* MOBILE TEXT */
@media(max-width:768px){
	.page-title{
		font-size:28px;
	}
	.page-description{
		font-size:14px;
	}
}
@media(max-width:480px){
	.page-title{
		font-size:22px;
	}
}
.page-description{
	max-width:700px;
	margin-bottom:30px;
}
.sorting{
	margin-bottom:20px;
}
.tag-container{
	display:flex;
	flex-wrap:wrap;
	gap:10px;
	margin-bottom:25px;
}
.tag-button{
	display:flex;
	align-items:center;
	gap:6px;
	padding:6px 12px;
	background:#f5f5f5;
	border:1px solid #ddd;
	border-radius:20px;
	font-size:18px;
	color:#333;
	transition:0.2s;
}
/* ============================= */
/* TAG BUTTON */
/* ============================= */

.tag-button{
    transition:0.3s;
}

.tag-button:hover{
    background:#590022;
    color:white;
    border-color:#590022;
}

@media(max-width:768px){
    .tag-button{
        font-size:13px;
        padding:5px 10px;
    }
}

/* ============================= */
/* BRAND ICON */
/* ============================= */

.brand-icon{
    width:20px;
    height:20px;
    object-fit:contain;
}

/* ============================= */
/* PRODUCT GRID */
/* ============================= */

.products-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

/* LARGE LAPTOP */
@media(max-width:1400px){
    .products-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

/* TABLET */
@media(max-width:1100px){
    .products-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

/* MOBILE (MAIN FIX ✅) */
@media(max-width:768px){
    .products-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }
}

/* SMALL MOBILE */
@media(max-width:480px){
    .products-grid{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }
}
/* ============================= */
/* FILTER TOGGLE BUTTON */
/* ============================= */

.filter-toggle{
    display:none;
    width:100%;
    padding:12px;
    background:#590022;
    color:white;
    border:none;
    border-radius:6px;
    font-size:16px;
    font-weight:600;
    margin-bottom:15px;
    cursor:pointer;
}

/* ============================= */
/* MOBILE SIDEBAR */
/* ============================= */

@media(max-width:768px){

    .filter-toggle{
        display:block;
    }

    .sidebar{
        display:none; /* hidden by default */
        background:#fff;
        padding:15px;
        border-radius:10px;
        box-shadow:0 5px 15px rgba(0,0,0,0.1);
        margin-bottom:15px;
    }

    .sidebar.active{
        display:block;
    }
}
/* ============================= */
/* PRODUCT CARD */
/* ============================= */

.product-card{
    background:white;
    padding:20px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

/* HOVER EFFECT */
.product-card:hover{
    transform:translateY(-5px);
}

.product-card img{
    width:100%;
    height:260px;
    object-fit:contain;
}

.product-card h4{
    margin-top:10px;
    font-size:15px;
    color:#590022;
}

/* ============================= */
/* MOBILE CARD FIX */
/* ============================= */

@media(max-width:768px){
    .product-card{
        padding:12px;
    }

    .product-card img{
        height:180px;
    }

    .product-card h4{
        font-size:13px;
    }
}

@media(max-width:480px){
    .product-card img{
        height:160px;
    }
}
/* FOOTER */
footer{
	background:#590022;
	color:white;
	text-align:center;
	padding:20px;
	margin-top:auto;
	font-size:14px;
	letter-spacing:0.5px;
}
/* SCROLL ANIMATION */
.fade-in{
	transform:translateY(30px);
	transition:all 0.8s ease;
}
.fade-in.show{
	opacity:1;
	transform:translateY(0);
}
.tag-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.tag-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	border: 1px solid #ddd;
	border-radius: 999px;
	background: #fff;
	text-decoration: none;
	color: #222;
	font-size: 14px;
	transition: all 0.25s ease;
}
.tag-button:hover,.tag-button.active {
	background: #111;
	color: #fff;
	border-color: #111;
	transform: translateY(-2px);
}
.brand-icon {
	width: 22px;
	height: 22px;
	object-fit: contain;
	border-radius: 50%;
	background: #fff;
}
.product-content h1 {
	margin: 0 0 18px;
	font-size: 30px;
}
.toolbar-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	margin-bottom: 18px;
	flex-wrap: wrap;
}
.result-count {
	color: #666;
	font-size: 14px;
}
.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}
.product-card a {
	display: block;
	text-decoration: none;
	color: inherit;
}
.product-card:hover img {
	transform: scale(1.06);
}
.product-info {
	padding: 14px 14px 16px;
}
.product-info h4 {
	margin: 0;
	font-size: 15px;
	line-height: 1.45;
	min-height: 44px;
}
.skeleton-card {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}
.skeleton-image,.skeleton-line {
	background: linear-gradient(90deg, #f1f1f1 25%, #e7e7e7 50%, #f1f1f1 75%);
	background-size: 200% 100%;
	animation: shimmer 1.2s infinite linear;
}
.skeleton-image {
	aspect-ratio: 1 / 1;
}
.skeleton-content {
	padding: 14px;
}
.skeleton-line {
	height: 12px;
	border-radius: 8px;
	margin-bottom: 10px;
}
.skeleton-line:last-child {
	width: 65%;
	margin-bottom: 0;
}
@keyframes shimmer {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}
.infinite-loader,.empty-state,.end-message {
	text-align: center;
	padding: 24px 10px;
	color: #666;
}
#scroll-sentinel {
	height: 10px;
	width: 100%;
}
@media (max-width: 991px) {
	.product-page .container {
		grid-template-columns: 1fr;
	}
	.sidebar {
		position: static;
	}
}
#backToTop {
	position: fixed;
	bottom: 130px;
	right: 30px;
	width: 45px;
	height: 45px;
	border: none;
	border-radius: 50%;
	background: #590022;
	color: white;
	font-size: 20px;
	cursor: pointer;
	display: none;
	z-index: 999;
	box-shadow: 0 6px 15px rgba(0,0,0,0.2);
	transition: all 0.3s ease;
}
#backToTop:hover {
	transform: translateY(-3px);
	background: #7a0033;
}
.whatsapp-float {
	position: fixed;
	bottom: 25px;
	right: 25px;
	background: #25D366;
	color: #fff;
	border-radius: 50px;
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	font-size: 14px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	z-index: 9999;
	transition: all 0.3s ease;
	/* ðŸ”¥ Animation */
	animation: whatsapp-bounce 2s infinite;
}
/* Icon */
.whatsapp-float i {
	font-size: 20px;
}
/* Text */
.whatsapp-text {
	white-space: nowrap;
}
/* Hover effect */
.whatsapp-float:hover {
	transform: scale(1.05);
	background: #20b954;
}
/* Mobile version (icon only) */
@media (max-width: 600px) {
	.whatsapp-text {
		display: none;
	}
	.whatsapp-float {
		padding: 12px;
		border-radius: 50%;
	}
}
@keyframes whatsapp-bounce {
	0%, 100% {
		transform: translateY(0);
	}
	30% {
		transform: translateY(-8px);
	}
	50% {
		transform: translateY(0);
	}
	70% {
		transform: translateY(-4px);
	}
}
/* Remove infinite animation */
.whatsapp-float {
	transition: all 0.3s ease;
}
/* Trigger class */
.whatsapp-float.jump {
	animation: whatsapp-bounce 0.8s ease;
}
