:root {
  /* --- Premium Color Palette --- */
  --primary-base: #2C3E50;    /* Charcoal Blue - Strong, Professional */
  --primary-dark: #1A252F;    /* Darker Charcoal */
  --accent-gold: #D4AF37;     /* Metallic Gold - Luxury Accent */
  --accent-bronze: #A67C52;   /* Warm Bronze - Secondary Accent */
  
  --bg-body: #F9FAFB;         /* Off-white / Ice - Clean background */
  --bg-white: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.85);
  
  --text-main: #2C3E50;
  --text-muted: #6C757D;
  --text-light: #F8F9FA;

  /* --- Typography --- */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;

  /* --- Spacing & Radius --- */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;

  /* --- Shadows (Soft & Premium) --- */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* --- Reset & Base --- */
body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: 80px; /* Space for fixed navbar */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-base);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* --- Utilities --- */
.text-gold { color: var(--accent-gold) !important; }
.bg-gold { background-color: var(--accent-gold) !important; }

/* --- Navbar (Glassmorphism) --- */
.navbar {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 1rem 0;
  transition: all 0.4s ease;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  color: var(--primary-base) !important;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0px;
  left: 50%;
  background-color: var(--accent-gold);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link.active {
  color: var(--primary-dark) !important;
  font-weight: 600;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  height: 85vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: 4rem;
}

.carousel-item {
  height: 85vh;
  min-height: 600px;
  background-color: var(--primary-dark);
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  opacity: 0.7; /* Darken for text readability */
}

.carousel-caption {
  bottom: 0;
  top: 0;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 10;
}

.hero-overlay-content {
  background: rgba(26, 37, 47, 0.65);
  backdrop-filter: blur(6px);
  padding: 3rem;
  border-radius: var(--radius-lg);
  display: inline-block;
  max-width: 800px;
  width: 90%;
  border: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 1s ease-out;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-text {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  font-weight: 300;
}

.btn-hero {
  background-color: var(--accent-gold);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  border: none;
}

.btn-hero:hover {
  background-color: white;
  color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* --- Section Titles --- */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-gold);
}

/* --- Product Cards --- */
.card {
  border: none;
  border-radius: var(--radius-md);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.card-img-wrapper {
  overflow: hidden;
  position: relative;
  height: 300px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.card-img-top {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  transition: transform 0.6s ease;
}

.card:hover .card-img-top {
  transform: scale(1.08);
}

.card-body {
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.03);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary-base);
}

/* Colors - Product availability */
.available-colors {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.color-indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
  transition: transform 0.2s;
  cursor: help;
}

.color-indicator:hover {
  transform: scale(1.2);
}

.bg-wengue { background-color: #654321; }
.bg-blanco { background-color: #f0f0f0; }

/* --- Contact Section --- */
.contact-section {
  position: relative;
  padding: 5rem 0;
}

.form-container, .contact-info {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-control {
  background-color: #F8F9FA;
  border: 1px solid #E9TCEF;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.2rem;
}

.form-control:focus {
  background-color: white;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* --- Footer --- */
footer {
  background-color: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
  font-size: 0.95rem;
}

footer h5 {
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

footer a {
  color: rgba(255,255,255,0.7);
}

footer a:hover {
  color: var(--accent-gold);
}

footer .btn-outline-light {
  border-color: rgba(255,255,255,0.2);
  color: white;
}

footer .btn-outline-light:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
}

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-overlay-content { padding: 2rem; width: 95%; }
  .card-img-wrapper { height: 250px; }
}

/* WhatsApp Float */
.wasap {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
}
.buton-wasap {
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.buton-wasap:hover {
  transform: scale(1.1) rotate(15deg);
}