
/* master.css (merged + deduplicated) */

:root {
	--mp-black: #0b0b0c;
	--mp-brown: #1a0f0a;
	--mp-gold: #d4af37;
	--mp-gold-soft: #e6c76a;
	--mp-surface: rgba(255, 255, 255, .06);
	--mp-border: rgba(212, 175, 55, .25);
	--mp-text: rgba(255, 255, 255, .88);
	--mp-muted: rgba(255, 255, 255, .68);

	/* extra vars (from 2nd block) */
	--gold-dark: #B8860B;
	--dark-bg: #1a1a1a;
	--gold-light: #F4E4C1;
	--text-light: #f5f5f5;

	/* fix missing var used later */
	--gold-primary: var(--mp-gold);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', 'Trebuchet MS', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	background:
		radial-gradient(1200px 600px at 15% 10%, rgba(212, 175, 55, .14), transparent 55%),
		radial-gradient(900px 500px at 90% 25%, rgba(230, 199, 106, .10), transparent 55%),
		linear-gradient(140deg, var(--mp-black), var(--mp-brown));
	color: var(--text-light);
	min-height: 100vh;
}
.cart-icon-wrapper {
	position: relative;
}

.cart-icon-wrapper a {
	position: relative;
}

.cart-badge {
	position: absolute;
	top: -5px;
	right: -5px;
	background: #ff4444;
	color: white;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: bold;
	border: 2px solid var(--mp-black);
}
/* Navigation Bar */
.navbar-custom {
	background: linear-gradient(90deg, var(--mp-black) 0%, rgba(26, 15, 10, .9) 50%, var(--mp-black) 100%);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--mp-border);
	padding: 1rem 1.5rem;
	position: sticky;
	top: 0;
	z-index: 1050;
	box-shadow: 0 8px 32px rgba(212, 175, 55, .08);
}

.navbar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
}

.navbar-brand {
	font-family: 'Playfair Display', serif;
	font-size: 1.6rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-soft));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: 2px;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: all .3s ease;
}

.navbar-brand:hover {
	filter: brightness(1.1);
}

/* Nav Menu */
.nav-menu {
	display: flex;
	list-style: none;
	gap: 0;
	margin: 0;
	padding: 0;
}

.nav-menu li a {
	color: var(--mp-text);
	text-decoration: none;
	padding: .75rem 1.25rem;
	display: block;
	transition: all .3s ease;
	position: relative;
	font-weight: 500;
	font-size: .95rem;
}

.nav-menu li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--mp-gold), var(--mp-gold-soft));
	transition: all .3s ease;
	transform: translateX(-50%);
}

.nav-menu li a:hover::after {
	width: calc(100% - 2.5rem);
}

.nav-menu li a:hover {
	color: var(--mp-gold-soft);
}

/* Nav Icons */
.nav-icons {
	display: flex;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}

.nav-icons a {
	color: var(--mp-gold);
	font-size: 1.2rem;
	transition: all .3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--mp-surface);
	text-decoration: none;
}

.nav-icons a:hover {
	color: var(--mp-gold-soft);
	background: rgba(212, 175, 55, .15);
	transform: scale(1.1);
}

.gapicon {
	margin-left: 20px;
}

/* Toggle Button */
.toggle-menu {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
	background: none;
	border: none;
	padding: .5rem;
	margin-left: 1rem;
}

.toggle-menu span {
	width: 28px;
	height: 4px;
	background: var(--mp-gold);
	transition: all .3s cubic-bezier(.25, .46, .45, .94);
	border-radius: 2px;
	display: block;
}

.toggle-menu.active span:nth-child(1) {
	transform: rotate(45deg) translate(12px, 12px);
}

.toggle-menu.active span:nth-child(2) {
	opacity: 0;
}

.toggle-menu.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Side Menu */
.side-menu {
	position: fixed;
	top: 0;
	left: -100%;
	width: 100%;
	max-width: 300px;
	height: 100vh;
	background: linear-gradient(180deg, var(--mp-black) 0%, var(--mp-brown) 100%);
	border-right: 1px solid var(--mp-border);
	transition: left .4s cubic-bezier(.25, .46, .45, .94);
	z-index: 1040;
	padding-top: 80px;
	overflow-y: auto;
	box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
}

.side-menu.active {
	left: 0;
}

.side-menu ul {
	list-style: none;
	padding: 1rem 0;
	margin: 0;
}

.side-menu ul li {
	border-bottom: 1px solid var(--mp-border);
}

.side-menu ul li a {
	color: var(--mp-text);
	text-decoration: none;
	display: block;
	padding: 1rem 1.5rem;
	transition: all .3s ease;
	font-weight: 500;
	font-size: 1.5rem;
	margin-top: 12px;
}

