@charset "utf-8";
/* CSS Document */

body {
	  font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
    }
.top-bar, .nav-link, .btn,
h1, h2, h3, h4, h5, h6,
p, input, a {
  font-family: 'Poppins', sans-serif;
}

    .top-bar {
      background-color: #f7f7f7;
      font-size: 13px;
      padding: 5px 0;
      border-bottom: 1px solid #ccc;
    }
    .top-bar .left-text {
      font-weight: 400;
	  margin-top: 5px;
	  line-height: 0.99;
    }
    .top-bar .left-text strong {
      font-weight: bold;
    }
    .top-bar .right-menu a {
      color: #666;
      margin-left: 15px;
      font-weight: 400;
      font-size: 13px;
      text-decoration: none;
    }
    /* NAVBAR flotante y transparente */
    .navbar {
	  margin-top: 20px;
	 font-size: 13px;
      position: absolute;
      width: 100%;
      /*top: 0;*/
      z-index: 10;
      background: transparent;
    }
    .navbar .nav-link {
      color: white !important;
      font-weight: 500;
    }
    .navbar-brand img {
      height: 33px;
	  margin-right: 38px;
    }
/* Primer nivel dropdown */
.dropdown-menu {
  background-color: #2a2a2a;
}

.dropdown-item {
  color: white;
  padding: 10px 20px;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  background-color: #2ecc71; /* Verde como en la imagen */
  display: none;
  min-width: 180px;
}

/* Mostrar submenú al pasar mouse */
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Flechita */
.dropdown-submenu > a::after {
  content: "›";
  float: right;
  margin-top: 4px;
  color: white;
}

/* Estilo para hover */
.dropdown-item:hover,
.dropdown-submenu > a:hover {
  background-color: #27ae60 !important;
  color: white !important;
}


    .hero-section {
	  background-size: cover;
	  background-position: center;
	  min-height: 100vh;
	  color: white;
	  text-align: left;
	  position: relative;
	  padding: 160px 20px 100px;
	}

    .hero-overlay {
     /* background-color: rgba(0, 0, 0, 0.3);*/
      padding: 40px;
      max-width: 600px;
      border-radius: 10px;
    }
.text-banner{
	font-size: 26px;
	font-weight: 100;
	line-height: 3;
	text-shadow: 0px 1px 3px rgba(0,0,0,0.25);
}
.tit-banner{
	font-size: 55px;
	font-weight: 500;
	line-height: 0.9;
	text-shadow: 0px 1px 3px rgba(0,0,0,0.25);
}
.text-banner2{
	font-size: 15px;
	font-weight: 100;
	line-height: 4;
	text-shadow: 0px 1px 3px rgba(0,0,0,0.25);
}

.search-bar {
 
  width: 150px;
  background-color: rgba(255, 255, 255, 0.4); /* semi transparente */
  border-radius: 999px;
  padding: 5px 10px;
}

.search-bar input {
  background: transparent;
  border: none;
  color: white;
  font-size: 13px;
  outline: none;
  box-shadow: none;
}

.search-bar input::placeholder {
  color: white;
  opacity: 0.8;
  font-weight: 300;
}

.search-bar .search-btn {
  background: transparent;
  border: none;
  color: white;
  padding: 0 10px;
  font-size: 16px;
}


.custom-banner {
  text-align: center;
    margin: 0 80px 0px !important;
    padding: 10px;
    border: 2px dashed #10B9F2;
    border-radius: 10px;
}
.custom-banner-inner {
      padding: 18px 0;
    background-color: #00B29C;
    border-radius: 10px;
}
.category-box img {
  border-radius: 10px;
  background: white;
  padding: 10px;
  transition: transform 0.3s ease;
}
.category-box img:hover {
  transform: scale(1.05);
}


