/* PALETA DE COLORES Y VARIABLES */
:root {
  --color-brand-orange: #f37021;
  --color-brand-orange-hover: #d95d13;
  --color-black: #111111;
  --color-dark-gray: #1e293b;
}

/* NAVEGACIÓN Y LOGO */
.logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.brand-title {
  font-size: 1.25rem;
  color: var(--color-black);
  letter-spacing: 0.5px;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--color-brand-orange) !important;
}

.fw-black {
  font-weight: 900;
}

.text-orange {
  color: var(--color-brand-orange) !important;
}

.navbar-nav .nav-link {
  color: var(--color-dark-gray) !important;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--color-brand-orange) !important;
}

/* BOTONES */
.btn-orange {
  background-color: var(--color-brand-orange) !important;
  border-color: var(--color-brand-orange) !important;
  color: #ffffff !important;
}

.btn-orange:hover {
  background-color: var(--color-brand-orange-hover) !important;
  border-color: var(--color-brand-orange-hover) !important;
}

/* CARRUSEL Y HERO SECTION */
.hero-carousel {
  min-height: 75vh;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  height: 75vh;
  background-position: center 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
}

.hero-subtitle-shadow {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 3;
}

/* BARRA INFORMATIVA DE ANUNCIO */
.banner-anuncio {
  background-color: #111111;
  border-top: 3px solid var(--color-brand-orange);
  border-bottom: 1px solid #222222;
}

.banner-anuncio h2 {
  letter-spacing: 0.5px;
}

.banner-anuncio strong {
  color: #ffffff;
}

/* BANNER Y TARJETAS DE NUESTRAS COMPRAS */
.bg-orange {
  background-color: var(--color-brand-orange) !important;
}

.banner-compras h2 {
  letter-spacing: 1.5px;
}

.object-fit-cover {
  object-fit: cover;
}

/* FOOTER */
.footer-site {
  background-color: #f8f9fa;
}

.footer-site ul li a:hover {
  color: var(--color-brand-orange) !important;
  transition: color 0.2s ease;
}

.footer-site hr {
  opacity: 0.15;
}

/* BOTÓN FLOTANTE DE WHATSAPP CON INSIGNIA (ÚNICO Y CORREGIDO) */
.whatsapp-float-container {
  position: fixed;
  bottom: 25px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 99999;
}

.whatsapp-badge {
  background-color: #ffffff;
  border: 1px solid #25d366;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.75rem;
  color: #333333;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  line-height: 1.2;
  white-space: nowrap;
}

.whatsapp-badge span {
  font-weight: bold;
  color: #0d0d0d;
}

.whatsapp-btn {
  background-color: #25d366;
  color: #ffffff !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: transform 0.2s ease-in-out, background-color 0.2s ease;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
  transform: scale(1.08);
  color: #ffffff !important;
}
.card-img-top {
  height: 250px; /* Altura uniforme fija para todas las imágenes */
  object-fit: cover; /* Recorta y encaja la foto perfectamente sin deformarla */
  width: 100%;
}