.side-menu ul li a:hover {
	color: var(--mp-gold-soft);
	background: var(--mp-surface);
	padding-left: 2rem;
}

.side-menu-icons {
	display: flex;
	gap: 1rem;
	padding: 1.5rem;
	border-top: 1px solid var(--mp-border);
	margin-top: 1rem;
	flex-wrap: wrap;
}

.side-menu-icons a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--mp-gold);
	background: var(--mp-surface);
	border-radius: 50%;
	transition: all .3s ease;
	text-decoration: none;
}

.side-menu-icons a:hover {
	color: var(--mp-gold-soft);
	background: rgba(212, 175, 55, .15);
	transform: scale(1.1);
}

/* Overlay */
.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	backdrop-filter: blur(5px);
	opacity: 0;
	visibility: hidden;
	transition: all .4s ease;
	z-index: 1030;
}

.menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Desktop Navigation */
.nav-desktop {
	display: flex;
	gap: 2rem;
	align-items: center;
}

/* Hero / Titles */
.hero {
	background: linear-gradient(135deg, rgba(212, 175, 55, .15) 0%, rgba(212, 175, 55, .08) 50%, rgba(61, 40, 23, .2) 100%);
	padding: 4rem 2rem;
	border-bottom: 2px solid;
	border-image: linear-gradient(90deg, var(--mp-gold) 0%, var(--mp-gold-soft) 100%) 1;
	margin: 1rem 0 3rem;
	text-align: center;
	box-shadow: 0 8px 32px rgba(212, 175, 55, .1), inset 0 1px 0 rgba(255, 255, 255, .05);
}

.page-title {
	font-family: 'Playfair Display', serif;
	font-size: 2.8rem;
	font-weight: 900;
	background: linear-gradient(135deg, var(--gold-light), var(--mp-gold), var(--mp-gold-soft));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
	text-shadow: 0 2px 10px rgba(212, 175, 55, .1);
}

.section-title {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	font-weight: 900;
	background: linear-gradient(135deg, var(--mp-gold-soft), var(--mp-gold));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 2rem;
	text-align: center;
}

.content-section {
	padding: 3rem 0;
}

.section-content {
	background: var(--mp-surface);
	border: 1px solid var(--mp-border);
	border-radius: 12px;
	padding: 2rem;
	margin-bottom: 3rem;
	line-height: 1.8;
	color: var(--mp-muted);
	backdrop-filter: blur(10px);
}

/* Stats */
.stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.stat-card {
	background: var(--mp-surface);
	border: 1px solid var(--mp-border);
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	backdrop-filter: blur(10px);
	transition: all .3s ease;
}

.stat-card:hover {
	border-color: var(--mp-gold);
	transform: translateY(-5px);
}

.stat-number {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--mp-gold);
}

.stat-label {
	color: var(--mp-gold-soft);
	font-weight: 700;
	margin-top: .5rem;
}

/* Awards */
.awards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.award-card {
	background: var(--mp-surface);
	border: 1px solid var(--mp-border);
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	transition: all .3s ease;
	backdrop-filter: blur(10px);
}

.award-card:hover {
	transform: translateY(-10px);
	border-color: var(--mp-gold);
	box-shadow: 0 10px 30px rgba(212, 175, 55, .2);
}

.award-icon {
	font-size: 3rem;
	color: var(--mp-gold);
	margin-bottom: 1rem;
}

.award-title {
	color: var(--mp-gold-soft);
	font-weight: 700;
	margin-bottom: .5rem;
}

.award-description {
	color: var(--mp-muted);
	font-size: .95rem;
}

/* Team */
.team-section {
	margin: 3rem 0;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
}

.team-member {
	background: var(--mp-surface);
	border: 1px solid var(--mp-border);
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	transition: all .3s ease;
	backdrop-filter: blur(10px);
}

.team-member:hover {
	border-color: var(--mp-gold);
	transform: translateY(-5px);
}

.member-avatar {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-soft));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 2.5rem;
}

.member-name {
	color: var(--mp-gold-soft);
	font-weight: 700;
	margin-bottom: .3rem;
}

.member-role {
	color: var(--mp-muted);
	font-size: .9rem;
}

/* Branches (from 2nd block) */
.branches-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	padding: 2rem 0;
}

.branch-card {
	background: linear-gradient(135deg, rgba(212, 175, 55, .12) 0%, rgba(212, 175, 55, .05) 100%);
	border: 2px solid rgba(212, 175, 55, .4);
	border-radius: 15px;
	padding: 2.5rem;
	transition: all .3s ease;
	box-shadow: 0 8px 24px rgba(212, 175, 55, .1), inset 0 1px 0 rgba(255, 255, 255, .05);
}

.branch-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(212, 175, 55, .2), inset 0 1px 0 rgba(255, 255, 255, .05);
	border-color: rgba(212, 175, 55, .6);
}

