@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

* {
  font-family: "Poppins", sans-serif;
}

:root {
  --header-top-fix-color: #f1f1f1;
  --color-primary: #025373;
  --color-secondary: #fea709;
  --color-whatsapp: #22a05c;
}

.bg-patrol {
  background-color: var(--color-primary) !important;
}

.text-patrol {
  color: var(--color-primary) !important;
}

.bg-orange {
  background-color: var(--color-secondary);
}

/* Slider Styles Swiper Text Top Fix Nav*/

.slider-container {
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--header-top-fix-color);
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  color: #2a2a2a;
  position: relative;
  overflow: hidden;
}

.slider-text {
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease;
}

.slider-text.active {
  opacity: 1;
}

/* Contenedor fijo en esquina inferior izquierda */
#liveAlertPlaceholder {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 2000;
  max-width: 320px;
}

/* Animación personalizada */
.alert {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.4s ease forwards;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 404 Page */

.error-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-number {
  font-size: 150px;
  font-weight: bold;
  color: #dc3545;
  animation: bounce 2s infinite;
}

.error-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s forwards;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Recuadro general */
.preview-container {
  width: 150px;
  height: 150px;
  border: 2px solid #adb5bd;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  position: relative;
}

/* Estilo cuando no hay imagen (borde interno dashed) */
.preview-container.no-image::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px dashed #6c757d;
  border-radius: 8px;
  pointer-events: none;
}

#imagePreview {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

#removeImageBtn i {
  font-size: 0.75rem;
}

/* ESTILOS DEL FOOTER */

.footer {
  position: relative;
  background-color: #025373;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 60px 40px 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

/* Capa oscura para contraste */
.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 83, 115, 0.85);
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 220px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.logo-section img {
  width: 150px;
  margin-bottom: 15px;
}

.footer-column h4 {
  margin-bottom: 14px;
  font-size: 18px;
  color: #fea709;
  font-weight: 600;
}

.footer-column p,
.footer-column a,
.footer-bottom p {
  font-size: 14px;
  color: #f5f5f5;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #fea709;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  transition: transform 0.3s ease, color 0.3s;
}

.social-icons a:hover {
  color: #fea709;
  transform: translateY(-3px);
}

/* Línea inferior */
.footer-bottom {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 15px;
  margin-top: 40px;
  font-size: 13px;
  color: #f5f5f5;
}

.footer.show {
  opacity: 1;
  transform: translateY(0);
}

.footer-column.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-column {
    margin-bottom: 20px;
  }

  .social-icons {
    justify-content: center;
  }
}

/* NAVBAR */

/* --- Hover links secondary nav --- */
.link-hover {
  position: relative;
  transition: color 0.3s ease;
}

.link-hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background-color: var(--color-secondary);
  transition: width 0.3s ease;
}

.link-hover:hover {
  color: var(--color-secondary) !important;
}

.link-hover:hover::after {
  width: 100%;
}

/* --- Input focus animation --- */
.form-control:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 0.2rem rgba(254, 167, 9, 0.25);
}

/* --- Badge animation --- */
#num_cart {
  font-size: 0.75rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -3px);
  }
}

/* --- Navbar animation when scrolling --- */
.transition-header {
  transition: all 0.4s ease-in-out;
}

.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(0);
}