.swiper-slide img {
  border-radius: 10px;
  padding: 0px;
  background: #fff;
  transition: transform 0.3s ease;
}
.swiper-slide img:hover {
  transform: scale(1.05);
}
.swiper-button-next,
.swiper-button-prev {
  color: #C3C3C3;
}
	  
	  .swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
}
.swiper-button-prev,
.swiper-button-next {
  width: 30px;
  height: 30px;
  background-color: transparent;
  color: #C3C3C3;
  font-size: 32px;
  font-weight: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.2s ease;
}

.swiper-button-prev::before {
  content: "←";
}
.swiper-button-next::before {
  content: "→";
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #333;
}

.nav-pills .nav-link.active {
  background-color: #00b8a9;
}
.nav-pills .nav-link {
  font-size: 13px;
  padding: 5px 10px;
}

.product-header {
  position: relative;
  overflow: hidden;
  border-radius: 5px 5px 5px 5px; /* redondeo solo arriba */
}
	  .tit-slogan{
		  font-size: 40px;
		  color: #00B19B;
	  }
	  .text-slogan{
		  font-size: 40px;
		  color: #10B9F2;
	  }

.product-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px 5px 5px 5px;
  background: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.1) 150%);
  mix-blend-mode: multiply;
  z-index: 3;
  pointer-events: none;
}
.color-1 .product-header::before {
  background: radial-gradient(circle, transparent 20%, rgba(244, 244, 244, 0.4) 150%) !important;
}
.color-2 .product-header::before {
  background: radial-gradient(circle, transparent 20%, rgba(244, 244, 244, 0.4) 150%) !important;
}
.product-header {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

/* Imágenes */
.product-header .img-default,
.product-header .img-hover {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.product-header .img-default {
  position: relative;
  z-index: 2;
}

.product-header .img-hover {
  opacity: 0;
}

.product-header:hover .img-default {
  opacity: 0;
}

.product-header:hover .img-hover {
  opacity: 1;
}


/* Íconos */
.product-actions {
  position: absolute;
  top: 80%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.action-icon {
  background-color: white;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 18px;
  opacity: 0;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.action-icon:hover {
	transform: scale(1.1);
  background-color: #00B29C;
  color: #fff;
}


/* Animaciones */
.action-icon.left {
  transform: translateX(-100px);
}
.action-icon.center {
  transform: translateY(100px);
}
.action-icon.right {
  transform: translateX(100px);
}

.product-header:hover .action-icon {
  opacity: 1;
}
.product-header:hover .action-icon.left {
  transform: translateX(0);
}
.product-header:hover .action-icon.center {
  transform: translateY(0);
}
.product-header:hover .action-icon.right {
  transform: translateX(0);
}
	  
.card-text{
 font-size: 12px;
	 display: -webkit-box;
  -webkit-line-clamp: 2;      /* número de líneas visibles */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
	font-weight: 600 !important;
    line-height: 1.3;
    letter-spacing: -0.2px;
}
	  

	  .card-text a {
  color: #212529;
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-text a:hover {
  color: #00B29C;
}

	  .card-text-gr{
		 font-size: 17px;
		  font-weight: 400 !important;
		  color: #00B29C !important;
	  }
	  .card-text-sub{
		 font-size:24px;
		 line-height:3;
		  letter-spacing: -1px;
		 color: #000 !important;
		 font-weight: 200;
		 text-decoration: underline;
	  }
	  .card-text-sub2{
		 font-size:35px;
		   line-height:0.9;
		  color: #000 !important;
		  font-weight: 400;
		  
	  }
.btn-success{
	background-color: #00B29C !important;
	border-color: #00B29C !important;
	    padding-left: 15px !important;;
    padding-right: 15px !important;;
}

	  .swiper-destacado-nav button {
  font-size: 20px;
  color: #666;
  border: none;
  background: none;
}

.swiper-destacado-nav button:hover {
  color: #000;
}
.banner-ssd {
  min-height: 400px;
}

.banner-ssd img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-content {
  z-index: 2;
  pointer-events: none; /* evita tapar interacciones si no hay links */
}

.banner-content a {
  pointer-events: auto; /* permite hacer clic en el botón */
}

.banner-ssd .btn-success {
  background-color: #00B29C !important;
  border-color: #00B29C !important;
  font-weight: 600;
  border-radius: 8px;
}
.info-icons i {
  color: #00B29C;
}
.info-icons p {
  font-size: 14px;
}
.info-icons{
	margin-top: 80px;
	margin-bottom: 80px;
	  }
	.footer-top {
  background-color: #00b894;
  color: white;
  padding: 30px 0;
}

.newsletter-section {
  background-color: #00B29C;
  color: white;
}
	  
	  .newsletter-title {
  font-size: 24px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -1px;
}

.newsletter-subtitle {
  font-size: 12px;
  font-weight: 200;
  opacity: 1;
}


.btn-subscribe {
  background-color: #4ffff1;
  color: #333;
  font-weight: 600;
  padding: 0 20px;
  transition: background-color 0.3s ease;
}

.btn-subscribe:hover {
  background-color: #00d8c1;
  color: white;
}

.newsletter-section input[type="email"] {
  border: none;
  padding: 0.5rem 1rem;
}

.newsletter-section input::placeholder {
  font-weight: 300;
  color: #999;
}

@media (max-width: 767px) {
  .newsletter-section .d-flex.flex-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-section form {
    width: 100%;
  }
}



/* FOOTER MIDDLE */
.footer-middle {
  background: #f7f7f7;
  padding: 40px 0;
  color: #444;
  margin-bottom: 4px;
  font-size: 13px;
}
.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-col h4 {
  font-weight: 500;
  color:#080808;
  margin-bottom: 15px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 4px;
  font-size: 13px;
}
.footer-col a {
  color: #444;
  text-decoration: none;
}
.footer-col a:hover {
  text-decoration: underline;
}
.social-icons a {
  margin-right: 10px;
  font-size: 18px;
  color: #444;
}

/* FOOTER BOTTOM */
.footer-bottom {
  background-color: #ececec;
  padding: 20px 0;
  font-size: 14px;
  color: #333;
}
.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}
.bottom-content p {
  margin: 0;
  flex: 1;
}
.footer-logo img {
  height: 30px;
}
.payment-methods img {
  height: 20px;
  margin: 0 5px;
}
.footer-icon-right img {
  height: 30px;
}
 .footer-bottom {
  background-color: #f9f9f9;
  font-size: 14px;
}

.footer-bottom i {
  transition: color 0.3s ease;
}

.footer-bottom i:hover {
  color: #00B29C;
}

.thumb-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s ease;
  flex-shrink: 0;
}
.thumb-img.active,
.thumb-img:hover {
  border-color: #00B29C;
}
.product-header-bar {
  background-color: #f5f5f5;
}

.product-title {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-align: left; /* ya es el valor por defecto, pero lo dejamos explícito */
}
.product-main-title {
  font-size: 24px;
  font-weight: 600;
  color: #00B29C;
  margin-bottom: 40px;
}

.product-main-description {
  font-size: 15px;
  font-weight: 300;
  color: #666;
  margin-bottom: 30px;
	text-align: justify;
  line-height: 1.6;
}

.product-main-stock {
  font-size: 14px;
  font-weight: 500;
  color: #008200;
  margin-bottom: 40px;
}

.product-main-buy {
  background-color: #00B29C;
  color: white;
  font-weight: 700;
  padding: 10px 25px;
  border-radius: 2px;
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.3s ease;
  /*margin-bottom: 50px;*/
}

.product-main-buy:hover {
  background-color: #00a091;
  color: #fff;
}

.product-downloads {
  background-color: #CCCCCC;
  color: #555555;
  font-weight: 700;
  /*padding: 10px 25px;*/
  border-radius: 2px;
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.3s ease;
  /*margin-bottom: 50px;*/
}

.product-downloads:hover {
  background-color: #00a091;
  color: #fff;
}


.product-main-meta {
  font-size: 14px;
  color: #000;
	margin-bottom: 1px;
}

.product-main-meta strong {
  font-weight: 700;
}

.buy-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 18px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  max-width:680px; /* opcional */
}

.buy-bar__left{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width:0;
}

.buy-bar__price{
  display:flex;
  align-items:baseline;
  gap:10px;
  line-height:1;
}

.buy-bar__currency{
  font-weight:700;
  font-size:13px;
  color:#6b7280;
  letter-spacing:.5px;
  position:relative;
  top:2px; /* alinea mejor con el número */
}

.buy-bar__amount{
  font-weight:900;
  font-size:30px;
  color:#111827;
  letter-spacing:-.6px;
}

.buy-bar__pvpr{
  font-size:11px;
  color:#6b7280;
}

.buy-bar__pvpr strong{
  color:#6b7280;
  font-weight:800;
}

.buy-bar__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding:12px 18px;
  border-radius:12px;
  font-weight:700;
  white-space:nowrap;
}

/* Mobile */
@media (max-width:576px){
  .buy-bar{
    flex-direction:column;
    align-items:stretch;
    max-width:100%;
  }
  .buy-bar__btn{
    width:100%;
    justify-content:center;
  }
  .buy-bar__amount{
    font-size:26px;
  }
}


/* ===== Currency switcher (top-bar gris) ===== */
.currency-pill{
  display:flex;
  border:1px solid #444;
  border-radius:20px;
  overflow:hidden;
  background:#fff;
  height:28px;                 /* altura del pill */
  padding:0 !important;        /* por si algo mete padding */
  box-sizing:border-box;
}

.currency-pill a{
  flex:1 1 auto;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  height:100% !important;      /* 🔥 esto es lo que faltaba */
  padding:0 12px !important;   /* solo horizontal */
  margin:0 !important;

  line-height:28px !important; /* 🔥 iguala exacto al alto */
  box-sizing:border-box;

  font-weight:700;
  font-size:12px;
  color:#444;
  text-decoration:none !important;
	cursor: pointer !important;
}

.currency-pill a.active{
  background:#00B29C !important;
  color:#fff !important;
}

.currency-pill a:not(.active):hover{
  background:#f2f2f2;
}
.currency-pill a:hover{
  cursor: pointer;
}

/* ===== Precio premium en listado ===== */
.price-badge{
  /*display:inline-flex;
  align-items:baseline;
  gap:8px;
  padding:8px 12px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  background:#fff;
  box-shadow:0 8px 18px rgba(0,0,0,.06);*/
  margin:6px 0 10px;
}

.price-currency{
  font-weight:700;
  font-size:12px;
  color:#666;
}

.price-amount{
  font-weight:800;
  font-size:18px;
  color:#111;
  letter-spacing:-.4px;
}

/* =========================
   MOBILE MENU FIX (Bootstrap 5)
   ========================= */
@media (max-width: 991.98px) {

  /* El contenedor que se abre (collapse) necesita fondo */
  .navbar-collapse{
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 14px;
    margin-top: 12px;
  }

  .navbar-nav .nav-link{
    padding: 10px 8px;
    font-size: 13px;
  }

  /* Buscador full ancho en mobile */
  .search-bar{
    width: 100%;
    margin-top: 10px;
  }

  /* Submenús en mobile: dejar de ser absolutos */
  .submenu-categorias,
  .submenu-nivel2{
    position: static;
    min-width: unset;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    padding-left: 10px;
    display: none; /* se abre con JS */
  }

  .submenu-categorias.is-open,
  .submenu-nivel2.is-open{
    display: block;
  }

  .submenu-categorias a,
  .submenu-nivel2 a{
    color: #fff;
    padding: 10px 8px;
    border-left: 0;
  }

  .submenu-categorias a:hover,
  .submenu-nivel2 a:hover{
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-left: 0;
  }

  /* Flechita visual para indicar desplegable */
  .nav-item.dropdown > .nav-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-item.dropdown > .nav-link::after{
    content: "▾";
    margin-left: 10px;
    font-size: 12px;
    opacity: .9;
  }

  .has-submenu > a{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .has-submenu > a::after{
    content: "▸";
    margin-left: 10px;
    font-size: 12px;
    opacity: .9;
  }
}

/* =========================
   HERO / SLIDER MOBILE TWEAK
   ========================= */
@media (max-width: 575.98px) {
  .hero-section{
    min-height: 75vh;
    padding: 120px 16px 70px;
  }
  .hero-overlay{
    padding: 0;
    max-width: 100%;
  }
  .text-banner{
    font-size: 18px;
    line-height: 1.4;
  }
  .tit-banner{
    font-size: 38px;
    line-height: 1;
  }
  .text-banner2{
    font-size: 13px;
    line-height: 1.5;
    margin-top: 10px;
  }

  /* Controles del carrusel un poco más usables */
  .carousel-control-prev,
  .carousel-control-next{
    width: 12%;
  }
}
.custom-banner {
 margin: 0 0px 0px !important;
}
/* =========================
   SLIDER MOBILE: -20% alto + mejor ajuste de imagen
   ========================= */
@media (max-width: 575.98px) {

  /* Reducimos el alto del hero/slider */
  .hero-section{
    min-height: 48vh;        /* antes 85vh aprox → ~20% menos */
    height: 48vh;            /* fuerza altura consistente */
    padding: 100px 16px 50px;/* un poco menos de padding para que no “coma” el slider */
  }

  /* Si tu slider usa .carousel-item como slide */
  .carousel-item{
    height: 58vh;
  }

  /* Si las imágenes del slider son <img> */
  .carousel-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;       /* recorta sin deformar */
    object-position: center; /* centra el recorte */
    display: block;
  }

  /* Si en vez de <img> usás background-image en algún div (por ej .hero-section) */
  .hero-section{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
	.custom-banner {
 margin: 0 0px 0px !important;
}
	.banner-ssd img {
    width: 100%;
    height: auto;
    display: block;
}
}

/* =========================
   CATEGORIAS (TABS) MOBILE
   ========================= */
.category-tabs{
  gap: 8px;
}

@media (max-width: 575.98px){
  .category-tabs{
    flex-wrap: nowrap;            /* NO bajar a otra línea */
    overflow-x: auto;             /* scroll horizontal */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    margin-bottom: 0;
    scrollbar-width: none;        /* Firefox: ocultar scrollbar */
  }
  .category-tabs::-webkit-scrollbar{
    display: none;                /* Chrome/Safari: ocultar scrollbar */
  }

  .category-tabs .nav-link{
    white-space: nowrap;          /* que no rompa el texto */
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
  }

  /* Para que el título + tabs no se aplasten */
  .category-header{
    flex-direction: column;
    align-items: flex-start !important;
    gap: 10px;
  }
}
/* =========================
   FOOTER: ocultar Categorías, Menú y Extras en mobile
   ========================= */
@media (max-width: 575.98px){
	.banner-ssd{
		display: none;
	 }
  /* footer middle */
  .footer-middle .footer-columns{
    display: flex;
    flex-direction: column;
  }

  /* Ocultar TODAS menos la primera (Contactos) */
  .footer-middle .footer-col:not(:first-child){
    display: none;
  }

}


/* =========================
   HEADER SEARCH: agrandar al focus sin mover nada (desktop)
   No toca el tamaño base actual.
   ========================= */
@media (min-width: 992px){

  /* ancla para posicionar el input flotante */
  .search-bar{
    position: relative;
    z-index: 10;
  }

  /* mantenemos tu tamaño actual: NO seteamos width acá */
  .search-bar .form-control{
    transition: width .18s ease, box-shadow .18s ease, transform .18s ease;
  }

  /* cuando escribís: el input se vuelve flotante y más ancho */
  .search-bar:focus-within .form-control{
    position: absolute;
    right: 44px;                 /* deja lugar para el botón de lupa */
    top: 50%;
    transform: translateY(-50%);
    width: min(520px, 48vw);     /* tamaño expandido */
    z-index: 9999;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
  }

  /* el botón se mantiene “arriba” */
  .search-bar .search-btn{
    position: relative;
    z-index: 10000;
  }
}

/* =========================
   PRODUCTO: botones de descarga mobile
   ========================= */
.product-downloads{
  display: flex;
  align-items: center;
  justify-content: space-between;   /* texto izq / icono der */
  gap: 10px;
  text-decoration: none;
}

.product-downloads i{
  margin-left: 0 !important;        /* anula tu inline margin-left:15px */
  flex: 0 0 auto;
}

/* Mobile */
@media (max-width: 575.98px){

  .product-downloads{
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    margin: 10px 0;
    font-size: 13px;
    line-height: 1.2;

    /* Si tu botón es gris por defecto, dejalo; si querés más pro: */
    /* background: rgba(0,0,0,0.06); */
    /* border: 1px solid rgba(0,0,0,0.08); */
  }

  .product-downloads i{
    font-size: 16px;
  }

  /* Miniaturas: que no “revienten” en mobile */
  .thumb-gallery{
    padding-bottom: 6px;
  }
  .thumb-gallery .thumb-img{
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 10px;
  }
}
@media (max-width: 575.98px){
  .product-downloads-wrap{
    display: grid;
    gap: 10px;
  }
  .product-downloads{
    margin: 0; /* el gap ya se encarga */
  }
}
/* =========================
   PRODUCTO - botones lado a lado en mobile
   ========================= */

@media (max-width: 575.98px){

  .product-downloads-row{
    display: flex;
    gap: 8px;
  }

  .product-downloads-row .product-downloads{
    flex: 1;                 /* 50% cada uno */
    font-size: 11px;
    padding: 10px 8px;
    text-align: center;
    white-space: nowrap;     /* evita que el texto baje */
  }

  .product-downloads-row .product-downloads i{
    margin-left: 6px;
  }
}
/* =========================
   BOTONES DESCARGA: siempre en una fila (desktop + mobile)
   ========================= */
.product-downloads-row{
  display: flex;
  gap: 10px;
}

.product-downloads-row .product-downloads{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
}

/* Desktop: un poco más grande */
@media (min-width: 992px){
  .product-downloads-row .product-downloads{
    padding: 12px 14px;
    font-size: 13px;
  }
}

/* Mobile: más compacto */
@media (max-width: 575.98px){
  .product-downloads-row{
    gap: 8px;
  }
  .product-downloads-row .product-downloads{
    padding: 10px 10px;
    font-size: 11px;
  }
}

/* Si tu CSS actual les pone width:100% o display:block, lo anulamos */
.product-downloads{
  width: auto !important;
}

/* Overlay general */
.search-loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 8, 18, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

/* Activo */
.search-loader-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Caja centrada */
.search-loader-box {
  text-align: center;
  padding: 20px;
  max-width: 90%;
}

/* Loader circular */
.search-loader-spinner {
  width: 62px;
  height: 62px;
  margin: 0 auto 22px;
  border-radius: 50%;
  position: relative;
  background: conic-gradient(
  from 0deg,
  #0066FF,
  #00C2FF,
  #7B61FF,
  #0066FF
);
  animation: spinLoader 1s linear infinite;
  box-shadow: 0 0 20px rgba(123, 97, 255, 0.35);
}

.search-loader-spinner::before {
  content: "";
  position: absolute;
  inset: 8px;
  background: rgba(8, 12, 24, 0.92);
  border-radius: 50%;
}

/* Texto */
.search-loader-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  background: linear-gradient(90deg, #0066FF, #00C2FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-align: center;
}

/* Animación */
@keyframes spinLoader {
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .search-loader-spinner {
    width: 58px;
    height: 58px;
  }

  .search-loader-spinner::before {
    inset: 7px;
  }

  .search-loader-text {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .search-loader-text {
    font-size: 18px;
  }
}