.branch-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid;
	border-image: linear-gradient(90deg, var(--mp-gold) 0%, var(--mp-gold-soft) 100%) 1;
}

.branch-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--mp-gold) 0%, var(--mp-gold-soft) 50%, var(--gold-dark) 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: var(--dark-bg);
	box-shadow: 0 8px 20px rgba(212, 175, 55, .2);
}

.branch-name {
	font-family: 'Playfair Display', serif;
	font-size: 1.4rem;
	font-weight: 900;
	background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-soft));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.branch-detail {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(212, 175, 55, .2);
}

.branch-detail:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.detail-icon {
	color: var(--gold-primary);
	min-width: 25px;
	font-size: 1.2rem;
}

.detail-info h5 {
	color: var(--gold-light);
	font-weight: 700;
	margin-bottom: .3rem;
	font-size: .95rem;
}

.detail-info p {
	color: #ddd;
	font-size: .9rem;
	margin: 0;
}

.branch-hours {
	background: rgba(212, 175, 55, .1);
	border-left: 4px solid var(--mp-gold);
	padding: 1rem;
	border-radius: 6px;
	margin-top: 1rem;
}

.hours-title {
	color: var(--gold-primary);
	font-weight: 700;
	font-size: .9rem;
	text-transform: uppercase;
	margin-bottom: .5rem;
}

.hours-list {
	color: #ddd;
	font-size: .85rem;
	line-height: 1.6;
}

.contact-button {
	width: 100%;
	background: linear-gradient(135deg, var(--mp-gold-soft), var(--gold-dark));
	color: var(--dark-bg) !important;
	border: none;
	padding: .85rem;
	font-weight: 700;
	border-radius: 8px;
	transition: all .3s ease;
	margin-top: 1rem;
	text-transform: uppercase;
	font-size: .9rem;
	cursor: pointer;
}

.contact-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(212, 175, 55, .3);
}

/* Footer */
footer {
	background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
	border-top: 2px solid var(--gold-primary);
	padding: 3rem 0 1rem;
	margin-top: 5rem;
}

.footer-section h5 {
	font-family: 'Playfair Display', serif;
	color: var(--gold-primary);
	font-weight: 700;
}

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

.footer-section a {
	color: var(--mp-muted);
	text-decoration: none;
	transition: all .3s ease;
}

.footer-section a:hover {
	color: var(--mp-gold-soft);
}

.footer-connect {
	text-align: center;
	padding-bottom: 2rem;
	margin-bottom: 2rem;
}

.footer-connect h5 {
	color: var(--mp-gold-soft);
	font-weight: 600;
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
}

/* Social */
.social-links {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

.social-links a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--mp-surface);
	border-radius: 50%;
	border: 1px solid var(--mp-border);
	transition: all .3s ease;
	color: var(--mp-gold);
	text-decoration: none;
}

.social-links a:hover {
	background: var(--mp-gold);
	color: var(--mp-black);
	transform: translateY(-3px);
}

.footer-bottom {
	border-top: 1px solid var(--mp-border);
	padding-top: 2rem;
	margin-top: 2rem;
	text-align: center;
	color: var(--mp-muted);
	font-size: .9rem;
}

.copyright {
	color: var(--mp-gold-soft);
	font-weight: 600;
}

/* Responsive */
@media (max-width:768px) {
	.toggle-menu {
		display: flex;
	}

	.nav-desktop {
		display: none !important;
	}

	.navbar-custom {
		padding: 1rem;
	}

	.navbar-brand {
		font-size: 1.2rem;
		letter-spacing: 1px;
	}

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

	.section-title {
		font-size: 1.5rem;
	}

	.team-grid {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	}

	.branches-grid {
		grid-template-columns: 1fr;
	}

	/* Side Menu Mobile Adjustments */
	.side-menu {
		max-width: 80%;
		width: 80vw;
		left: -80%;
	}

	.side-menu.active {
		left: 0;
	}
}

@media (max-width:480px) {
	.navbar-custom {
		padding: .75rem;
	}

	.navbar-brand {
		font-size: 1rem;
		letter-spacing: .5px;
	}

	.nav-icons a {
		width: 36px;
		height: 36px;
		font-size: 1rem;
	}

	.toggle-menu {
		flex-direction: column;
		gap: 7px;
		background: none;
		border: none;
		padding: 0.5rem;
		margin-left: -5px;
	}

	.toggle-menu span {
		width: 35px;
		margin-left: 10px;
	}

	.page-title {
		font-size: 1.4rem;
	}

	.section-title {
		font-size: 1.2rem;
	}

	.hero {
		padding: 2rem 0;
	}

	/* Side Menu very small screens */
	.side-menu {
		max-width: 85%;
		width: 85vw;
		left: -85%;
	}

	.side-menu.active {
		left: 0;
	}
}

