/* Core Variables */
:root {
  --primary-color: #c7a17a;
  --secondary-color: #2b2b2b;
  --bg-color: #ffffff;
  --text-color: #333333;
  --text-light: #777777;
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Poppins', sans-serif;
  --card-bg: #ffffff;
  --border-color: #eef0f2;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  --header-height: 80px;
}

body {
  font-family: var(--body-font);
  background-color: var(--bg-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  transition: background-color 0.3s, color 0.3s;
}

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

p {
  line-height: 1.8;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #a8835e;
}

/* Navbar */
.navbar {
  background-color: var(--card-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary-color) !important;
}

.navbar-brand span {
  color: var(--primary-color);
}

.nav-link {
  color: var(--text-color) !important;
  font-weight: 500;
  padding: 0 15px !important;
  text-transform: uppercase;
  font-size: 14px;
}

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

.theme-toggle {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-color);
  cursor: pointer;
}

.theme-toggle:focus {
  outline: none;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #a8835e;
  border-color: #a8835e;
  color: #fff;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 600px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.767);
  /* Always dark overlay for text contrast */
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.hero-content h5 {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.hero-content h1 {
  color: #fff;
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Product Card */
.product-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  margin-bottom: 30px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-img {
  position: relative;
  overflow: hidden;
  height: 250px;
  background-color: #f8f9fa;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-img img {
  transform: scale(1.1);
}

.product-action {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  transition: bottom 0.3s;
}

.product-card:hover .product-action {
  bottom: 20px;
}

.product-action a {
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-action a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-family: var(--body-font);
}

.product-info h3 a {
  color: var(--secondary-color);
}

.product-info h3 a:hover {
  color: var(--primary-color);
}

.product-price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Blog Card */
.blog-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card .blog-img {
  height: 220px;
  background: #e9e9e9;
  overflow: hidden;
}

.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.blog-meta i {
  color: var(--primary-color);
  margin-right: 5px;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.blog-content h3 a {
  color: var(--secondary-color);
}

.blog-content h3 a:hover {
  color: var(--primary-color);
}

.read-more {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 70px 0 30px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 20px;
}

.footer p {
  color: #b3b3b3;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #b3b3b3;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  color: #b3b3b3;
}

/* Offer Banner */
.offer-banner {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  padding: 100px 0;
  text-align: center;
  position: relative;
  color: #fff;
}

.offer-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.offer-banner .container {
  position: relative;
  z-index: 1;
}

.offer-banner h2 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 20px;
}

/* Testimonials */
.testimonial-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.client-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 15px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rating {
  color: #ffb400;
  margin-bottom: 15px;
}

/* Categories Section */
.category-item {
  text-align: center;
  padding: 40px 30px;
  background: var(--card-bg);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}

.category-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.category-icon {
  font-size: 50px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Breadcrumb / Page Header */
.page-header {
  padding: 80px 0;
  height: 70vh;
  background-position: center;
  background-size: cover;
  position: relative;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.page-header h1 {
  color: #fff;
  position: relative;
  z-index: 1;
  font-size: 3rem;
  margin-bottom: 10px;
}

.page-header .breadcrumb {
  position: relative;
  z-index: 1;
  justify-content: center;
  background: transparent;
  padding: 0;
}

.page-header .breadcrumb-item a {
  color: var(--primary-color);
}

.page-header .breadcrumb-item.active {
  color: #fff;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

/* -------------------------------- */
/* NEW ADDITIONAL SECTIONS STYLES   */
/* -------------------------------- */

/* Instagram Gallery */
.insta-gallery {
  display: flex;
  flex-wrap: wrap;
}

.insta-item {
  width: 20%;
  position: relative;
  overflow: hidden;
  height: 250px;
}

@media (max-width: 991px) {
  .insta-item {
    width: 33.333%;
  }
}

@media (max-width: 576px) {
  .insta-item {
    width: 50%;
    height: 180px;
  }
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  font-size: 2.5rem;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-item:hover img {
  transform: scale(1.1);
}

/* Deal Timer */
.deal-timer-box {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  margin: 0 10px 15px;
  text-align: center;
  min-width: 90px;
}

.deal-timer-box span {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.deal-timer-box small {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Features / Why Choose Us */
.feature-box {
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  transition: 0.3s;
  height: 100%;
}

.feature-box:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Store Locations */
.store-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: 0.3s;
}

.store-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary-color);
}

/* Brand Logos */
.brand-logo {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: 0.3s;
  max-width: 150px;
  margin: 0 auto;
  display: block;
}

.brand-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Steps / Process */
.step-box {
  text-align: center;
  position: relative;
  padding: 30px 15px;
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  border: 5px solid var(--bg-color);
}

.step-box::after {
  content: '';
  position: absolute;
  top: 65px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--border-color);
  z-index: 1;
}

@media (max-width: 991px) {
  .step-box::after {
    display: none;
  }
}

/* FAQ Accordion */
.accordion-item {
  background-color: var(--card-bg);
  border-color: var(--border-color);
  margin-bottom: 10px;
  border-radius: 8px !important;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--card-bg);
  color: var(--secondary-color);
  font-weight: 600;
  padding: 20px;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: none;
}

.accordion-button::after {
  filter: grayscale(1);
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-button:focus {
  box-shadow: none;
}

/* Tags */
.tag-cloud a {
  display: inline-block;
  padding: 8px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  border-radius: 30px;
  margin: 0 5px 10px 0;
  transition: 0.3s;
}

.tag-cloud a:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

/* App Promo Button */
.app-btn {
  display: inline-flex;
  align-items: center;
  background: var(--secondary-color);
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  margin-right: 15px;
  margin-bottom: 15px;
  transition: 0.3s;
  text-decoration: none;
}

.app-btn i {
  font-size: 2rem;
  margin-right: 15px;
}

.app-btn:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

/* Dropdown Menu Styles */
.dropdown-menu {
  border-radius: 8px;
  padding: 10px 0;
  margin-top: 10px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  background-color: var(--card-bg);
}

.dropdown-item {
  font-family: var(--body-font);
  font-weight: 500;
  padding: 10px 20px;
  transition: 0.2s;
  color: var(--text-color) !important;
}

.dropdown-item i {
  color: var(--primary-color);
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: rgba(0, 0, 0, 0.03);
  color: var(--primary-color) !important;
}

@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* -------------------------------- */
/* DASHBOARD SPECIFIC STYLES        */
/* -------------------------------- */

.dashboard-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  transition: var(--transition);
  height: 100%;
}

.dashboard-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(199, 161, 122, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.profile-img-lg {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--card-bg);
  box-shadow: var(--shadow);
}

/* Admin Sidebar */
.admin-sidebar {
  width: 280px;
  height: 100vh;
  background-color: var(--secondary-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  transition: all 0.3s ease;
  color: #fff;
  padding: 30px 20px;
}

.admin-sidebar h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 40px;
  font-family: var(--heading-font);
}

.admin-sidebar .nav-link {
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 12px 15px !important;
  border-radius: 8px;
  margin-bottom: 5px;
  transition: 0.3s;
  text-transform: capitalize;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
  background-color: var(--primary-color);
  color: #fff !important;
  margin-top: 2em;
}

.admin-sidebar .nav-link i {
  width: 25px;
  margin-right: 10px;
}

.admin-content {
  margin-left: 280px;
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .admin-sidebar {
    left: -280px;
  }

  .admin-sidebar.active {
    left: 0;
  }

  .admin-content {
    margin-left: 0;
  }
}

/* Tables */
.table-custom {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.table-custom thead th {
  background-color: rgba(0, 0, 0, 0.02);
  border-bottom: 2px solid var(--border-color);
  padding: 15px 20px;
  font-weight: 600;
}

.table-custom tbody td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
}


/* --- Auto Extracted Inline Styles --- */
.auto-style-2e19ea {
  color: var(--text-color);
}

.auto-style-5a1650 {
  background-color: var(--card-bg);
}

.auto-style-9d4fb0 {
  color: var(--text-color) !important;
  font-size: 20px;
}

.auto-style-5d7659 {
  font-size: 10px;
}

.auto-style-931aaa {
  border-radius: 20px;
  font-size: 14px;
}

.auto-style-a09b17 {
  background-image: url('assets/images/external/img_1.jpg');
}

.auto-style-3dafba {
  box-shadow: var(--shadow);
}

.auto-style-42cb22 {
  color: var(--primary-color);
  text-transform: uppercase;
}

.auto-style-9951a3 {
  color: var(--primary-color);
}

.auto-style-6b2279 {
  border-color: var(--border-color) !important;
  background-color: var(--bg-color);
}

.auto-style-f3af19 {
  object-fit: cover;
  min-height: 400px;
}

.auto-style-4c7edc {
  color: var(--primary-color);
  width: 25px;
}

.auto-style-a87775 {
  background-color: var(--bg-color);
}

.auto-style-0277c6 {
  background: var(--card-bg);
  box-shadow: var(--shadow);
}

.auto-style-01f6bd {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.auto-style-9301d5 {
  color: var(--primary-color) !important;
}

.auto-style-22cea7 {
  border-color: #333 !important;
}

.auto-style-41cbc5 {
  font-family: var(--heading-font);
  font-weight: 700;
}

.auto-style-101eff {
  width: 35px;
  height: 35px;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
}

.auto-style-7832d2 {
  border-radius: 0 5px 5px 0;
}

.auto-style-3f0ea9 {
  background-color: var(--bg-color);
  min-height: calc(100vh - var(--header-height));
}

.auto-style-cb1a74 {
  height: 350px;
}

.auto-style-a3ef34 {
  background-color: transparent;
}

.auto-style-db1311 {
  background-image: url('../images/external/featured\ 3.jpg');
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.auto-style-1f5b6c {
  border-color: var(--border-color) !important;
}

.auto-style-d5266e {
  line-height: 1.8;
}

.auto-style-6ae563 {
  background-color: var(--card-bg) !important;
}

.auto-style-97cd7c {
  color: var(--secondary-color);
}

.auto-style-d600be {
  text-decoration: none;
  border-color: var(--border-color) !important;
}

.auto-style-4b94e3 {
  transition: 0.3s;
}

.auto-style-80cd97 {
  background: var(--card-bg) !important;
  border-color: var(--border-color) !important;
}

.auto-style-a0742a {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.auto-style-3420e6 {
  letter-spacing: 1px;
  color: var(--primary-color) !important;
}

.auto-style-b00a7d {
  background: var(--card-bg);
  border-color: var(--border-color) !important;
}

.auto-style-a6dee9 {
  background-color: var(--bg-color);
  color: var(--text-color);
  border-color: var(--border-color);
}

.auto-style-99e00b {
  background: var(--card-bg);
  border-color: var(--border-color) !important;
  transition: 0.3s;
}

.auto-style-d99434 {
  max-width: 500px;
}

.auto-style-f5b7bf {
  border-radius: 30px 0 0 30px;
  background-color: var(--bg-color);
  color: var(--text-color);
  border-color: var(--border-color);
}

.auto-style-aae0cb {
  border-radius: 0 30px 30px 0;
}

.auto-style-992786 {
  background-image: url('../images/external/menu-image-1.jpg');
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.auto-style-98b152 {
  background-color: var(--card-bg) !important;
  color: var(--secondary-color);
}

.auto-style-72227a {
  background-color: var(--card-bg);
  color: var(--text-color);
}

.auto-style-106f35 {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.auto-style-e3d221 {
  width: 100px;
}

.auto-style-4aec33 {
  border-color: var(--border-color);
  color: var(--text-color);
}

.auto-style-ee436e {
  max-width: 250px;
  background-color: var(--bg-color);
  color: var(--text-color);
  border-color: var(--border-color);
}

.auto-style-c2a67f {
  font-family: var(--body-font);
  font-size: 1.5rem;
  border-color: var(--border-color) !important;
}

.auto-style-2e808a {
  background: var(--bg-color);
  border-color: var(--border-color) !important;
}

.auto-style-e88403 {
  font-size: 0.9rem;
  border-color: var(--border-color) !important;
}

.auto-style-2edb4d {
  border-color: var(--border-color);
}

.auto-style-31e1d3 {
  background-color: var(--card-bg) !important;
  border: 1px solid var(--border-color);
}

.auto-style-f3ffc1 {
  color: #1a1f71;
}

.auto-style-ad0929 {
  color: #eb001b;
}

.auto-style-80346b {
  color: #002663;
}

.auto-style-d825e9 {
  color: #003087;
}

.auto-style-86f7f0 {
  color: #000000;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

.auto-style-6096a7 {
  border-color: var(--border-color) !important;
  border-radius: 8px;
}

.auto-style-cb968a {
  border-radius: 8px;
}

.auto-style-48b019 {
  background-color: var(--bg-color);
  color: var(--text-color);
  border-color: var(--border-color) !important;
}

.auto-style-cbdc21 {
  border: 0;
}

.auto-style-0d6690 {
  width: 70px;
  height: 70px;
  background: var(--card-bg);
  border-color: var(--border-color) !important;
  color: #E1306C;
  transition: 0.3s;
  text-decoration: none;
}

.auto-style-6ef221 {
  width: 70px;
  height: 70px;
  background: var(--card-bg);
  border-color: var(--border-color) !important;
  color: #1877F2;
  transition: 0.3s;
  text-decoration: none;
}

.auto-style-66cd9c {
  width: 70px;
  height: 70px;
  background: var(--card-bg);
  border-color: var(--border-color) !important;
  color: #1DA1F2;
  transition: 0.3s;
  text-decoration: none;
}

.auto-style-5f84c2 {
  width: 70px;
  height: 70px;
  background: var(--card-bg);
  border-color: var(--border-color) !important;
  color: #FF0000;
  transition: 0.3s;
  text-decoration: none;
}

.auto-style-503d43 {
  width: 70px;
  height: 70px;
  background: var(--card-bg);
  border-color: var(--border-color) !important;
  color: #0077B5;
  transition: 0.3s;
  text-decoration: none;
}

.auto-style-aaf9c9 {
  height: 100vh;
  background-image: url('../images/external/tea+gif+web.gif');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.auto-style-e78250 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.auto-style-40c332 {
  letter-spacing: 2px;
}

.auto-style-ad361b {
  font-family: var(--heading-font);
  color: #fff;
}

.auto-style-c664f8 {
  max-width: 700px;
}

.auto-style-b43cb0 {
  width: 80px;
  height: 80px;
  transition: 0.3s;
  border-width: 2px;
}

.auto-style-04ff10 {
  font-family: var(--heading-font);
  color: var(--text-color);
}

.auto-style-8d4cfe {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
}

.auto-style-f3a81f {
  height: 400px;
  object-fit: cover;
  transition: 0.5s;
}

.auto-style-72d241 {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.auto-style-b16de9 {
  object-fit: cover;
  transition: 0.5s;
}

.auto-style-4d1e5c {
  max-width: 600px;
}

.auto-style-c7046f {
  background: var(--card-bg);
  border-color: var(--border-color) !important;
  transition: 0.3s transform;
}

.auto-style-acbad4 {
  background: var(--primary-color);
  color: white;
  transform: scale(1.05);
  z-index: 2;
}

.auto-style-0839c3 {
  bottom: -40px;
}

.auto-style-2831b7 {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.auto-style-0dbc0f {
  opacity: 0.5;
}

.auto-style-9a87d8 {
  background-image: url('../images/external/menu-image-1.jpg');
  background-size: cover;
}

.auto-style-3fe341 {
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.auto-style-4b3f71 {
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

.auto-style-6a6e66 {
  color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 30px;
  padding: 10px 30px;
}

.auto-style-52e9af {
  font-size: 2.8rem;
}

.auto-style-114ebf {
  position: relative;
  background-image: url('../images/external/img_5.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay */
.auto-style-114ebf::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.712); /* adjust opacity */
  z-index: 1;
}

/* Content above overlay */
.auto-style-114ebf > * {
  position: relative;
  z-index: 2;
}

.auto-style-8ee0d6 {
  width: 100%;
  border-color: var(--border-color) !important;
}

.auto-style-26853b {
  color: #ffb400;
}

.auto-style-f19123 {
  color: var(--primary-color) !important;
  font-weight: 700;
}

.auto-style-04f2a5 {
  width: 130px;
  margin-right: 20px;
}

.auto-style-5b2d6f {
  width: 45px;
  height: 45px;
  border-color: var(--border-color);
  color: var(--text-color);
}

.auto-style-35bb81 {
  line-height: 2;
}

.auto-style-5ca4bd {
  object-fit: cover;
}

.auto-style-59b18e {
  background-image: url('../images/external/blog.jpg');
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.auto-style-368796 {
  border-color: var(--border-color) !important;
  background: var(--card-bg);
}

.auto-style-0c6406 {
  background-color: var(--card-bg);
  color: var(--text-color);
  border-color: var(--border-color);
}

.auto-style-dae5e5 {
  font-family: var(--heading-font);
  color: var(--secondary-color);
}

.auto-style-d9af2d {
  color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 30px;
  padding: 5px 20px;
}

.auto-style-949635 {
  background-image: url('../images/external/menu-image-1.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 40px;
}

.auto-style-92c62a {
  background: rgba(0, 0, 0, 0.5);
}

.auto-style-efa226 {
  background-image: url('assets/images/external/img_14.jpg');
  padding: 60px 0;
}

.auto-style-3eb5bf {
  background: linear-gradient(135deg, var(--primary-color), #2d4a22);
  color: white;
  border: none;
}

.auto-style-84c922 {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

/* -------------------------------- */
/* BOOTSTRAP PRIMARY COLOR OVERRIDES */
/* Replace Bootstrap blue (#0d6efd) with site primary (#c7a17a) */
/* -------------------------------- */

/* Text color */
.text-primary {
  color: var(--primary-color) !important;
}

/* btn-link (anchor-style buttons) */
.btn-link {
  color: var(--primary-color) !important;
}

.btn-link:hover,
.btn-link:focus {
  color: #a8835e !important;
}

/* Outline button */
.btn-outline-primary {
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #fff !important;
}

/* Bootstrap focus ring override */
.btn-outline-primary:focus,
.btn-link:focus {
  box-shadow: 0 0 0 0.2rem rgba(199, 161, 122, 0.35) !important;
}

/* Dark mode compatibility */
[data-theme="dark"] .text-primary {
  color: var(--primary-color) !important;
}

[data-theme="dark"] .btn-link {
  color: var(--primary-color) !important;
}

[data-theme="dark"] .btn-outline-primary {
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

[data-theme="dark"] .btn-outline-primary:hover {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}