.hero-emprendedores {
  background: linear-gradient(135deg, #025373 0%, #036e8c 40%, #fea709 100%);
  color: #ffffff;
  border-bottom: 3px solid #fea709;
}

.hero-emprendedores h1 {
  color: #ffffff;
  font-size: 2rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero-emprendedores p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Botón específico para Hero Emprendedores */
.btn-hero-emprendedores {
  background-color: var(--color-secondary);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: inline-block;
}

.btn-hero-emprendedores:hover {
  transform: scale(1.07);
  background-color: #e89c05;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.btn-hero-emprendedores:active {
  transform: scale(0.97);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(254, 167, 9, 0.6);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(254, 167, 9, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(254, 167, 9, 0);
  }
}

.btn-hero-emprendedores.animate-pulse {
  animation: pulse 2s infinite;
}

.btn-hero.animate-pulse {
  animation: pulse 2s infinite;
}

@media (max-width: 768px) {
  .hero-emprendedores h1 {
    font-size: 2rem;
  }
  .hero-emprendedores p {
    font-size: 1rem;
  }
  .btn-hero {
    padding: 0.6rem 1.5rem;
  }
}

/* Cards Emprendedores */

.custom-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
}

.custom-card .badge {
  background-color: #fea709;
  color: #fff;
}

.custom-card .text-primary {
  color: #025373 !important;
}

.custom-mosaic-card {
  transition: transform 0.3s, box-shadow 0.3s;
  background: linear-gradient(135deg, #eaf1f6, #ffffff);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.custom-mosaic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
}

.custom-mosaic-card .text-primary {
  color: #025373 !important;
}

.custom-mosaic-card .text-bg-warning {
  background-color: #fea709 !important;
  color: #fff !important;
}

/* Botón accesible con colores corporativos */
.btn-vermas {
  background-color: #fea709; /* amarillo corporativo */
  color: #025373; /* azul corporativo para contraste alto */
  font-weight: 600;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(254, 167, 9, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  animation: pulse 2.5s infinite ease-in-out;
}

/* Hover: elevación y leve cambio de color */
.btn-vermas:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(254, 167, 9, 0.55);
  background-color: #ffc246; /* amarillo más claro en hover */
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  border-radius: 30px;
  transition: 0.3s;
}
.btn-whatsapp:hover {
  background: #1eb346;
  transform: scale(0.98);
}

.btn-whatsapp:disabled {
  background: var(--color-whatsapp);
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  outline: none;
  box-shadow: none;
  border: 1px solid transparent; /* mantiene estructura pero sin el borde feo */
}

/* Pulso suave */
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(254, 167, 9, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(254, 167, 9, 0);
  }
}

/* Flecha animada */
.btn-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-vermas:hover .btn-arrow {
  transform: translateX(5px);
}

/* Paginación personalizada */
.custom-pagination .page-item .page-link {
  color: #025373; /* azul corporativo */
  background-color: #ffffff; /* fondo blanco */
  border: 2px solid #fea709; /* borde amarillo */
  border-radius: 50px; /* estilo pill */
  margin: 0 3px;
  min-width: 40px;
  text-align: center;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.custom-pagination .page-item.active .page-link {
  background-color: #fea709; /* amarillo activo */
  color: #ffffff; /* texto blanco */
  border-color: #fea709;
}

.custom-pagination .page-item .page-link:hover {
  background-color: #ffc246; /* amarillo hover */
  color: #025373;
}

/* ===== Hero Estático del Catálogo ===== */
.hero-catalogo {
  background: linear-gradient(135deg, #025373 0%, #036e8c 40%, #fea709 100%);
  color: #ffffff;
  border-bottom: 3px solid #fea709;
}

.hero-title {
  color: #ffffff;
  font-size: 2rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Suaviza la animación AOS */
[data-aos] {
  transition-timing-function: ease-out;
}

/*Main*/

main {
  background-color: #f8f9fa;
}

.search-box {
  position: relative;
  width: 380px;
}

.search-box input {
  border-radius: 2rem;
  padding: 0.6rem 2.5rem 0.6rem 1rem;
  border: 1.5px solid var(--color-primary);
  transition: all 0.3s ease;
}

.search-box input:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 8px rgba(254, 167, 9, 0.3);
}

.search-box .btn-search {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  border: none;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.search-box .btn-search:hover {
  background-color: #ffb930;
  transform: translateY(-50%) scale(1.05);
}

.search-box .btn-search i {
  font-size: 1.1rem;
  line-height: 1;
}

/* PRODUCTOS */
/* ====== CARD PRODUCTO ====== */
.product-card {
  background-color: #fff;
  transition: all 0.35s ease;
  border: 1px solid rgba(2, 83, 115, 0.1);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(2, 83, 115, 0.15);
}

/* Imagen */
.product-img {
  object-fit: cover;
  height: 230px;
  width: 100%;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

/* Texto */
.text-primary-custom {
  color: var(--color-primary);
}

/* ====== BOTÓN AGREGAR AL CARRITO ====== */
.btn-add-cart {
  background: var(--color-secondary);
  color: #535353;
  border: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(254, 167, 9, 0.3);
}

.btn-add-cart:hover {
  background: #ffb930;
  color: #222;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(254, 167, 9, 0.45);
}

.btn-add-cart i {
  font-size: 1rem;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 576px) {
  .product-img {
    height: 200px;
  }
}

/* Panel principal */
.filtros-panel {
  background-color: #fffdf7;
  border: 1.5px solid rgba(2, 83, 115, 0.1);
  border-radius: 1rem;
  width: 100%;
}

/* Título secciones */
.filtro-titulo {
  color: var(--color-primary);
  font-weight: 600;
  position: relative;
}

.filtro-titulo::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--color-secondary);
  margin-top: 4px;
  border-radius: 3px;
}

/* Select */
.filtro-select {
  border: 1px solid rgba(2, 83, 115, 0.2);
  border-radius: 0.6rem;
  padding: 0.5rem;
  width: 100%;
  transition: all 0.3s ease;
}

.filtro-select:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0.4rem rgba(254, 167, 9, 0.3);
}

/* Checkboxes */
.filtro-precios {
  width: 100%;
}

.filtro-check {
  border-radius: 0.6rem;
  padding: 0.45rem 0.6rem;
  margin-bottom: 0.4rem;
  width: 100%;
  transition: all 0.25s ease;
}

.filtro-check:hover {
  background-color: rgba(254, 167, 9, 0.08);
}

.form-check-input {
  accent-color: var(--color-secondary);
  cursor: pointer;
  transform: scale(1.05);
  margin-top: 0.35rem;
}

.form-check-label {
  color: #333;
  font-size: 0.9rem;
  width: 100%;
}

/* Detalles */

.product-dtl {
  min-height: 500px;
  max-height: 650px;
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}
.product-dtl:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(2, 83, 115, 0.25);
}

/* Estilo para el ahorro */
.ahorro-text {
  color: #059862;
  font-size: 1rem;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

/* Badge animado con efecto de pulso y brillo */
.descuento-badge {
  background: linear-gradient(135deg, #fea709, #ff4d4d);
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  animation: pulseBadge 1.5s infinite;
  box-shadow: 0 0 10px rgba(254, 167, 9, 0.7);
}

@keyframes pulseBadge {
  0% {
    transform: scale(1);
    box-shadow: 0 0 8px rgba(254, 167, 9, 0.6);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(254, 167, 9, 0.9);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 8px rgba(254, 167, 9, 0.6);
  }
}

/* Contenedor relativo para mantener las partículas */
.precio-container {
  position: relative;
  display: inline-block;
  overflow: visible;
}

/* --- PRECIO CON DESCUENTO --- */
.precio-final-con-descuento {
  color: #000;
  font-size: 2.6rem;
  font-weight: 900;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  animation: pulseSombra 2s infinite ease-in-out;
}

/* --- PRECIO SIN DESCUENTO --- */
.precio-final-sin-descuento {
  color: #000;
  font-size: 2.6rem;
  font-weight: 900;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
  animation: softPulse 3s infinite ease-in-out;
}

/* Animaciones de respiración suave */
@keyframes pulseSombra {
  0%,
  100% {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  }
  50% {
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
  }
}

@keyframes softPulse {
  0%,
  100% {
    text-shadow: 0 2px 6px rgba(2, 83, 115, 0.2);
  }
  50% {
    text-shadow: 0 3px 10px rgba(2, 83, 115, 0.4);
  }
}

/* --- PARTICULAS BASE --- */
.particulas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 1;
}

/* --- PARTICULAS DESCUENTO --- */
.particulas-descuento::before,
.particulas-descuento::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.8;
  animation: floatParticles 4s infinite ease-in-out;
}

.particulas-descuento::before {
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #fea709 0%, #ff4d4d 80%);
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.particulas-descuento::after {
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, #ff4d4d 0%, #fea709 80%);
  bottom: 10%;
  right: 25%;
  animation-delay: 1s;
}

/* --- PARTICULAS SIN DESCUENTO --- */
.particulas-sin-descuento::before,
.particulas-sin-descuento::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
  animation: floatParticles 5s infinite ease-in-out;
}

.particulas-sin-descuento::before {
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #025373 0%, transparent 90%);
  top: 15%;
  left: 30%;
  animation-delay: 0.5s;
}

.particulas-sin-descuento::after {
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #025373 0%, transparent 90%);
  bottom: 20%;
  right: 20%;
  animation-delay: 1.5s;
}

/* Animación flotante para partículas */
@keyframes floatParticles {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(10px, -10px) scale(1.2);
    opacity: 0.5;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
}

/* --- PRECIO ORIGINAL (tachado mejorado) --- */
.precio-original {
  color: #3d3d3d; /* un gris más profundo, no tan apagado */
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.95;
  text-decoration: line-through;
  text-decoration-color: #025373; /* color principal */
  text-decoration-thickness: 2px;
  position: relative;
  transition: all 0.3s ease;
}

/* Efecto hover sutil: cambia el color y la sombra */
.precio-original:hover {
  color: #000;
  opacity: 1;
  text-shadow: 0 1px 3px rgba(2, 83, 115, 0.2);
  text-decoration-color: #fea709;
}

/*=====================*/
.btn-custom-primary {
  background: linear-gradient(135deg, #025373, #047b91);
  color: #fff;
  border: none;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(2, 83, 115, 0.3);
  transition: all 0.3s ease-in-out;
}
.btn-custom-primary:hover {
  background: linear-gradient(135deg, #047b91, #fea709);
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(254, 167, 9, 0.3);
}

.btn-custom-outline {
  color: #025373;
  border: 2px solid #025373;
  background: transparent;
  transition: all 0.3s ease-in-out;
}
.btn-custom-outline:hover {
  background: #fea709;
  border-color: #fea709;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(254, 167, 9, 0.4);
}

/*============= CARRITO =============*/

.btn-primary-custom {
  background: var(--color-primary);
  color: #fff;
  border: none;
  transition: 0.3s ease;
}

.btn-primary-custom:hover {
  background: #013d52;
  transform: translateY(-2px);
}

.btn-outline-custom {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  transition: 0.3s ease;
}

.btn-outline-custom:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-action {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-action:hover {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.05);
}

.btn-danger-custom {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.btn-danger-custom:hover {
  background: var(--color-secondary);
  color: #fff;
}

.remove-item:hover {
  color: var(--color-secondary) !important;
}

.product-row:hover {
  background: #f8f9fa;
  transition: 0.3s;
}

.eliminar-item:hover {
  color: #c82333 !important;
}

.card-body img {
  object-fit: cover;
}

.card-body h6 {
  color: #212529;
}

@media (max-width: 767.98px) {
 

  .card {
    transition: all 0.3s ease;
  }

  .card:hover {
    transform: scale(1.01);
  }
}

.table th,
.table td {
  vertical-align: middle;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cta-section,
.join-section {
  border-bottom: 3px solid #fea709;
}

/* CSS BOTON LOGIN */

.user-link {
  background: rgba(2, 74, 112, 0.12);
  color: #024a70;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.user-link:hover {
  background: rgba(2, 74, 112, 0.22);
  transform: translateY(-2px);
  color: #01344e;
}

.user-link:hover svg {
  stroke: #01344e;
}

.user-text {
  transition: transform 0.25s ease;
}

.user-link:hover .user-text {
  transform: translateY(-1px);
}

/* boton carrito */

.cart-link {
  background: rgba(254, 167, 9, 0.18); /* amarillo translúcido suave */
  color: #6c4b00;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.cart-link:hover {
  background: rgba(254, 167, 9, 0.3);
  transform: translateY(-2px);
  color: #3d2a00;
}

.cart-link:hover .cart-icon {
  stroke: #3d2a00;
}

.cart-count {
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}

.cart-link:hover .cart-count {
  transform: translateY(-3px);
}

/* ======== SECTION TITLE TERMS & PRIVACITY */

.section-tittle {
  width: 100%;
  padding: 3rem 1rem;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: white;
}



