* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Lato', sans-serif; background: #FDFAF5; color: #2A3A2C; line-height: 1.4; scroll-behavior: smooth; overflow-x: hidden; }

:root {
	--forest-deep: #1E3B2F;
	--forest-soft: #2B4B3C;
	--soft-cream: #FEFAF2;
	--terracotta: #BC6C48;
	--terracotta-light: #D4845D;
	--warm-orange: #E46A2B;
	--warm-orange-deep: #C9571A;
	--pure-white: #FFFFFF;
	--flash-red: #FF4444;
	--flash-red-dark: #CC0000;
	--shadow: 0 20px 35px -10px rgba(0,0,0,0.08);
	--shadow-hover: 0 25px 40px -12px rgba(0,0,0,0.15);
	--border-radius-card: 15px;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; }
h1 { font-size: 3.5rem; color: var(--forest-deep); margin-bottom: 1rem; line-height: 1.2; }
h2 { font-size: 2.5rem; color: var(--forest-deep); margin-bottom: 1rem; text-align: center; }
.section-subhead { font-size: 1.2rem; color: #5A6B5A; text-align: center; margin-bottom: 2rem; }

.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--warm-orange); color: white; padding: 0.9rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 700; transition: all 0.3s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--warm-orange-deep); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(228,106,43,0.3); }
.btn-outline { background: transparent; border: 2px solid var(--terracotta); color: var(--terracotta); padding: 10px 25px; border-radius: 50px; cursor: pointer; transition: all 0.3s; }
.btn-outline:hover { background: var(--terracotta); color: white; }

/* ============ TOP BAR ============ */
.top-bar {
	background-color: var(--forest-deep);
	color: white;
	padding: 8px 0;
	font-size: 0.875rem;
}
.top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.top-bar a {
	color: white;
	text-decoration: none;
	transition: color var(--soft-cream);
}
.top-bar a:hover {
	color: var(--soft-cream);
}
.top-bar .contact-info {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}
.top-bar .contact-info span {
	display: flex;
	align-items: center;
	gap: 6px;
}
.top-bar .icon-small {
	font-size: 1rem;
}


/* Header */
.header { background: white; padding: 5px 0; box-shadow: 0 2px 15px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
.header-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.logo { font-size: 0rem; font-weight: 800; color: var(--forest-deep); font-family: 'Playfair Display', serif; text-decoration: none; }
.logo span { color: var(--terracotta); }
.logo img{
	width: 100px;
	height: 80px;
	object-fit: cover;
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--forest-deep); font-weight: 600; transition: color 0.3s; cursor: pointer; }
.nav-links a:hover { color: var(--terracotta); }
.cart-icon { position: relative; cursor: pointer; font-size: 1.5rem; color: var(--forest-deep); transition: color 0.3s; }
.cart-icon:hover { color: var(--terracotta); }
.cart-count { position: absolute; top: -8px; right: -12px; background: var(--warm-orange); color: white; border-radius: 50%; width: 20px; height: 20px; font-size: 0.7rem; display: flex; align-items: center; justify-content: center; font-weight: bold; }

