/* ==========================================================================
	 CSS Variables & Base Styles
	 ========================================================================== */
:root {
	--primary-gold: #e2a829;
	--nav-bg: #412516;
	/* Dark brown for primary nav */
	--font-heading: 'Playfair Display', serif;
	--font-body: 'Inter', sans-serif;
	--text-muted: #a39589;
}

body {
	font-family: var(--font-body);
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
}

/* ==========================================================================
	 Header - Top Bar
	 ========================================================================== */
.top-bar {
	background-color: var(--primary-gold);
	font-size: 0.95rem;
	color: #212529;
}

.top-bar a {
	text-decoration: none;
}

.social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 1.5px solid #fff;
	border-radius: 50%;
	color: #fff;
	transition: all 0.3s ease;
}

.social-icons a i {
	font-size: 0.85rem;
}

.social-icons a:hover {
	background-color: #fff;
	color: var(--primary-gold);
}

.top-offer-text {
	font-size: 0.95rem;
	letter-spacing: 0.3px;
}

.contact-info {
	font-weight: 500;
	font-size: 0.95rem;
}

/* ==========================================================================
	 Header - Primary Navigation
	 ========================================================================== */
.primary-nav {
	background-color: var(--nav-bg);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.primary-nav .navbar-brand {
	padding: 0;
}

/* Divider after logo on desktop */
@media (min-width: 1200px) {
	.primary-nav .navbar-brand::after {
		content: '';
		display: inline-block;
		height: 40px;
		width: 1px;
		background-color: rgba(255, 255, 255, 0.15);
		margin-left: 2rem;
	}
}

.main-menu .nav-link {
	color: var(--text-muted) !important;
	font-weight: 500;
	font-size: 0.95rem;
	padding: 0.5rem 1.25rem !important;
	transition: color 0.3s ease;
}

.main-menu .nav-link:hover,
.main-menu .nav-link.active {
	color: var(--primary-gold) !important;
}

.action-icons .custom-badge {
	font-size: 0.55rem;
	padding: 0.25em 0.5em;
	font-weight: 600;
}

.action-icons a.text-white {
	transition: opacity 0.3s ease;
}

.action-icons a.text-white:hover {
	opacity: 0.8;
	color: var(--primary-gold) !important;
}

.dropdown-menu {
	border: none;
	border-radius: 6px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
	 Header - Secondary Navigation
	 ========================================================================== */
.secondary-nav {
	border-bottom: 1px solid #eaeaea;
}

.secondary-nav-scroll-wrapper {
	flex-wrap: nowrap !important;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.secondary-nav-scroll-wrapper::-webkit-scrollbar {
	display: none;
}

.secondary-menu .nav-link {
	color: #444 !important;
	font-size: 0.95rem;
	font-weight: 500;
	white-space: nowrap;
}

.secondary-menu .nav-link:hover {
	color: var(--primary-gold) !important;
}

.search-form {
	min-width: 200px;
	max-width: 300px;
}

.search-form input {
	font-size: 0.95rem;
	height: 42px;
	box-shadow: none !important;
}

.search-form input:focus {
	border-color: #ccc;
}

/* ==========================================================================
	 Hero Section & Slider
	 ========================================================================== */
.hero-slider-section {
	position: relative;
}

.hero-slide {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #2a2a2a;
	height: 550px;
	position: relative;
}

@media (min-width: 992px) {
	.hero-slide {
		height: 650px;
	}
}

.hero-overlay {
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.hero-content {
	z-index: 2;
}

.hero-title {
	font-size: 3rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.5px;
}

@media (min-width: 768px) {
	.hero-title {
		font-size: 4rem;
	}
}

@media (min-width: 1200px) {
	.hero-title {
		font-size: 4.8rem;
	}
}

.hero-subtitle {
	font-size: 1.25rem;
	font-style: italic;
	font-family: var(--font-body);
	letter-spacing: 0.5px;
	color: #eaeaea;
}

@media (min-width: 768px) {
	.hero-subtitle {
		font-size: 1.5rem;
	}
}

.hero-slider-section .owl-theme .owl-dots {
	position: absolute;
	bottom: 2rem;
	width: 100%;
	text-align: center;
	z-index: 3;
}

.hero-slider-section .owl-theme .owl-dots .owl-dot span {
	width: 6px;
	height: 6px;
	background-color: rgba(255, 255, 255, 0.4);
	margin: 5px 4px;
	transition: all 0.3s ease;
	display: inline-block;
	border-radius: 50%;
}

.hero-slider-section .owl-theme .owl-dots .owl-dot.active span,
.hero-slider-section .owl-theme .owl-dots .owl-dot:hover span {
	background-color: #fff;
	width: 8px;
	height: 8px;
}

/* ==========================================================================
	 Utility Classes
	 ========================================================================== */
.text-gold { color: var(--primary-gold) !important; }
.bg-gold { background-color: var(--primary-gold) !important; }
.letter-spacing { letter-spacing: 1px; }
.text-sm { font-size: 0.85rem; }
.btn-gold { background-color: var(--primary-gold); border: none; font-size: 0.8rem; transition: all 0.3s ease; }
.btn-gold:hover { background-color: #d19924; color: #fff !important; }

/* ==========================================================================
	 Features Section
	 ========================================================================== */
.feature-title { font-size: 1.25rem; font-weight: 500; color: #2c2c2c; font-family: var(--font-heading); }
.feature-desc { font-size: 0.95rem; line-height: 1.5; }

/* ==========================================================================
	 Services Section
	 ========================================================================== */
.services-section { background-color: #eee1cf; }
.title-divider { height: 3px; width: 60px; border-radius: 2px; }
.service-card { height: 100%; }
.service-title { color: #2c2c2c; line-height: 1.3; }
.service-desc { font-size: 0.95rem; line-height: 1.6; }

/* ==========================================================================
	 Product / Curated Collection Section
	 ========================================================================== */
.bg-beige { background-color: #f6f3eb; }
.product-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05); }
.product-img { height: 250px; object-fit: cover; border-radius: 8px 8px 0 0; }
.product-title { color: #2c2c2c; line-height: 1.4; font-family: var(--font-heading); }

.product-carousel .owl-nav button.owl-prev,
.product-carousel .owl-nav button.owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background-color: #fff !important;
	color: var(--primary-gold) !important;
	border-radius: 50%;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	display: flex !important;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem !important;
	transition: all 0.3s ease;
}

.product-carousel .owl-nav button.owl-prev:hover,
.product-carousel .owl-nav button.owl-next:hover { background-color: var(--primary-gold) !important; color: #fff !important; }

/* End of copied styles */

