/* ==================================
   VARIABLES & GLOBAL
================================== */
:root {
  --primary-color: #a68b41;
  --primary-hover: #bda152;
  --dark-color: #333333;
  --light-color: #f8f9fa;
  --text-color: #555555;
}

.list-group {
  --bs-list-group-active-border-color: #6EBB3D !important;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  color: var(--dark-color);
}

.custom-gold-text {
  color: var(--primary-color) !important;
}

.bg-custom-gold {
  background-color: var(--primary-color) !important;
  color: white;
}

/* ==================================
   HEADER & NAVBAR
================================== */
.top-bar {
  background-color: #222;
  color: #ccc;
  font-size: 0.85rem;
}

.top-bar a {
  color: #ccc;
  transition: color 0.3s;
}

.top-bar a:hover {
  color: var(--primary-color);
}

.language-switcher a {
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid #444;
}

.language-switcher a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.navbar-nav .nav-link {
  color: var(--dark-color);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 10px 15px !important;
  transition: all 0.3s ease;
}

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

/* ==================================
   HERO / CAROUSEL
================================== */
.hero-carousel .carousel-item {
  height: 70vh;
  min-height: 400px;
  background-position: center;
  background-size: cover;
}

.hero-carousel .carousel-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
}

/* ==================================
   PRODUCTS
================================== */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #fff;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.product-img-wrapper {
  height: 250px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/bg-pattern.png') repeat;
}

.product-img-wrapper img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

/* ==================================
   FOOTER
================================== */
.footer {
  background-color: #1a1a1a;
  color: #a0a0a0;
}

.footer-link {
  color: #a0a0a0;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--primary-color);
}

.social-links-footer a {
  color: #a0a0a0;
  border: 1px solid #444;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links-footer a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.filter-grayscale {
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.filter-grayscale:hover {
  filter: grayscale(0%);
}

.text-footer {
  color: #a0a0a0 !important;
}