/* Expo Agro Valle de Guadalupe - ajustes de marca */
:root {
  --expo-green: #5b6b2f;
  --expo-green-dark: #4a5726;
  --expo-red: #7a0f18;
}

.theme-btn .btn-wrap .text-one,
.theme-btn .btn-wrap .text-two {
  color: #ffffff !important;
}

.theme-btn:hover,
.theme-btn:focus,
.theme-btn:active,
.theme-btn.btn-style-one:hover,
.theme-btn.btn-style-one:focus {
  background: var(--expo-green-dark) !important;
  border-color: var(--expo-green-dark) !important;
}

.theme-btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}

/* Botones simples (si el template usa <a class="btn">) */
.btn.btn-primary {
  background: var(--expo-green) !important;
  border-color: var(--expo-green) !important;
}
.btn.btn-primary:hover {
  background: var(--expo-green-dark) !important;
  border-color: var(--expo-green-dark) !important;
}

/* Map switcher */
.map-switcher .theme-btn {
  margin-right: 10px;
  margin-bottom: 10px;
}
.map-switcher .map-btn.active {
  filter: brightness(1.08);
}

/* ===== Ajustes botones (sin sombra / sin efecto círculo) ===== */

.theme-btn:hover,
.theme-btn:focus,
.theme-btn:active,
.btn-style-one:hover,
.btn-style-one:focus,
.btn-style-one:active {
  box-shadow: none !important;
  filter: none !important;
}

/* El template agrega un círculo grande con :before; lo desactivamos */
.btn-style-one:before,
.btn-style-two:before,
.btn-style-three:before {
  display: none !important;
  content: none !important;
}

/* Si el botón tiene doble texto (text-one/text-two), ocultamos el segundo para evitar saltos */
.theme-btn .btn-wrap .text-two {
  display: none !important;
}

/* ===== Aviso de cookies ===== */
.expo-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  color: #fff;
  padding: 14px 0;
}

.expo-cookie-banner a {
  color: #fff;
  text-decoration: underline;
}

.expo-cookie-inner {
  width: min(1100px, calc(100% - 30px));
  margin: 0 auto;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.expo-cookie-text {
  font-size: 14px;
  line-height: 1.35;
}
.expo-cookie-text strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.expo-cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.expo-cookie-actions .theme-btn {
  padding: 12px 18px !important;
  border-radius: 6px !important;
}

.expo-cookie-banner.hide {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

@media (max-width: 768px) {
  .expo-cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .expo-cookie-actions {
    width: 100%;
  }
  .expo-cookie-actions .theme-btn {
    width: 100%;
    text-align: center;
  }
}