/* Cart Sidebar */
.cart-sidebar-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 998; display: none; transition: all 0.3s; }
.cart-sidebar-overlay.active { display: block; }
.cart-sidebar { position: fixed; top: 0; right: -450px; width: 420px; height: 100vh; background: white; box-shadow: -5px 0 30px rgba(0,0,0,0.1); z-index: 999; transition: right 0.3s ease-in-out; display: flex; flex-direction: column; }
.cart-sidebar.open { right: 0; }
.cart-sidebar-header { padding: 25px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; background: var(--forest-deep); color: white; }
.cart-sidebar-header h3 { margin: 0; font-size: 1.3rem; }
.close-sidebar { background: none; border: none; color: white; font-size: 1.8rem; cursor: pointer; transition: transform 0.2s; }
.close-sidebar:hover { transform: scale(1.1); }
.cart-sidebar-items { flex: 1; overflow-y: auto; padding: 20px; }
.cart-sidebar-item { display: flex; gap: 15px; padding: 15px 0; border-bottom: 1px solid #eee; }
.cart-sidebar-item img { width: 70px; height: 70px; object-fit: cover; border-radius: 12px; }
.cart-item-details { flex: 1; }
.cart-item-details h4 { font-size: 1rem; margin-bottom: 5px; }
.cart-item-price { color: var(--terracotta); font-weight: 700; }
.cart-item-actions { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.cart-qty-btn { background: #f0f0f0; border: none; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-weight: bold; transition: all 0.2s; }
.cart-qty-btn:hover { background: var(--terracotta); color: white; }
.cart-item-quantity { min-width: 30px; text-align: center; }
.remove-item { color: #dc3545; cursor: pointer; font-size: 0.8rem; margin-left: 10px; }
.cart-sidebar-footer { padding: 20px; border-top: 1px solid #eee; background: white; }
.cart-total-row { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: 700; margin-bottom: 15px; }
.checkout-sidebar-btn { width: 100%; background: var(--warm-orange); color: white; border: none; padding: 12px; border-radius: 50px; font-weight: 700; cursor: pointer; transition: all 0.3s; }
.checkout-sidebar-btn:hover { background: var(--warm-orange-deep); transform: translateY(-2px); }
.empty-cart-message { text-align: center; padding: 40px; color: #999; }
.checkout-btn {
	width: 100%;
	background: var(--warm-orange);
	color: white;
	border: none;
	padding: 14px;
	border-radius: 60px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s;
}

.checkout-btn:hover {
	background: var(--warm-orange-deep);
	transform: translateY(-2px);
}

/* Hero Section */
.hero { padding: 40px 0 60px; background: linear-gradient(135deg, #FEF8ED 0%, #FCF3E6 100%); position: relative; overflow: hidden; }
.hero-two-column { display: flex; flex-wrap: wrap; gap: 40px; position: relative; z-index: 2; }
.hero-left { flex: 0.8; min-width: 280px; }
.hero-right { flex: 1.5; }

/* Category Menu */
.category-vertical { background: white; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); overflow: hidden; margin-bottom: 30px; }
.category-header { background: var(--forest-deep); color: white; padding: 18px 20px; }
.category-header h3 { font-size: 1.2rem; margin: 0; display: flex; align-items: center; gap: 10px; }
.category-list-vertical { list-style: none; }
.category-list-vertical li { border-bottom: 1px solid #f0f0f0; }
.category-list-vertical li a { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; text-decoration: none; color: var(--forest-deep); font-weight: 500; transition: all 0.3s; }
.category-list-vertical li a:hover { background: var(--terracotta-light); color: white; padding-left: 30px; }

/* Flash Sale */
.flash-sale { background: linear-gradient(135deg, var(--flash-red) 0%, #FF6B6B 100%); border-radius: 10px; padding: 25px 30px; margin-bottom: 30px; color: white; text-align: center; }
.countdown-timer { display: flex; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; align-items: center; justify-content: center }
.timer-box { background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); padding: 12px 20px; border-radius: 12px; text-align: center; min-width: 80px; }
.timer-number { font-size: 2rem; font-weight: 800; font-family: monospace; display: block; }
.timer-label { font-size: 0.7rem; text-transform: uppercase; margin-top: 5px; }
.trending-header {display: flex; align-items: center; justify-content: flex-start; gap: 10px}

/* Products Grid */
/* Shop Header */
.shop-header { background: linear-gradient(135deg, #1E3B2F 0%, #2B4B3C 100%); padding: 60px 0; text-align: center; }
.shop-header h1 { font-size: 3rem; margin-bottom: 20px; color: white; }
.shop-header p { opacity: 0.9; color: #eaeaea; }

.products-section { padding: 80px 0; background: var(--pure-white); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 32px; margin-top: 40px; }
.product-card { background: white; border-radius: var(--border-radius-card); overflow: hidden; transition: all 0.4s; box-shadow: 0 5px 15px rgba(0,0,0,0.05); cursor: pointer; border: 1px solid #f0e9de; }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover);}
.product-image {width: 100%; height: 320px;}
.product-image img {object-fit: cover;}
.product-category { color: var(--terracotta); font-size: 0.8rem; text-transform: uppercase; margin-bottom: 8px; }
.product-info { padding: 20px; text-align: center; }
.product-info h3 { font-size: 1.2rem; margin-bottom: 8px; }
.product-price { font-size: 1.5rem; font-weight: 800; color: var(--terracotta); margin: 10px 0; }
.product-btn { background: var(--forest-deep); color: white; border: none; padding: 10px 20px; border-radius: 30px; cursor: pointer; width: 100%; font-weight: 600; transition: all 0.3s; }
.product-btn:hover { background: var(--terracotta); transform: translateY(-2px); }

/* Filters */
.filters-section { background: white; padding: 20px 0; border-bottom: 1px solid #eee; position: sticky; top: 80px; z-index: 99; }
.filters-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.filter-group { display: flex; gap: 15px; align-items: center; flex-wrap: wrap; }
.filter-select, .filter-input { padding: 8px 16px; border: 2px solid #E2D9CE; border-radius: 8px; background: white; font-size: 0.9rem; }
.filter-input { width: 250px; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; }
.page-link { padding: 10px 15px; background: white; border: 2px solid #E2D9CE; border-radius: 8px; text-decoration: none; color: var(--forest); font-weight: 600; transition: 0.3s; }
.page-link.active { background: var(--warm-orange); color: white; border-color: var(--warm-orange); }
.page-link:hover { background: var(--terracotta); color: white; }
        
/* Trust Bar */
.trust-bar {
	background: var(--pure-white);
	border-top: 1px solid rgba(0, 0, 0, 0.04);
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	padding: 40px 0;
}

.trust-icons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 56px;
	align-items: center;
}

.trust-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--forest-soft);
	transition: all 0.2s;
	border: 1px solid #eaeaea;
	padding: 20px 40px;
	border-radius: 10px;
}

.trust-item i {
	font-size: 3.5rem;
	color: var(--forest-deep);
	opacity: 0.75;
	transition: transform 0.2s, opacity 0.2s;
}

.trust-item:hover i {
	transform: translateY(-4px);
	opacity: 1;
	color: var(--terracotta);
}
        
/* Footer */
footer {
	background: #262824;
	color: #D9D2C2;
	padding: 56px 0 40px;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 210, 0.05);
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.footer-links a {
	color: #D9D2C2;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: var(--terracotta);
}

/* Product Details */
.product-details { padding: 60px 0; }
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.dproduct-image { border-radius: 15px; box-shadow: var(--shadow); }
.dproduct-image img { width: 100%; height: 100%; object-fit: cover;}
.dproduct-info h1 { font-size: 2.5rem; color: var(--forest); margin-bottom: 15px; }
.dproduct-price { font-size: 2rem; font-weight: 800; color: var(--terracotta); margin: 20px 0; }
.original-price { text-decoration: line-through; color: #999; font-size: 1.2rem; margin-left: 10px; }
.savings { color: #4CAF50; font-size: 1rem; margin-left: 10px; }
.product-meta { margin: 20px 0; padding: 15px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.quantity-selector { display: flex; align-items: center; gap: 15px; margin: 25px 0; }
.quantity-selector input { width: 80px; padding: 10px; border: 2px solid #E2D9CE; border-radius: 8px; text-align: center; font-size: 1rem; }
.combo-items { background: #FEFAF2; padding: 20px; border-radius: 16px; margin: 20px 0; }
.combo-item { display: flex; align-items: center; gap: 15px; padding: 10px 0; border-bottom: 1px solid #E2D9CE; }
.combo-item img { width: 50px; height: 50px; object-fit: cover; border-radius: 8px; }
.related-products { margin-top: 80px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 25px; margin-top: 30px; }
.related-card { background: white; border-radius: 16px; overflow: hidden; text-align: center; padding: 15px; cursor: pointer; transition: all 0.3s; }
.related-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.related-card img { width: 100%; height: 150px; object-fit: cover; border-radius: 12px; }
@media (max-width: 768px) {
	.details-grid { grid-template-columns: 1fr; }
}
        
@media (max-width: 768px) {
	.container { padding: 0 20px; }
	h1 { font-size: 2rem; }
	.hero-two-column { flex-direction: column; }
	.cart-sidebar { width: 100%; right: -100%; }
	.timer-box { min-width: 60px; padding: 8px 12px; }
	.timer-number { font-size: 1.3rem; }
	.shop-header h1 { font-size: 2rem; }
	.filters-grid { flex-direction: column; align-items: stretch; }
	.filter-input { width: 100%; }
	.top-bar .contact-info {
		gap: 10px;
		font-size: 0.78rem;
	}
	.top-bar .container {
		flex-direction: column;
		text-align: center;
	}
}