/* Global body background - Coffee theme */
body {
	background: linear-gradient(135deg, #d4a017 0%, #daa520 50%, #c9a228 100%);
	background-attachment: fixed;
	position: relative;
	min-height: 100vh;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		radial-gradient(circle at 20% 30%, rgba(60, 40, 20, 0.08) 2px, transparent 2px),
		radial-gradient(circle at 60% 70%, rgba(60, 40, 20, 0.09) 2px, transparent 2px),
		radial-gradient(circle at 80% 20%, rgba(60, 40, 20, 0.07) 2px, transparent 2px),
		radial-gradient(circle at 40% 80%, rgba(60, 40, 20, 0.08) 2px, transparent 2px),
		radial-gradient(circle at 90% 60%, rgba(60, 40, 20, 0.07) 2px, transparent 2px),
		radial-gradient(circle at 10% 90%, rgba(60, 40, 20, 0.09) 2px, transparent 2px),
		radial-gradient(circle at 30% 50%, rgba(60, 40, 20, 0.08) 2px, transparent 2px),
		radial-gradient(circle at 70% 40%, rgba(60, 40, 20, 0.07) 2px, transparent 2px);
	background-size: 60px 60px, 80px 80px, 70px 70px, 90px 90px, 75px 75px, 85px 85px, 65px 65px, 95px 95px;
	background-position: 0 0, 30px 30px, 15px 45px, 40px 10px, 25px 60px, 50px 20px, 35px 70px, 20px 50px;
	opacity: 0.5;
	pointer-events: none;
	z-index: 0;
}

body > * {
	position: relative;
	z-index: 1;
}

/* Store experience section - full width image */
.store-experience {
	width: 100vw !important;
	max-width: 100vw !important;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw !important;
	margin-right: -50vw !important;
	padding: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}
.store-experience__stage {
	width: 100vw !important;
	max-width: 100vw !important;
	min-height: 100vh !important;
	border-radius: 0 !important;
	margin: 0 !important;
	box-shadow: none !important;
}
.store-experience__backdrop {
	width: 100% !important;
	height: 100% !important;
	min-height: 100vh !important;
	border-radius: 0 !important;
}

/* Location filter buttons - Ha Noi, Hoi An */
.location-filter-btn {
	background: #ffd700;
	color: #6b3e26;
	border: none;
	border-radius: 8px;
	padding: 10px 28px;
	font-size: 18px;
	font-weight: 600;
	margin: 0 10px;
	box-shadow: 0 2px 8px #ffd70055;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}
.location-filter-btn:hover {
	background: #6b3e26;
	color: #ffd700;
}
/* Center section titles */
.products h2 {
	text-align: center;
	color: #74360a;
}
@media (max-width: 700px) {
	.navbar-menu {
		padding-top: 60px;
		flex-direction: column;
		gap: 18px;
		align-items: center;
		width: 100%;
		margin-bottom: 10px;
	}
	.navbar-main.menu-open {
		flex-direction: column;
		align-items: center;
		height: auto;
		padding: 10px 8px 10px 8px;
		border-radius: 28px;
		box-shadow: 0 4px 16px #2224;
		background: #222;
		margin-bottom: 0;
		max-width: 96vw;
		min-width: 0;
	}
	.navbar-main {
		margin-bottom: 0;
		min-width: 0;
		border-radius: 28px;
		height: 70px;
		max-width: 96vw;
		box-sizing: border-box;
	}
	.navbar-logo {
		margin-bottom: 12px;
	}
	.navbar-actions {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		width: 100%;
		gap: 10px;
		margin-bottom: 18px;
	}
	.navbar-search {
		flex: 1 1 60%;
		min-width: 120px;
		max-width: 70vw;
		margin: 0 auto 10px auto;
	}
	.navbar-search input {
		width: 100%;
		min-width: 80px;
		font-size: 1em;
	}
	.navbar-search button {
		margin-left: 4px;
	}
	.navbar-cart {
		font-size: 22px;
		margin-left: 0;
		margin-right: 0;
	}
	.navbar-menu li, .navbar-auth-mobile {
		width: 92%;
		margin: 0 auto;
		text-align: center;
	}
	.navbar-menu a, .navbar-auth-mobile a {
		font-size: 1em;
		padding: 10px 0;
		border-radius: 20px;
		margin: 0;
		background: none;
		color: #fffbe7;
		box-shadow: none;
		font-weight: 500;
		transition: color 0.2s;
	}
	.navbar-menu a.active, .navbar-menu a:hover, .navbar-auth-mobile a:hover {
		color: #ffe066;
		background: #333;
	}
	.navbar-auth-mobile {
		display: block;
		text-align: center;
		margin: 0;
		width: 100%;
	}
	.navbar-auth-mobile a {
		background: linear-gradient(90deg, #ffe066 80%, #fffbe7 100%);
		color: #6b3e26;
		box-shadow: 0 2px 8px #ffe06655;
		font-weight: 600;
		margin: 8px 0 0 0;
		padding: 10px 0;
		border-radius: 20px;
		width: 100%;
		display: block;
		text-decoration: none;
		letter-spacing: 0.5px;
	}
	.navbar-auth-mobile a:hover {
		background: linear-gradient(90deg, #fffbe7 80%, #ffe066 100%);
		color: #a67c52;
		box-shadow: 0 4px 16px #ffe06688;
		transform: translateY(-2px) scale(1.04);
	}
	.navbar-auth {
		display: flex;
		flex-direction: row;
		justify-content: center;
		gap: 8px;
	}
	.navbar-auth a {
		padding: 6px 12px;
		font-size: 1em;
		min-width: 80px;
		margin: 0;
	}
}
header h1 {
	background: linear-gradient(90deg, #ffe066 80%, #fffbe7 100%);
	color: #6b3e26;
	border-radius: 22px;
	padding: 18px 32px;
	font-weight: bold;
	font-size: 2.4em;
	box-shadow: 0 2px 12px #ffd70044;
	text-shadow: 2px 2px 8px #a67c52, 0 1px 0 #fffbe7;
	display: inline-block;
	margin-bottom: 18px;
}
body {
  background: linear-gradient(180deg, #fffbe7 0%, #ffe066 100%);
  min-height: 100vh;
}
/* ...existing styles... */
.promo-container { font-family: Arial, sans-serif; margin: 0; width: 100%; max-width: none; }
header { text-align: center; margin-bottom: 30px; }
.products { margin-top: 40px; }
.product-list { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.product-item { 
	background: rgba(255, 255, 255, 0.95); 
	border-radius: 20px; 
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); 
	padding: 25px; 
	text-align: center; 
	width: 240px;
	min-height: 360px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}
.product-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 32px rgba(244, 166, 36, 0.4);
	border-color: #f4a624;
}
.product-item img { 
	border-radius: 15px; 
	margin-bottom: 15px;
	transition: transform 0.3s ease;
	width: 200px !important;
	height: 200px !important;
}
.product-item:hover img {
	transform: scale(1.05);
}
.navbar-coffee { background: none; margin-bottom: 20px; }
.navbar-top { display: flex; justify-content: space-between; font-size: 13px; color: #333; padding: 5px 30px; }
.navbar-welcome {
	font-style: italic;
	background: linear-gradient(90deg, #ffd700 80%, transparent 100%);
	color: #6b3e26;
	padding: 6px 28px;
	border-radius: 16px;
	font-weight: bold;
	font-size: 1.6em;
	box-shadow: 0 2px 8px #ffd70044;
	text-shadow: 2px 2px 6px #a67c52, 0 1px 0 #fffbe7;
	border: 2px solid #ffd700;
	display: inline-block;
}
.navbar-auth a {
	color: #fff;
	background: linear-gradient(90deg, #ffd700 80%, #fffbe7 100%);
	border: none;
	border-radius: 18px;
	padding: 6px 18px;
	margin-left: 8px;
	font-weight: bold;
	box-shadow: 0 2px 8px #ffd70044;
	text-decoration: none;
	transition: background 0.2s, color 0.2s, box-shadow 0.2s;
	display: inline-block;
}
.navbar-auth a:hover {
	background: linear-gradient(90deg, #fffbe7 80%, #ffd700 100%);
	color: #6b3e26;
	box-shadow: 0 4px 16px #ffd70088;
}
.navbar-main {
	display: flex;
	align-items: center;
	background: #222;
	border-radius: 32px;
	padding: 0 24px;
	height: 56px;
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}
.navbar-logo { position: absolute; left: 50%; transform: translateX(-50%); top: -30px; background: #222; border-radius: 50%; padding: 10px; box-shadow: 0 2px 8px #ccc; }
.navbar-logo img { width: 80px; height: 80px; object-fit: cover; border-radius: 50%; box-shadow: 0 0 8px #888; }
.navbar-menu { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
.navbar-menu li { position: relative; }
.navbar-menu a { color: #fff; text-decoration: none; font-weight: 500; padding: 0 8px; line-height: 80px; transition: color 0.2s; }
.navbar-menu a.active, .navbar-menu a:hover { color: #ffd700; }
.dropdown-content { display: none; position: absolute; background: #333; min-width: 140px; border-radius: 8px; top: 80px; left: 0; z-index: 10; }
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content li { padding: 0; }
.dropdown-content a { color: #fff; padding: 10px 18px; display: block; border-bottom: 1px solid #444; line-height: normal; }
.dropdown-content a:hover { background: #ffd700; color: #222; }
.navbar-actions { display: flex; align-items: center; margin-left: auto; gap: 18px; }
.navbar-search { display: flex; align-items: center; }
.navbar-search input { border-radius: 20px; border: none; padding: 6px 14px; font-size: 15px; }
.navbar-search button { background: #ffd700; border: none; border-radius: 50%; width: 32px; height: 32px; cursor: pointer; font-size: 16px; }
.navbar-cart { font-size: 24px; color: #ffd700; text-decoration: none; margin-left: 10px; }
/* Mobile Navbar Dropdown */
@media (max-width: 700px) {
	.navbar-main { flex-direction: row; height: 70px; padding: 8px 8px; justify-content: center; }
	.navbar-logo { position: static; margin: 0; cursor: pointer; z-index: 100; }
	.navbar-menu, .navbar-actions { display: none; }
	.navbar-main.menu-open .navbar-menu,
	.navbar-main.menu-open .navbar-actions { display: flex; flex-direction: column; background: #222; border-radius: 30px; position: absolute; top: 70px; left: 50%; transform: translateX(-50%); width: 90vw; max-width: 340px; box-shadow: 0 4px 16px #0002; padding: 18px 0; gap: 10px; align-items: center; }
	.navbar-main.menu-open .navbar-menu a { line-height: 40px; font-size: 1.2em; }
	.navbar-main.menu-open .navbar-actions { flex-direction: row; justify-content: center; gap: 10px; margin-top: 10px; }
}
@media (max-width: 900px) {
	.promo-container { max-width: 100%; padding: 0 8px; }
	.product-list { flex-direction: column; gap: 18px; align-items: center; }
	.product-item { width: 90vw; max-width: 320px; }
	header img { max-height: 180px; }
}
@media (max-width: 700px) {
	.navbar-main { flex-direction: column; height: auto; padding: 10px 8px; }
	.navbar-logo { position: static; transform: none; margin: 0 auto 10px auto; top: 0; }
	.navbar-logo img { width: 60px; height: 60px; }
	.navbar-menu { flex-direction: column; gap: 8px; align-items: center; }
	.navbar-menu a { line-height: 40px; font-size: 1.1em; }
	.navbar-actions { flex-direction: row; justify-content: center; margin: 10px 0 0 0; gap: 10px; }
	.navbar-search input { font-size: 1em; }
}
@media (max-width: 500px) {
	.navbar-top { flex-direction: column; font-size: 12px; padding: 4px 2px; }
	.navbar-welcome { font-size: 1.1em; padding: 4px 8px; }
	.promo-container { padding: 0 2px; }
	.product-item { padding: 10px; }
}
@media (max-width: 700px) {
  .navbar-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 10px;
  }
  .navbar-auth {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
  }
  .navbar-auth a {
    padding: 6px 12px;
    font-size: 1em;
    min-width: 80px;
    margin: 0;
  }
  .navbar-search {
    margin-bottom: 8px;
  }
}
/* Store Card Styles */
.store-card-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	margin: 0 auto;
	width: 100%;
	max-width: 1400px;
	box-sizing: border-box;
	padding-left: 0;
}
.store-card {
	background: #fffbe7;
	border-radius: 0;
	box-shadow: none;
	flex: 1 1 0;
	min-width: 0;
	min-height: 0;
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: stretch;
	margin: 0;
	height: 100%;
	transition: none;
}
.store-card-img-wrap {
	position: relative;
	width: 100%;
	height: 50px;
	display: flex;
	align-items: stretch;
	justify-content: stretch;
	border-radius: 0;
	overflow: hidden;
}
.store-card-img {
	width: 100%;
	height: 50px;
	object-fit: cover;
	border-radius: 4px;
	box-shadow: none;
	border: 1px solid #ffd700;
	display: block;
}
.store-card-title-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0,0,0,0.32);
	color: #fff;
	font-size: 0.5em;
	font-weight: 300;
	padding: 2px 0;
	text-align: center;
	border-radius: 4px;
	letter-spacing: 0.4px;
	text-shadow: 0 1px 4px #222;
	width: 90%;
}
.store-card-info {
	padding: 4px 5px 3px 5px;
	text-align: center;
}
.store-card-title {
	font-size: 0.6em;
	font-weight: bold;
	margin-bottom: 2px;
	color: #6b3e26;
	letter-spacing: 0.4px;
}
.store-card-address {
	font-size: 0.5em;
	color: #a67c52;
	margin-bottom: 0;
}
@media (max-width: 1200px) {
	.store-card-title-overlay {
		font-size: 0.45em;
		padding: 2px 0;
		font-weight: 300;
		letter-spacing: 0.4px;
	}
	header img { max-height: 180px; 
		max-width: 280px;
		min-height: 320px;
	}
	.store-card-img-wrap, .store-card-img {
		height: 40px;
	}
}

@media (max-width: 900px) {
	.store-card-list {
		grid-template-columns: repeat(2, 1fr);
	}
	.store-card {
		max-width: 98vw;
		min-height: 35px;
	}
	.store-card-img-wrap, .store-card-img {
		height: 30px;
	}
	.store-card-list {
		grid-template-columns: 1fr;
		width: 100vw;
		padding: 0;
	}
	.store-card {
		width: 100vw;
		max-width: 100vw;
		min-width: 0;
		min-height: 30px;
		margin: 0;
		border-radius: 0;
	}
	.store-card-img-wrap, .store-card-img {
		height: 25px;
		max-width: 100vw;
	}
}
@media (max-width: 600px) {
	.store-card-list {
		grid-template-columns: 1fr;
	}
		.store-card {
			max-width: 98vw;
			min-height: 30px;
		}
		.store-card-img-wrap, .store-card-img {
			height: 22px;
		}
		.store-card-title-overlay {
			font-size: 0.4em;
			padding: 1px 0;
		}
}

/* Image hover zoom effect */
.product-item img,
.store-card-img {
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}

.product-item img:hover {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(2.5);
	z-index: 9999;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
	border-radius: 12px;
	max-width: 90vw;
	max-height: 90vh;
	width: auto;
	height: auto;
	object-fit: contain;
}

.store-card-img:hover {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
	border-radius: 12px;
	max-width: 90vw;
	max-height: 90vh;
	width: auto;
	height: auto;
	object-fit: contain;
}

/* Dark overlay when hovering */
.product-item img:hover::before,
.store-card-img:hover::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.85);
	z-index: 9998;
}

/* ===== FOOTER STYLES ===== */
.site-footer {
	background: linear-gradient(135deg, #3d2817 0%, #5c3d2e 50%, #4a2f1f 100%);
	color: #ffffff;
	padding: 60px 20px 20px;
	margin-top: 80px;
	position: relative;
	width: 100vw;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.footer-container {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.5fr 1fr;
	gap: 60px;
	padding: 0 40px;
	align-items: start;
}

/* Footer Left - Logo and Description */
.footer-left {
	display: flex;
	flex-direction: column;
}

.footer-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.footer-logo img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	background: white;
	border-radius: 50%;
	padding: 8px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	border: 3px solid rgba(255, 255, 255, 0.9);
}

.footer-description {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 25px;
}

.social-title {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 12px;
	color: #ffffff;
}

.social-icons {
	display: flex;
	gap: 10px;
}

.social-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(212, 160, 23, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	transition: all 0.3s ease;
	color: #ffffff;
	text-decoration: none;
}

.social-icon:hover {
	background-color: #d4a017;
	color: #2c1810;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(212, 160, 23, 0.4);
}

/* Footer Center - Contact Information */
.footer-center h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.company-name {
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 15px;
	color: #ffffff;
}

.info-item {
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 12px;
	color: rgba(255, 255, 255, 0.85);
}

.info-item strong {
	color: #ffffff;
	font-weight: 600;
}

.footer-btn {
	display: inline-block;
	margin-top: 20px;
	padding: 12px 28px;
	background-color: #d4a017;
	color: #2c1810;
	text-decoration: none;
	border-radius: 25px;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	border: 2px solid #d4a017;
}

.footer-btn:hover {
	background-color: transparent;
	color: #d4a017;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(212, 160, 23, 0.3);
}

/* Footer Right - Quick Links */
.footer-right h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-right ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-right ul li {
	margin-bottom: 12px;
}

.footer-right ul li a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
	display: inline-block;
}

.footer-right ul li a:hover {
	color: #d4a017;
	transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
	max-width: 1400px;
	margin: 0 auto;
	margin-top: 50px;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
}

.footer-bottom p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

/* Responsive Footer */
@media (max-width: 1024px) {
	.footer-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.footer-container {
		gap: 30px;
		padding: 0 20px;
	}
	
	.site-footer {
		padding: 40px 20px 20px;
		margin-top: 50px;
	}
	
	.footer-logo img {
		width: 100px;
		height: 100px;
	}
	
	.footer-center h3,
	.footer-right h3 {
		font-size: 14px;
	}
}
