@charset "utf-8";

/* CSS Document - Modernized Design */

* {
  margin: 0;

  padding: 0;

  font-family:
    "Inter",
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  text-transform: none;

  box-sizing: border-box;
}

body {
  display: flex;

  flex-direction: column;

  min-height: 100vh;

  background: #f8f9fa;

  color: #2c3e50;

  line-height: 1.6;
}

.web {
  margin: 0 auto;
  padding: 0;
  padding-bottom: 3%;
  max-width: 1320px;
  width: 100%;
  flex: 1;
}

/* Mantiene el fondo blanco hasta el footer sin afectar el .web interno del footer */
body > .web {
  background: #fff;
}

/* Header Modernizado */

.c_header {
  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  width: 100%;

  padding: 30px 20px 20px;

  margin-top: 60px;

  background: #fff;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

  gap: 20px;
}

.c_header .c_logo_wrapper {
  width: 100%;

  display: flex;

  justify-content: center;

  align-items: center;
}

.c_header .c_logo {
  max-width: 350px;

  text-align: center;
}

.c_header .c_logo img {
  width: 100%;

  height: auto;

  transition: transform 0.3s ease;
}

.c_header .c_logo img:hover {
  transform: scale(1.03);
}

.c_header .c_buscador_wrapper {
  width: 100%;

  display: flex;

  justify-content: center;

  align-items: center;
}

.c_header .c_buscador {
  width: 100%;

  max-width: 500px;
}

.c_header .c_buscador .form-buscar {
  width: 100%;
}

.c_header .c_buscador .input-group {
  display: flex;
  align-items: center;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  transition: all 0.3s ease;
}

.c_header .c_buscador .input-group:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.c_header .c_buscador .form-control {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 15px;
  font-size: 14px;
  background: transparent;
}

.c_header .c_buscador .form-control::placeholder {
  color: #9ca3af;
}

.c_header .c_buscador .btn-buscar {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 0 6px 6px 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c_header .c_buscador .btn-buscar:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-1px);
}

.c_header .c_buscador .btn-buscar i {
  font-size: 16px;
}

/* fin header */

/* Navbar Modernizado */

.c_nav {
  display: flex;

  justify-content: space-between;

  align-items: center;

  width: 100%;

  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);

  padding: 0 20px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.c_nav nav {
  z-index: 1000;
}

.c_nav nav ul {
  list-style: none;

  margin: 0;

  padding: 0;

  display: flex;
}

.c_nav nav ul li {
  position: relative;
}

.c_nav nav ul li:hover {
  background: rgba(255, 255, 255, 0.15);
}

.c_nav nav ul li a {
  color: #fff;

  display: flex;

  align-items: center;

  text-decoration: none;

  padding: 16px 24px;

  font-weight: 600;

  font-size: 15px;

  transition: all 0.3s ease;
}

.c_nav nav ul li a span {
  margin-right: 10px;

  font-size: 18px;
}

.c_nav nav ul li:hover .children {
  display: block;
}

.c_nav nav ul li .children {
  display: none;

  background: #fff;

  position: absolute;

  min-width: 200px;

  z-index: 1000;

  border-radius: 8px;

  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);

  overflow: hidden;

  margin-top: 0;
}

.c_nav nav ul li .children li {
  display: block;

  border-bottom: 1px solid #f0f0f0;
}

.c_nav nav ul li .children li:last-child {
  border-bottom: none;
}

.c_nav nav ul li .children li a {
  color: #2c3e50;

  padding: 12px 20px;
}

.c_nav nav ul li .children li a:hover {
  background: #f8f9fa;

  color: #1f2937;
}

.c_nav nav ul li .caret {
  margin-left: 8px;
}

/* Menu fijo */

.menu-fixed {
  position: fixed;

  z-index: 2000;

  top: 0;

  width: 100%;
}

/* Carrito de compras */
.c_nav .c_carro {
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.c_nav .c_carro a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-weight: 600;
}

.c_nav .c_carro a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.c_nav .c_carro a span {
  margin-right: 8px;
  font-size: 20px;
}

.c_nav .c_carro .texto_carro_menu {
  margin-right: 8px;
  font-size: 14px;
}

.c_nav .c_carro .c_valor_varro_menu {
  font-weight: 700;
  font-size: 15px;
}
/* fin navbar */

/* Sidebar de Categorías Modernizado */

.categoria {
  width: 300px;

  height: 100%;

  position: fixed;

  left: -300px;

  overflow-y: auto;

  background: #fff;

  z-index: 3000;

  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);

  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.categoria.active {
  left: 0;
}

.categoria .c_cerrar_categoria {
  padding: 20px;

  color: #2c3e50;

  font-size: 18px;

  font-weight: 700;

  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);

  color: #fff;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.categoria .c_cerrar_categoria a {
  text-decoration: none;

  color: #fff;
}

.categoria .c_cerrar_categoria a:hover {
  color: #f0f0f0;
}

.categoria .c_cerrar_categoria .cerrar {
  font-size: 20px;
}

.categoria .c_categoria {
  padding: 15px 20px;

  color: #2c3e50;

  font-size: 16px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1px;

  background: #f8f9fa;

  border-bottom: 2px solid #e9ecef;
}

#menu-categoria {
  width: 100%;
}

ul {
  list-style: none;

  padding: 0;
}

#menu-categoria li a {
  color: #495057;

  display: block;

  font-size: 15px;

  padding: 14px 20px;

  background: #fff;

  text-decoration: none;

  border-bottom: 1px solid #e9ecef;

  transition: all 0.3s ease;
}

#menu-categoria li a:hover {
  background: #f8f9fa;

  color: #1f2937;

  padding-left: 28px;
}

#menu-categoria .flecha-abajo {
  float: right;

  font-size: 14px;

  transition: transform 0.3s ease;
}

#menu-categoria li.activado .flecha-abajo {
  transform: rotate(180deg);
}

#menu-categoria ul {
  display: none;
}

#menu-categoria ul li a {
  background: #f8f9fa;

  padding-left: 40px;

  font-size: 14px;

  color: #6c757d;
}

#menu-categoria ul li a:hover {
  background: #e9ecef;

  color: #1f2937;

  padding-left: 48px;
}

#menu-categoria .activado > a {
  background: #f8f9fa;

  color: #1f2937;
}

/* Menu Usuario Modernizado */

.menu_usuario {
  width: 100%;

  margin-bottom: 10px;
}

.menu_usuario ul {
  list-style: none;

  padding: 0;
}

.menu_usuario li a {
  color: #495057;

  display: flex;

  align-items: center;

  font-size: 15px;

  padding: 14px 20px;

  background: #fff;

  text-decoration: none;

  border-bottom: 1px solid #e9ecef;

  transition: all 0.3s ease;
}

.menu_usuario li a span {
  margin-right: 10px;

  font-size: 18px;

  opacity: 0.8;
}

.menu_usuario li a:hover {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);

  color: #fff;

  padding-left: 28px;
}

.menu_usuario li a:hover span {
  opacity: 1;
}

.menu_usuario .flecha-abajo {
  margin-left: auto;

  font-size: 14px;

  transition: transform 0.3s ease;
}

.menu_usuario li.activado .flecha-abajo {
  transform: rotate(180deg);
}

.menu_usuario ul {
  display: none;
}

.menu_usuario ul li a {
  background: #f8f9fa;

  padding-left: 40px;

  font-size: 14px;

  color: #6c757d;
}

.menu_usuario ul li a:hover {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);

  color: #fff;

  padding-left: 48px;
}

.menu_usuario .activado > a {
  background: #f8f9fa;

  color: #1f2937;
}

/* Fin Menu usuario */

/* Contenido Principal */

.c_informacion {
  width: 100%;

  padding: 20px;

  background: #fff;
}

/* Slideshow y Banners */

.c_slideshow {
  width: 100%;

  display: grid;

  grid-template-areas:
    "slide slide slide"
    "slide slide slide"
    "item1 item2 item3"
    "item4 item5 item6";

  gap: 15px;

  padding: 0;

  margin-bottom: 30px;
}

.c_slideshow .slideshow {
  grid-area: slide;

  border-radius: 12px;

  overflow: hidden;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.c_slideshow .c_banner_1,
.c_slideshow .c_banner_2,
.c_slideshow .c_banner_3 {
  border-radius: 8px;

  overflow: hidden;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

  transition: transform 0.3s ease;
}

.c_slideshow .c_banner_1:hover,
.c_slideshow .c_banner_2:hover,
.c_slideshow .c_banner_3:hover {
  transform: translateY(-4px);

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.c_slideshow .c_banner_1 {
  grid-area: item1;
}

.c_slideshow .c_banner_2 {
  grid-area: item2;
}

.c_slideshow .c_banner_3 {
  grid-area: item3;
}

.c_slideshow .c_banner_1 img,
.c_slideshow .c_banner_2 img,
.c_slideshow .c_banner_3 img {
  width: 100%;

  height: auto;

  display: block;
}

.c_productos_inicio {
  width: 100%;
}

.c_productos_inicio .c_titulo_pc_armados {
  width: 100%;

  text-align: center;

  font-weight: 700;

  font-size: 24px;

  color: #2c3e50;

  padding: 30px 0 20px;

  text-transform: uppercase;

  letter-spacing: 1px;
}

/* Tarjetas de Productos Modernas */

.c_separador {
  width: 100%;

  padding: 20px 0;
}

.c_productos_inicio .c_pc_destacados {
  width: 100%;
}

.c_productos_inicio .tarjeta_producto {
  float: left;

  width: calc(16.66% - 20px);

  background: #fff;

  border: 1px solid #e9ecef;

  border-radius: 12px;

  padding: 15px;

  margin: 10px;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

  position: relative;

  overflow: hidden;
}

.c_productos_inicio .tarjeta_producto:hover {
  transform: translateY(-8px);

  box-shadow: 0 12px 24px rgba(31, 41, 55, 0.2);

  border-color: #1f2937;
}

/* Badges/Stickers Modernizados */

.c_banner {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticket_descuento {
  background: linear-gradient(135deg, #ff0844 0%, #ff6b6b 100%);
  color: #fff;
  padding: 6px 12px;
  font-weight: 700;
  border-radius: 20px;
  font-size: 12px;
  box-shadow: 0 4px 8px rgba(255, 8, 68, 0.3);
  font-size: 12px;
  display: inline-block;
}

.sticket_nuevo {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  color: #fff;
  padding: 6px 12px;
  font-weight: 700;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

.sticket_destacado {
  /*background: linear-gradient(135deg, #10b981 0%, #34d399 100%);*/
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  color: #fff;
  padding: 6px 12px;
  font-weight: 700;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

.sticket_agotado {
  background: linear-gradient(135deg, #94a3b8 0%, #cbd5e1 100%);
  color: #fff;
  padding: 6px 12px;
  font-weight: 700;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
  box-shadow: 0 4px 8px rgba(148, 163, 184, 0.3);
}

.c_galeria > .c_banner .sticket_descuento,
.c_galeria > .c_banner .sticket_nuevo,
.c_galeria > .c_banner .sticket_destacado,
.c_galeria > .c_banner .sticket_agotado {
  font-size: 16px;
  padding: 8px 16px;
}

.c_productos_inicio .tarjeta_producto a {
  text-decoration: none;
}

.c_productos_inicio .tarjeta_producto a:hover {
  text-decoration: none;
}

.c_productos_inicio .tarjeta_producto .c_img {
  width: 100%;

  aspect-ratio: 1 / 1;

  border-radius: 8px;

  overflow: hidden;

  display: flex;

  justify-content: center;

  align-items: center;

  background: #f8f9fa;

  margin-bottom: 12px;
}

.c_productos_inicio .tarjeta_producto .c_img img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  transition: transform 0.3s ease;
}

.c_productos_inicio .tarjeta_producto:hover .c_img img {
  transform: scale(1.05);
}

.c_productos_inicio .tarjeta_producto .c_info {
  background: transparent;

  padding: 0;
}

.c_productos_inicio .tarjeta_producto .c_info .c_categoria {
  font-size: 11px;

  color: #1f2937;

  text-transform: uppercase;

  font-weight: 600;

  letter-spacing: 0.5px;

  margin-bottom: 6px;
}

.c_productos_inicio .tarjeta_producto .c_info .c_texto {
  color: #2c3e50;

  font-weight: 600;

  font-size: 14px;

  line-height: 1.4;

  margin-bottom: 12px;

  height: 2.8em;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2;

  overflow: hidden;
}

.c_productos_inicio .tarjeta_producto .c_info .c_valor {
  color: #1e293b;

  font-weight: 700;

  font-size: 20px;

  margin-bottom: 8px;
}

.c_productos_inicio .tarjeta_producto .c_info .tachado {
  color: #94a3b8;

  font-size: 14px;

  font-weight: 500;

  text-decoration: line-through;

  margin-bottom: 8px;
}

.c_productos_inicio .tarjeta_producto .c_btn {
  padding: 0;

  margin-top: 12px;
}

.c_productos_inicio .tarjeta_producto .c_btn .btn_producto {
  width: 100%;

  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);

  color: #fff;

  border: none;

  padding: 10px;

  border-radius: 8px;

  font-weight: 600;

  font-size: 14px;

  transition: all 0.3s ease;

  cursor: pointer;
}

.c_productos_inicio .tarjeta_producto .c_btn .btn_producto:hover {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);

  transform: translateY(-2px);

  box-shadow: 0 4px 12px rgba(31, 41, 55, 0.5);
}

/* fin productos modernas */

/* inicio derecho */

.c_prod_derecho {
  float: left;
  width: 100%;
  margin-top: 1%;
  margin-bottom: 1%;
}

.c_prod_derecho .c_img_seccion_tarjetas {
  float: left;
  width: 25%;
  padding-top: 2%;
}

.c_prod_derecho .c_img_seccion_tarjetas a {
  text-decoration: none;
}

.c_prod_derecho .c_img_seccion_tarjetas a:hover {
  text-decoration: none;
}

.c_prod_derecho .c_img_seccion_tarjetas a img {
  width: 100%;
  padding: 3%;
}

.c_prod_derecho .c_productos {
  float: right;
  width: 73%;
}

.c_prod_derecho .c_productos .tarjeta_producto {
  float: left;
  width: 18.3%;
  height: 360px;
  border: solid 1px rgb(116, 115, 115, 0.5);
  vertical-align: top;
  padding: 1%;
  padding-bottom: 2%;
  margin: 1% 1%;
  border-radius: 5px;
  box-shadow:
    0 3px 6px -4px rgba(0, 0, 0, 0.16),
    0 3px 6px rgba(0, 0, 0, 0.23);
  position: relative;
}

.c_prod_derecho .c_productos .tarjeta_producto:hover {
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background-color 0.3s,
    color 0.3s,
    opacity 0.3s,
    margin 0.3s;

  top: -2px;

  box-shadow:
    8px 8px 7px rgba(0, 0, 0, 0.16),
    0px 8px 8px rgba(0, 0, 0, 0.23);
}

.c_prod_derecho .c_productos .tarjeta_producto a {
  text-decoration: none;
}

.c_prod_derecho .c_productos .tarjeta_producto a:hover {
  text-decoration: none;
}

.c_prod_derecho .c_productos .tarjeta_producto .c_img {
  float: none;

  /*vertical-align: top;*/

  /*white-space: normal;*/

  width: 100%;

  height: 180px;

  border-radius: 10px;

  overflow: hidden;

  display: flex;

  justify-content: center;

  align-items: center;

  flex-direction: column;

  /*background: #f8f9fa;*/
}

.c_prod_derecho .c_productos .tarjeta_producto .c_img img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  object-position: center;
}

.c_prod_derecho .c_productos .tarjeta_producto .c_info {
  background: transparent;

  padding: 8px 8px 12px;
}

.c_prod_derecho .c_productos .tarjeta_producto .c_info .c_categoria {
  width: 100%;

  color: #032933;

  margin-bottom: 2%;

  font-size: 12px;

  overflow: hidden;

  text-overflow: ellipsis;

  white-space: nowrap;
}

.c_prod_derecho .c_productos .tarjeta_producto .c_info .c_texto {
  width: 100%;

  color: #605f5f;

  font-weight: 700;

  overflow: hidden;

  margin-bottom: 4%;

  font-size: 13px;

  /* Colocarmos los 3 puntos al final dell texto y lo demas lo ocultamos. */

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 3;
}

.c_prod_derecho .c_productos .tarjeta_producto .c_info .c_valor {
  width: 100%;

  color: #1b1c1c;

  font-weight: 700;

  font-size: 18px;

  text-align: center;
}

.c_prod_derecho .c_productos .tarjeta_producto .c_info .tachado {
  /*color: #aaa;*/

  color: #747373;

  font-size: 15px;

  font-weight: 400;

  text-decoration: line-through;

  text-align: center;
}

.c_prod_derecho .c_productos .tarjeta_producto .c_info .c_valor .porsentaje {
  width: 100%;

  color: #747373;

  font-size: 15px;

  text-align: center;
}

.c_prod_derecho .c_productos .tarjeta_producto .c_btn {
  width: 100%;

  padding: 8px 8px;
}

.c_prod_derecho .c_productos .tarjeta_producto .c_btn .btn_producto {
  width: 100%;
}

/* fin incio derecho */

/* inicio izquierdo */

.c_prod_izquierdo {
  float: left;
  width: 100%;
  margin-top: 1%;
  margin-bottom: 1%;
}

.c_prod_izquierdo .c_img_seccion_tarjetas {
  float: right;
  width: 25%;
  padding-top: 2%;
}

.c_prod_izquierdo .c_img_seccion_tarjetas a {
  text-decoration: none;
}

.c_prod_izquierdo .c_img_seccion_tarjetas a:hover {
  text-decoration: none;
}

.c_prod_izquierdo .c_img_seccion_tarjetas a img {
  width: 100%;
  padding: 3%;
}

.c_prod_izquierdo .c_productos {
  float: right;

  width: 73%;
}

.c_prod_izquierdo .c_productos .tarjeta_producto {
  float: left;

  width: 18.3%;

  height: 360px;

  border: solid 1px rgb(116, 115, 115, 0.5);

  vertical-align: top;

  padding: 1%;

  padding-bottom: 2%;

  margin: 1% 1%;

  border-radius: 5px;

  box-shadow:
    0 3px 6px -4px rgba(0, 0, 0, 0.16),
    0 3px 6px rgba(0, 0, 0, 0.23);

  position: relative;
}

.c_prod_izquierdo .c_productos .tarjeta_producto:hover {
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background-color 0.3s,
    color 0.3s,
    opacity 0.3s,
    margin 0.3s;

  top: -2px;

  box-shadow:
    8px 8px 7px rgba(0, 0, 0, 0.16),
    0px 8px 8px rgba(0, 0, 0, 0.23);
}

.c_prod_izquierdo .c_productos .tarjeta_producto a {
  text-decoration: none;
}

.c_prod_izquierdo .c_productos .tarjeta_producto a:hover {
  text-decoration: none;
}

.c_prod_izquierdo .c_productos .tarjeta_producto .c_img {
  float: none;

  /*vertical-align: top;*/

  /*white-space: normal;*/

  width: 100%;

  height: 180px;

  border-radius: 10px;

  overflow: hidden;

  display: flex;

  justify-content: center;

  align-items: center;

  flex-direction: column;

  /*background: #f8f9fa;*/
}

.c_prod_izquierdo .c_productos .tarjeta_producto .c_img img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  object-position: center;
}

.c_prod_izquierdo .c_productos .tarjeta_producto .c_info {
  background: transparent;

  padding: 8px 8px 12px;
}

.c_prod_izquierdo .c_productos .tarjeta_producto .c_info .c_categoria {
  width: 100%;

  color: #032933;

  margin-bottom: 2%;

  font-size: 12px;

  overflow: hidden;

  text-overflow: ellipsis;

  white-space: nowrap;
}

.c_prod_izquierdo .c_productos .tarjeta_producto .c_info .c_texto {
  width: 100%;

  color: #605f5f;

  font-weight: 700;

  overflow: hidden;

  margin-bottom: 4%;

  font-size: 13px;

  /* Colocarmos los 3 puntos al final dell texto y lo demas lo ocultamos. */

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 3;
}

.c_prod_izquierdo .c_productos .tarjeta_producto .c_info .c_valor {
  width: 100%;

  color: #1b1c1c;

  font-weight: 700;

  font-size: 18px;

  text-align: center;
}

.c_prod_izquierdo .c_productos .tarjeta_producto .c_info .tachado {
  /*color: #aaa;*/

  color: #747373;

  font-size: 15px;

  font-weight: 400;

  text-decoration: line-through;

  text-align: center;
}

.c_prod_izquierdo .c_productos .tarjeta_producto .c_info .c_valor .porsentaje {
  width: 100%;

  color: #747373;

  font-size: 15px;

  text-align: center;
}

.c_prod_izquierdo .c_productos .tarjeta_producto .c_btn {
  width: 100%;

  padding: 8px 8px;
}

.c_prod_izquierdo .c_productos .tarjeta_producto .c_btn .btn_producto {
  width: 100%;
}

/* fin incio izquierdo */

/* Footer Modernizado */

.c_footer {
  flex-shrink: 0;

  width: 100%;

  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);

  color: #e2e8f0;

  /*margin-top: 60px;*/
}

.c_linea-1 {
  display: none;
}

.c_footer-1 {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 40px;

  padding: 60px 40px;

  max-width: 1400px;

  margin: 0 auto;
}

.c_footer-1 .c_logo {
  display: flex;

  flex-direction: column;

  align-items: flex-start;
}

.c_footer-1 .c_logo img {
  max-width: 200px;

  margin-bottom: 20px;

  filter: brightness(1.2);
}

.c_footer-1 .c_link_interes,
.c_footer-1 .c_contacto {
  padding: 0;
}

.c_footer-1 .titulo {
  font-weight: 700;

  font-size: 18px;

  color: #fff;

  text-transform: uppercase;

  letter-spacing: 1px;

  margin-bottom: 20px;

  position: relative;

  padding-bottom: 15px;
}

.c_footer-1 .titulo::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 50px;

  height: 3px;

  background: linear-gradient(90deg, #1f2937 0%, #111827 100%);

  border-radius: 2px;
}

.c_footer-1 .c_barra {
  display: none;
}

.c_footer-1 .menu_link_interes {
  width: 100%;

  margin-top: 0;
}

.c_footer-1 .menu_link_interes ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.c_footer-1 .menu_link_interes li {
  margin-bottom: 12px;
}

.c_footer-1 .menu_link_interes a {
  display: flex;

  align-items: center;

  padding: 8px 0;

  text-decoration: none;

  color: #cbd5e1;

  font-size: 15px;

  font-weight: 500;

  transition: all 0.3s ease;
}

.c_footer-1 .menu_link_interes a span {
  margin-right: 10px;

  font-size: 18px;

  color: #6b7280;
}

.c_footer-1 .menu_link_interes a:hover {
  color: #fff;

  padding-left: 8px;
}

.c_copy {
  width: 100%;

  background: #0f172a;

  padding: 25px 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.c_copy .c_texto_copy {
  text-align: center;

  color: #94a3b8;

  font-weight: 500;

  font-size: 14px;

  margin: 0;
}

/* Fin footer modernizado */

/* Detalle de producto modernizado */

.c_detalle_producto {
  float: left;

  width: 100%;

  margin: 20px 0;
}

.c_detalle_producto .c_img_p {
  float: left;

  width: 58%;

  padding-right: 20px;
}

.c_detalle_producto .c_img_p .c_galeria {
  position: relative;

  float: left;

  width: 100%;
}

.c_detalle_producto .c_img_p .c_galeria .carousel {
  background: #fafafa;

  margin-bottom: 2%;

  max-width: 700px;

  max-height: 700px;

  width: 100%;

  height: 100%;
}

.c_detalle_producto .c_img_p .c_galeria .carousel-cell {
  width: 100%;

  max-width: 700px;

  max-height: 700px;
}

.c_detalle_producto .c_img_p .c_galeria .carousel-cell img {
  object-fit: cover;

  width: 100%;

  height: 100%;

  background-size: cover; /* Ajusta la imagen para cubrir todo el div */

  background-position: center; /* Centra la imagen en el div */
}

.c_detalle_producto .c_img_p .c_galeria .carousel-nav .carousel-cell {
  height: 100px;

  width: 100px;

  padding: 3px;
}

.c_detalle_producto .c_img_p .c_galeria .carousel-nav .carousel-cell:before {
  font-size: 50px;

  line-height: 80px;
}

.c_detalle_producto
  .c_img_p
  .c_galeria
  .carousel-nav
  .carousel-cell.is-nav-selected {
  background: #a39e9e;

  border-radius: 5px;
}

.c_detalle_producto .c_info2 {
  float: right;

  width: 42%;

  padding: 0 20px;

  background: #fff;

  border-radius: 16px;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

  border: 1px solid #e9ecef;

  padding: 30px;

  height: auto;

  min-height: fit-content;
}

.c_detalle_producto .c_info2::after {
  content: "";

  display: table;

  clear: both;
}

.c_detalle_producto .c_info2 .c_titulo {
  float: left;

  width: 100%;

  font-size: 28px;

  font-weight: 700;

  color: #1e293b;

  margin-bottom: 10px;

  line-height: 1.3;
}

.c_detalle_producto .c_info2 .c_barra {
  float: left;

  width: 100%;

  margin-bottom: 20px;
}

.c_detalle_producto .c_info2 .c_barra .barra {
  display: block;

  height: 4px;

  margin: 10px 0;

  max-width: 60px;

  width: 100%;

  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);

  border-radius: 2px;
}

.c_detalle_producto .c_info2 .c_valores {
  float: left;

  width: 100%;

  margin: 20px 0;

  padding: 20px;

  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);

  border-radius: 12px;

  border: 1px solid #e2e8f0;
}

.c_detalle_producto .c_info2 .c_valores .texto_valor {
  float: left;

  width: auto;

  max-width: 70%;

  color: #1f2937;

  font-weight: 700;

  font-size: 32px;

  text-align: left;

  margin-bottom: 8px;
}

.c_detalle_producto .c_info2 .c_valores .texto_valor_descuento {
  float: left;

  width: auto;

  max-width: 50%;

  font-size: 30px;

  text-align: center;

  text-decoration: line-through;

  font-weight: 400;

  margin-right: 0.3em;

  opacity: 0.6;

  color: #111;

  white-space: nowrap;
}

.c_detalle_producto .c_info2 .c_valores .texto_leyenda_pago {
  float: left;

  width: 100%;

  color: #64748b;

  font-size: 14px;

  font-weight: 600;

  display: flex;

  align-items: center;

  gap: 6px;
}

.c_detalle_producto .c_info2 .c_valores_credito .texto_valor {
  float: left;

  width: 100%;

  font-weight: 700;

  font-size: 28px;

  text-align: left;

  margin-bottom: 8px;

  color: #059669;
}

.c_detalle_producto .c_info2 .c_valores_credito .texto_leyenda_pago {
  float: left;

  width: 100%;

  color: #047857;

  font-size: 14px;

  font-weight: 600;

  display: flex;

  align-items: center;

  gap: 6px;
}

.c_detalle_producto .c_info2 .c_stock {
  float: left;

  width: 100%;

  margin: 20px 0;

  padding: 16px;

  background: #fef3c7;

  border-radius: 12px;

  border: 1px solid #fbbf24;
}

.c_detalle_producto .c_info2 .c_stock .texto_titulo {
  float: left;

  width: 100%;

  font-size: 18px;

  color: #d97706;

  font-weight: 700;

  margin-bottom: 5px;

  display: flex;

  align-items: center;

  gap: 6px;
}

.c_detalle_producto .c_info2 .c_stock .texto_stock {
  float: left;

  width: 100%;

  font-size: 16px;

  color: #16a34a;

  font-weight: 600;
}

.c_detalle_producto .c_info2 .c_stock .texto_a_pedido {
  float: left;

  width: 100%;

  font-size: 14px;

  font-style: italic;

  color: #5f5f5f;

  font-weight: 600;

  text-transform: initial;
}

.c_detalle_producto .c_info2 .c_stock .texto_a_pedido strong {
  color: #ff0000;

  font-weight: 600;
}

.c_detalle_producto .c_info2 .c_btn_add_carro {
  float: left;

  width: 100%;

  margin: 25px 0;

  padding: 20px;

  border: 2px dashed #d1d5db;

  border-radius: 12px;

  background: #f9fafb;
}

.c_detalle_producto .c_info2 .c_btn_add_carro .c_cantidad {
  float: left;

  width: 100%;

  margin-bottom: 15px;
}

.c_detalle_producto .c_info2 .c_btn_add_carro .cantidad_label {
  display: block;

  font-weight: 600;

  color: #374151;

  margin-bottom: 8px;

  font-size: 14px;
}

.c_detalle_producto .c_info2 .c_btn_add_carro .c_cantidad .input-group {
  max-width: 120px;
}

.c_detalle_producto .c_info2 .c_btn_add_carro .c_btn_add {
  float: left;

  width: 100%;
}

.c_detalle_producto .c_info2 .c_btn_add_carro .c_btn_add .btn_add {
  font-weight: 600;

  width: 100%;

  padding: 12px 20px;

  font-size: 16px;

  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);

  border: none;

  border-radius: 10px;

  transition: all 0.3s ease;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;
}

.c_detalle_produto .c_info2 .c_btn_add_carro .c_btn_add .btn_add:hover {
  transform: translateY(-2px);

  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.4);
}

.c_detalle_producto .c_info2 .c_texto_leyenda_1 {
  /*text-transform: capitalize; */

  float: left;

  width: 100%;

  font-size: 16px;

  font-style: italic;

  color: #5f5f5f;

  font-weight: 600;

  text-transform: initial;

  margin-top: 2%;
}

.c_detalle_producto .c_info2 .c_id {
  float: left;
  width: 100%;
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
  margin-top: 5px;
  border-top: 1px solid #e5e7eb;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.c_detalle_producto .c_info2 .c_sku {
  float: left;
  width: 100%;
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
  margin-top: 5px;
  border-top: 1px solid #e5e7eb;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.c_detalle_producto .c_info2 .c_categorias {
  float: left;
  width: 100%;
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
  margin-top: 10px;
  border-top: 1px solid #e5e7eb;
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  flex-wrap: wrap;
}

.c_detalle_producto .c_info2 .c_categorias a {
  color: #1f2937;
  text-decoration: none;
  background: #f3f4f6;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 2px;
}

.c_detalle_producto .c_info2 .c_categorias a:hover {
  color: #fff;
  background: #1f2937;
  text-decoration: none;
  transform: translateY(-1px);
}

.c_detalle_producto .c_info2 .c_sku .titulo {
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 4px;
}

.c_detalle_producto .c_info2 .c_categorias .titulo {
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.c_detalle_producto .c_descripcion {
  /* Tabs modernizadas */
  float: left;
  width: 100%;
  margin: 40px 0 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

#product-tabs .nav-link {
  color: #6b7280;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 16px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fa;
}

#product-tabs .nav-link.active {
  color: #1f2937;
  border-bottom-color: #1f2937;
  background: #fff;
}

#product-tabs .nav-link:hover {
  color: #1f2937;
  background: #fff;
}

.c_detalle_producto .c_descripcion .tab-content {
  padding: 0;
}

.c_detalle_producto .c_descripcion .tab-pane {
  padding: 30px;
}

.c_detalle_producto .c_descripcion h4 {
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.c_detalle_producto .c_descripcion .description-content,
.c_detalle_producto .c_descripcion .info-content {
  line-height: 1.7;
  color: #4b5563;
  font-size: 15px;
}

.c_detalle_producto .c_productos_relacionados {
  float: left;
  width: 100%;
  margin-top: 2%;
  border-top: 1px dotted #ddd;
}

.c_detalle_producto .c_productos_relacionados .titulo {
  float: left;
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  color: #6c1602;
  margin-top: 1%;
  text-transform: uppercase;
}

.c_detalle_producto .c_productos_relacionados .c_productos {
  float: left;
  width: 100%;
  margin-bottom: 2%;
}

.c_detalle_producto .c_productos_relacionados .c_productos .tarjeta_producto {
  float: left;
  width: 18.3%;
  border: solid 1px rgb(116, 115, 115, 0.5);
  vertical-align: top;
  padding: 1%;
  padding-bottom: 2%;
  margin: 1% 1%;
  border-radius: 5px;
  position: relative;
  box-shadow:
    0 3px 6px -4px rgba(0, 0, 0, 0.16),
    0 3px 6px rgba(0, 0, 0, 0.23);
}

.c_detalle_producto
  .c_productos_relacionados
  .c_productos
  .tarjeta_producto:hover {
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background-color 0.3s,
    color 0.3s,
    opacity 0.3s,
    margin 0.3s;
  top: -2px;
  box-shadow:
    8px 8px 7px rgba(0, 0, 0, 0.16),
    0px 8px 8px rgba(0, 0, 0, 0.23);
}

.c_detalle_producto .c_productos_relacionados .c_productos .tarjeta_producto a {
  text-decoration: none;
}

.c_detalle_producto
  .c_productos_relacionados
  .c_productos
  .tarjeta_producto
  a:hover {
  text-decoration: none;
}

.c_detalle_producto
  .c_productos_relacionados
  .c_productos
  .tarjeta_producto
  .c_img {
  float: none;

  /*vertical-align: top;*/

  /*white-space: normal;*/

  width: 100%;

  border-radius: 10px;

  overflow: hidden;

  display: flex;

  justify-content: center;

  flex-direction: column;
}

.c_detalle_producto
  .c_productos_relacionados
  .c_productos
  .tarjeta_producto
  .c_img
  img {
  width: 100%;
}

.c_detalle_producto
  .c_productos_relacionados
  .c_productos
  .tarjeta_producto
  .c_info {
  background: #fff;

  height: 120px;

  padding: 8px 8px 12px;
}

.c_detalle_producto
  .c_productos_relacionados
  .c_productos
  .tarjeta_producto
  .c_info
  .c_categoria {
  width: 100%;

  color: #032933;

  margin-bottom: 2%;

  font-size: 12px;
}

.c_detalle_producto
  .c_productos_relacionados
  .c_productos
  .tarjeta_producto
  .c_info
  .c_texto {
  width: 100%;

  color: #605f5f;

  font-weight: 700;

  height: 45px;

  overflow: hidden;

  margin-bottom: 2%;

  font-size: 16px;
}

.c_detalle_producto
  .c_productos_relacionados
  .c_productos
  .tarjeta_producto
  .c_info
  .c_valor {
  width: 100%;

  color: #1b1c1c;

  font-weight: 700;

  font-size: 18px;

  text-align: center;
}

.c_detalle_producto
  .c_productos_relacionados
  .c_productos
  .tarjeta_producto
  .c_info
  .tachado {
  /*color: #aaa;*/

  color: #747373;

  font-size: 15px;

  font-weight: 400;

  text-decoration: line-through;

  text-align: center;
}

.c_detalle_producto
  .c_productos_relacionados
  .c_productos
  .tarjeta_producto
  .c_info
  .c_valor
  .porsentaje {
  width: 100%;

  color: #747373;

  font-size: 15px;

  text-align: center;
}

.c_detalle_producto
  .c_productos_relacionados
  .c_productos
  .tarjeta_producto
  .c_btn {
  width: 100%;

  padding: 8px 8px;
}

.c_detalle_producto
  .c_productos_relacionados
  .c_productos
  .tarjeta_producto
  .c_btn
  .btn_producto {
  width: 100%;
}

.c_detalle_producto .c_descripcion .nav-tabs .nav-link {
  font-weight: 700;

  color: #686464;
}

.c_detalle_producto .c_descripcion .nav-tabs .active {
  font-weight: 700;

  color: #6c1602;
}

.c_detalle_producto .c_descripcion .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  border-top-color: #6c1602;

  border-top-width: 4px;
}

.c_detalle_producto .c_descripcion .nav-tabs .nav-link.active,
.nav-tabs {
  border-color: #6c1602;
}

.c_detalle_producto .c_descripcion .nav-tabs .nav-item:hover {
  border-color: #6c1602;
}

/* Breadcrumbs / Títulos de categoría modernizados */

.c_categoria_titulos {
  float: left;

  width: 100%;

  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);

  padding: 16px 24px;

  border-radius: 12px;

  display: flex;

  align-items: center;

  margin-bottom: 24px;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

  gap: 10px;
}

.c_categoria_titulos .titulo {
  text-decoration: none;
  color: #e2e8f0;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.c_categoria_titulos .titulo:hover {
  text-decoration: none;
  color: #fff;
  transform: translateX(2px);
}
.c_categoria_titulos .separador {
  display: inline;
  color: #94a3b8;
  font-weight: 400;
  font-size: 18px;
}

.c_categoria_titulos .titulo a {
  text-decoration: none;
  color: #e2e8f0;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.c_categoria_titulos .titulo a:hover {
  text-decoration: none;
  color: #fff;
  transform: translateX(2px);
}

.c_categoria_titulos .titulo a span {
  font-size: 16px;
}

.c_categoria_titulos .activo a {
  color: #fff;

  font-weight: 600;
}

.c_catalogo_toolbar {
  width: 100%;

  display: flex;

  justify-content: flex-end;

  margin: -4px 0 18px;
}

.c_ordenar_catalogo {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 10px 14px;

  background: #ffffff;

  border: 1px solid #e5e7eb;

  border-radius: 12px;

  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.c_ordenar_catalogo_label {
  margin: 0;

  color: #334155;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: 0.02em;

  white-space: nowrap;
}

.c_ordenar_catalogo_select {
  min-width: 220px;

  height: 40px;

  padding: 0 40px 0 14px;

  border: 1px solid #cbd5e1;

  border-radius: 10px;

  background-color: #f8fafc;

  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23475569' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='m4 6 4 4 4-4'/%3e%3c/svg%3e");

  background-repeat: no-repeat;

  background-position: right 12px center;

  background-size: 14px 14px;

  appearance: none;

  -webkit-appearance: none;

  -moz-appearance: none;

  color: #0f172a;

  font-size: 14px;

  font-weight: 500;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.c_ordenar_catalogo_select:hover {
  border-color: #94a3b8;

  background-color: #fff;
}

.c_ordenar_catalogo_select:focus {
  outline: none;
  border-color: #1f2937;
  box-shadow: 0 0 0 0.18rem rgba(31, 41, 55, 0.12);
  background-color: #fff;
}

.c_producto_cat {
  float: left;
  width: 100%;
}

.c_producto_cat .tarjeta_producto {
  float: left;
  width: 18%;
  border: solid 1px rgb(116, 115, 115, 0.5);
  vertical-align: top;
  padding: 1%;
  padding-bottom: 2%;
  margin: 1% 1%;
  border-radius: 5px;
  box-shadow:
    0 3px 6px -4px rgba(0, 0, 0, 0.16),
    0 3px 6px rgba(0, 0, 0, 0.23);
  cursor: pointer;
  position: relative;
}

.c_producto_cat .tarjeta_producto:hover {
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background-color 0.3s,
    color 0.3s,
    opacity 0.3s,
    margin 0.3s;
  top: -2px;
  box-shadow:
    8px 8px 7px rgba(0, 0, 0, 0.16),
    0px 8px 8px rgba(0, 0, 0, 0.23);
}

.c_producto_cat .tarjeta_producto a {
  text-decoration: none;
  cursor: pointer;
}

.c_producto_cat .tarjeta_producto a:hover {
  text-decoration: none;
  cursor: pointer;
}

.c_producto_cat .tarjeta_producto .c_img {
  float: none;
  width: 100%;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.c_producto_cat .tarjeta_producto .c_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.c_producto_cat .tarjeta_producto .c_info {
  background: transparent;
  height: 180px;
  padding: 8px 8px 12px;
}

.c_producto_cat .tarjeta_producto .c_info .c_categoria {
  width: 100%;
  color: #032933;
  margin-bottom: 2%;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.c_producto_cat .tarjeta_producto .c_info .c_texto {
  width: 100%;
  color: #605f5f;
  font-weight: 700;
  overflow: hidden;
  margin-bottom: 2%;
  font-size: 16px;
  /* Colocarmos los 3 puntos al final dell texto y lo demas lo ocultamos. */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.c_producto_cat .tarjeta_producto .c_info .c_valor {
  width: 100%;

  color: #1b1c1c;

  font-weight: 700;

  font-size: 18px;

  text-align: center;
}

.c_producto_cat .tarjeta_producto .c_info .tachado {
  /*color: #aaa;*/

  color: #747373;

  font-size: 15px;

  font-weight: 400;

  text-decoration: line-through;

  text-align: center;
}

.c_producto_cat .tarjeta_producto .c_info .c_valor .porsentaje {
  width: 100%;

  color: #747373;

  font-size: 15px;

  text-align: center;
}

.c_producto_cat .tarjeta_producto .c_btn {
  width: 100%;

  padding: 8px 8px 0;

  margin-top: 10px;
}

.c_producto_cat .tarjeta_producto .c_btn .btn_producto {
  width: 100%;

  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);

  color: #fff;

  border: none;

  padding: 10px;

  border-radius: 8px;

  font-weight: 600;

  font-size: 14px;

  transition: all 0.3s ease;

  cursor: pointer;

  display: block;

  text-align: center;

  text-decoration: none;
}

.c_producto_cat .tarjeta_producto .c_btn .btn_producto:hover {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);

  transform: translateY(-2px);

  box-shadow: 0 4px 12px rgba(31, 41, 55, 0.4);
}

/* Mensaje sin productos */

.c_sin_productos {
  float: left;

  width: 100%;

  text-align: center;

  padding: 60px 20px;

  background: #fff;

  border-radius: 12px;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

  margin: 30px 0;
}

.c_sin_productos .icono {
  font-size: 80px;

  color: #cbd5e1;

  margin-bottom: 20px;
}

.c_sin_productos h3 {
  font-size: 24px;

  color: #1e293b;

  margin-bottom: 10px;

  font-weight: 600;
}

.c_sin_productos p {
  font-size: 16px;

  color: #64748b;

  margin-bottom: 30px;
}

.c_sin_productos .btn_volver {
  display: inline-block;

  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);

  color: #fff;

  padding: 12px 30px;

  border-radius: 8px;

  text-decoration: none;

  font-weight: 600;

  transition: all 0.3s ease;

  box-shadow: 0 4px 12px rgba(31, 41, 55, 0.3);
}

.c_sin_productos .btn_volver:hover {
  transform: translateY(-2px);

  box-shadow: 0 6px 16px rgba(31, 41, 55, 0.4);

  text-decoration: none;
}

/* Estilos para búsqueda de productos */
.sin-resultados {
  float: left;
  width: 100%;
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin: 30px 0;
}

.sin-resultados h3 {
  font-size: 24px;
  color: #1e293b;
  margin-bottom: 10px;
  font-weight: 600;
}

.sin-resultados p {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 30px;
}

.resultado-count {
  float: left;
  width: 100%;
  padding: 15px 20px;
  background: #f8fafc;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  margin-bottom: 20px;
  color: #475569;
  font-size: 15px;
}

.resultado-count strong {
  color: #1e293b;
  font-weight: 600;
}

/* Paginación mejorada */

.c_paginacion {
  float: left;

  width: 100%;

  margin: 2% 0%;
}

.c_paginacion .pagination {
  gap: 5px;
}

.c_paginacion .page-item.disabled .page-link {
  background-color: #f8f9fa;

  border-color: #e9ecef;

  color: #6c757d;

  cursor: not-allowed;
}

.c_paginacion .page-item.active .page-link {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);

  border-color: #1f2937;

  color: #fff;

  font-weight: 600;
}

.c_paginacion .page-link {
  color: #1f2937;

  border-radius: 8px;

  padding: 8px 14px;

  transition: all 0.3s ease;

  border: 1px solid #e9ecef;
}

.c_paginacion .page-link:hover {
  background-color: #f8f9fa;

  border-color: #1f2937;

  color: #1f2937;
}

.c_paginacion .page-link span {
  font-size: 14px;
}

/* contenedor carro modernizado */

.c_carro_compra {
  float: left;

  width: 100%;

  margin-bottom: 30px;

  padding: 0 20px;
}

.c_carro_compra .c_despacho_carro {
  float: left;

  width: 100%;

  border: solid 1px #eee;

  padding: 1%;

  margin-bottom: 2%;
}

.c_carro_compra .c_despacho_carro .table {
  margin-bottom: 0px;
}

.c_carro_compra .c_despacho_carro .table tr th {
  text-align: center;
}

.c_carro_compra .c_despacho_carro .table tr td {
  text-align: left;
}

.c_carro_compra .c_despacho_carro .table tr td a {
  text-decoration: none;

  color: #000;
}

.c_carro_compra .c_despacho_carro .table tr td a:hover {
  text-decoration: none;

  color: #000;
}

.c_carro_compra .c_despacho_carro .table tr td .stock {
  margin-left: 5%;

  margin-right: 5%;
}

.c_carro_compra .c_carro_der {
  float: left;

  width: 65%;

  padding-right: 20px;
}

.c_carro_compra .c_carro_izq {
  float: left;

  width: 35%;

  padding-left: 20px;
}

.c_carro_compra .c_carro_der .c_producto_carro {
  float: left;

  width: 100%;

  background: #fff;

  border-radius: 16px;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

  border: 1px solid #e9ecef;

  padding: 0;

  overflow: hidden;
}

.c_carro_compra .c_carro_der .c_producto_carro .table {
  margin-bottom: 0px;

  border-radius: 16px;

  overflow: hidden;
}

.c_carro_compra .c_carro_der .c_producto_carro .table tr th {
  text-align: center;

  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);

  color: #fff;

  font-weight: 600;

  padding: 20px 12px;

  border: none;

  font-size: 14px;

  text-transform: uppercase;

  letter-spacing: 0.5px;
}

.c_carro_compra .c_producto_carro .table tr td {
  text-align: center;

  vertical-align: middle;

  padding: 20px 12px;

  border-bottom: 1px solid #f1f5f9;

  transition: all 0.3s ease;
}

.c_carro_compra .c_producto_carro .table tbody tr:hover td {
  background: #f8fafc;
}

.c_carro_compra .c_producto_carro .table tbody tr td img {
  width: 100%;

  max-width: 80px;

  border-radius: 8px;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

  transition: transform 0.3s ease;
}

.c_carro_compra .c_producto_carro .table tbody tr td img:hover {
  transform: scale(1.05);
}

.c_carro_compra .c_carro_der .c_producto_carro .table tr th:nth-child(1) {
  width: 50%;
}

.c_carro_compra .c_carro_der .c_producto_carro .table tr th:nth-child(2) {
  width: 15%;
}

.c_carro_compra .c_carro_der .c_producto_carro .table tr th:nth-child(3) {
  width: 15%;
}

.c_carro_compra .c_carro_der .c_producto_carro .table tr th:nth-child(4) {
  width: 20%;
}

.c_carro_compra .c_carro_der .c_producto_carro .table tr td:nth-child(1) {
  width: 5%;
}

.c_carro_compra .c_carro_der .c_producto_carro .table tr td:nth-child(2) {
  width: 10%;
}

.c_carro_compra .c_carro_der .c_producto_carro .table tr td:nth-child(3) {
  width: 35%;

  text-align: left;

  font-weight: 600;

  color: #1e293b;
}

.c_carro_compra .c_carro_der .c_producto_carro .table tr td:nth-child(4) {
  width: 15%;

  text-align: center;

  font-weight: 700;

  color: #059669;

  font-size: 16px;
}

.c_carro_compra .c_carro_der .c_producto_carro .table tr td:nth-child(5) {
  width: 18%;

  text-align: center;
}

.c_carro_compra .c_carro_der .c_producto_carro .table tr td:nth-child(5) input {
  text-align: center;
}

.c_carro_compra .c_carro_der .c_producto_carro .table tr td:nth-child(6) {
  width: 20%;

  text-align: center;

  font-weight: 700;

  color: #1f2937;

  font-size: 16px;
}

.c_carro_compra .c_carro_der .c_producto_carro .table tr td img {
  width: 100%;
}

.c_carro_compra .c_carro_der .c_producto_carro .table tr td a {
  text-decoration: none;

  color: #1f2937;

  transition: all 0.3s ease;
}

.c_carro_compra .c_carro_der .c_producto_carro .table tr td a:hover {
  text-decoration: none;

  color: #dc2626;

  transform: scale(1.1);
}

.c_carro_compra .c_carro_der .c_btn_sig {
  float: left;

  width: 100%;

  margin-top: 25px;

  padding: 20px 0;
}

.c_carro_compra .c_carro_der .c_btn_sig .btn {
  width: auto;

  padding: 12px 24px;

  font-weight: 600;

  border-radius: 10px;

  transition: all 0.3s ease;

  display: inline-flex;

  align-items: center;

  gap: 8px;
}

.c_carro_compra .c_carro_der .c_btn_sig .btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.c_carro_compra .c_carro_der .c_btn_sig .btn span {
  vertical-align: middle;
}

.c_carro_compra .c_carro_der .c_btn_sig .btn .texto {
  font-weight: 600;

  font-size: 14px;
}

.c_carro_compra .c_carro_der .c_btn_sig .btn-vaciar {
  margin-left: 2%;
}

.c_carro_compra .c_carro_izq .c_envio {
  float: left;

  width: 100%;

  background: #fff;

  border-radius: 16px;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

  border: 1px solid #e9ecef;

  padding: 30px;
}

.c_carro_compra .c_carro_izq .c_envio .leyenda1 {
  float: left;

  width: 100%;

  font-weight: 700;

  font-size: 24px;

  color: #1e293b;

  margin-bottom: 20px;

  padding-bottom: 15px;

  border-bottom: 3px solid #1f2937;

  display: flex;

  align-items: center;

  gap: 8px;
}

.c_carro_compra .c_carro_izq .c_envio .c_sub_total {
  float: left;

  width: 100%;

  padding: 15px 0;

  margin: 10px 0;

  border-bottom: 1px solid #e5e7eb;
}

.c_carro_compra .c_carro_izq .c_envio .c_sub_total .leyenda_sub_total {
  float: left;

  width: 50%;

  font-size: 16px;

  font-weight: 600;

  color: #6b7280;

  text-align: left;
}

.c_carro_compra .c_carro_izq .c_envio .c_sub_total .total_sub_total {
  float: right;

  width: 50%;

  font-size: 20px;

  font-weight: 700;

  color: #1f2937;

  text-align: right;
}

.c_carro_compra .c_carro_izq .c_envio .c_tipo_entrega {
  float: left;

  width: 100%;

  padding: 15px 0;

  margin: 10px 0;

  border-bottom: 1px solid #e5e7eb;
}

.c_carro_compra .c_carro_izq .c_envio .c_tipo_entrega .leyenda_tipo_entrega {
  float: left;

  width: 100%;

  font-size: 16px;

  font-weight: 600;

  color: #6b7280;

  margin-bottom: 5px;

  display: flex;

  align-items: center;

  gap: 6px;
}

.c_carro_compra .c_carro_izq .c_envio .c_tipo_entrega .leyenda_2_tipo_entrega {
  float: left;

  width: 100%;

  font-size: 14px;

  color: #9ca3af;

  line-height: 1.5;
}

.c_carro_compra .c_carro_izq .c_envio .c_total {
  float: left;

  width: 100%;

  padding: 20px;

  margin: 15px 0;

  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);

  border-radius: 12px;

  border: 1px solid #a7f3d0;
}

.c_carro_compra .c_carro_izq .c_envio .c_total .leyenda_total {
  float: left;

  width: 50%;

  font-size: 18px;

  font-weight: 700;

  color: #047857;

  text-align: left;

  display: flex;

  align-items: center;

  gap: 6px;
}

.c_carro_compra .c_carro_izq .c_envio .c_total .c_total_total {
  float: right;

  width: 50%;

  font-size: 24px;

  font-weight: 700;

  color: #059669;

  text-align: right;
}

.c_carro_compra .c_carro_izq .c_envio .c_btn_carro {
  float: left;

  width: 45%;

  margin: 1% 15% 0%;

  border: solid 1px #eee;

  padding: 1%;

  text-align: center;
}

.c_carro_compra .c_carro_izq .c_btn_finalizar {
  float: left;

  width: 100%;

  margin-top: 25px;

  margin-bottom: 15px;
}

.c_carro_compra .c_carro_izq .c_btn_finalizar .btn {
  width: 100%;

  padding: 15px 20px;

  font-weight: 700;

  font-size: 16px;

  border-radius: 10px;

  transition: all 0.3s ease;

  text-transform: uppercase;

  letter-spacing: 0.5px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;
}

.c_carro_compra .c_carro_izq .c_btn_finalizar .btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

.c_carro_compra .c_carro_izq .c_cupon {
  float: left;

  width: 100%;

  text-align: center;
}

.c_carro_compra .c_carro_izq .c_cupon .c_cupon_descuento {
  float: left;

  width: 100%;

  text-align: center;
}

/* Controles de cantidad en el carro */

.c_carro_compra .input-group .btn {
  border: 1px solid #d1d5db;

  background: #f8fafc;

  color: #374151;

  font-weight: 600;

  transition: all 0.2s ease;

  padding: 8px 12px;
}

.c_carro_compra .input-group .btn:hover {
  background: #1f2937;

  color: #fff;

  border-color: #1f2937;
}

.c_carro_compra .input-group .form-control {
  border: 1px solid #d1d5db;

  text-align: center;

  font-weight: 600;

  color: #374151;

  background: #fff;
}

.c_carro_compra .input-group .form-control:focus {
  border-color: #1f2937;

  box-shadow: 0 0 0 0.2rem rgba(31, 41, 55, 0.1);
}

/* Responsive para el carro */

@media (max-width: 768px) {
  .c_carro_compra .c_carro_der,
  .c_carro_compra .c_carro_izq {
    width: 100% !important;

    float: none !important;

    padding: 0 !important;

    margin-bottom: 20px;
  }

  .c_carro_compra .c_carro_der .c_producto_carro .table tr th,
  .c_carro_compra .c_carro_der .c_producto_carro .table tr td {
    padding: 12px 8px;

    font-size: 14px;
  }

  .c_carro_compra .c_producto_carro .table tbody tr td img {
    max-width: 60px;
  }

  .c_carro_compra .c_carro_der .c_btn_sig .btn {
    width: 100%;

    margin-bottom: 10px;
  }
}

/* Responsive móviles para el carro */
@media (max-width: 786px) {
  .c_carro_compra {
    padding: 0 10px;
  }

  /* Ocultar encabezados de tabla en móvil */
  .c_carro_compra .c_carro_der .c_producto_carro .table thead {
    display: none;
  }

  /* Convertir filas de tabla en bloques tipo tarjeta */
  .c_carro_compra .c_carro_der .c_producto_carro .table tbody tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .c_carro_compra .c_carro_der .c_producto_carro .table tbody tr:hover td {
    background: #fff;
  }

  /* Convertir celdas en bloques */
  .c_carro_compra .c_carro_der .c_producto_carro .table tr td {
    display: block;
    width: 100% !important;
    text-align: left !important;
    padding: 10px 15px !important;
    border: none !important;
    position: relative;
    padding-left: 45% !important;
  }

  /* Agregar etiquetas antes de cada celda */
  .c_carro_compra .c_carro_der .c_producto_carro .table tr td:before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    width: 40%;
    padding-right: 10px;
    font-weight: 600;
    color: #64748b;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
  }

  /* Celda de eliminar (primera celda) */
  .c_carro_compra .c_carro_der .c_producto_carro .table tr td:nth-child(1) {
    background: #f8fafc;
    border-bottom: 1px solid #e9ecef !important;
    text-align: right !important;
    padding: 10px 15px !important;
    padding-left: 15px !important;
  }

  .c_carro_compra .c_carro_der .c_producto_carro .table tr td:nth-child(1):before {
    content: '';
    display: none;
  }

  /* Imagen del producto */
  .c_carro_compra .c_carro_der .c_producto_carro .table tr td:nth-child(2) {
    text-align: center !important;
    padding: 15px !important;
    padding-left: 15px !important;
  }

  .c_carro_compra .c_carro_der .c_producto_carro .table tr td:nth-child(2):before {
    content: '';
    display: none;
  }

  .c_carro_compra .c_producto_carro .table tbody tr td img {
    max-width: 100px !important;
  }

  /* Nombre del producto */
  .c_carro_compra .c_carro_der .c_producto_carro .table tr td:nth-child(3) {
    font-size: 15px;
    color: #1e293b;
    font-weight: 600;
    text-align: center !important;
    padding: 10px 15px !important;
    padding-left: 15px !important;
    border-bottom: 1px solid #e9ecef !important;
  }

  .c_carro_compra .c_carro_der .c_producto_carro .table tr td:nth-child(3):before {
    content: '';
    display: none;
  }

  /* Precio */
  .c_carro_compra .c_carro_der .c_producto_carro .table tr td:nth-child(4):before {
    content: 'PRECIO:';
  }

  .c_carro_compra .c_carro_der .c_producto_carro .table tr td:nth-child(4) {
    color: #059669;
    font-size: 15px;
  }

  /* Cantidad */
  .c_carro_compra .c_carro_der .c_producto_carro .table tr td:nth-child(5):before {
    content: 'CANTIDAD:';
  }

  .c_carro_compra .c_carro_der .c_producto_carro .table tr td:nth-child(5) {
    padding-left: 45% !important;
  }

  .c_carro_compra .c_carro_der .c_producto_carro .table tr td:nth-child(5) .input-group {
    max-width: 150px;
    margin-left: auto;
  }

  /* Subtotal */
  .c_carro_compra .c_carro_der .c_producto_carro .table tr td:nth-child(6):before {
    content: 'SUB TOTAL:';
  }

  .c_carro_compra .c_carro_der .c_producto_carro .table tr td:nth-child(6) {
    color: #1f2937;
    font-size: 16px;
    font-weight: 700;
    background: #f8fafc;
  }
}

/* fin contenedor carro */

.c_finalizar_orden {
  float: left;

  width: 100%;

  padding: 0 20px;
}

.c_finalizar_orden .c_texto_orden {
  float: left;

  width: 100%;
}

.c_finalizar_orden .c_texto_orden .c_from_login {
  float: left;

  width: 100%;
}

.c_finalizar_orden .c_texto_orden .c_from_cupon {
  float: left;

  width: 100%;
}

.c_finalizar_orden .c_orden_der {
  float: left;

  width: 65%;

  padding-right: 20px;
}

.c_finalizar_orden .c_orden_izq {
  float: left;

  width: 35%;

  padding-left: 20px;
}

.c_detalle_facturacion {
  float: left;

  width: 100%;

  background: #fff;

  border-radius: 16px;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

  border: 1px solid #e9ecef;

  padding: 30px;

  margin-bottom: 20px;
}

.c_detalle_facturacion .c_titulo {
  float: left;

  width: 100%;

  margin-bottom: 25px;

  font-weight: 700;

  font-size: 24px;

  color: #1e293b;

  padding-bottom: 15px;

  border-bottom: 3px solid #1f2937;

  display: flex;

  align-items: center;

  gap: 8px;
}

.c_detalle_facturacion .datos_factura {
  display: none;
}

.c_detalle_facturacion .c_imput_tipo_doc {
  float: left;

  width: 100%;

  margin: 20px 0;

  padding: 5px 40px;

  background: #f8fafc;

  border-radius: 12px;

  border: 1px solid #e2e8f0;
}

.c_detalle_facturacion .c_imput_tipo_doc .c_tipo_doc {
  width: 50%;

  float: left;

  padding: 10px;

  margin-bottom: 10px;
}

.c_detalle_facturacion .c_imput_tipo_doc .form-check-input {
  transform: scale(1.2);

  margin-right: 10px;
}

.c_detalle_facturacion .c_imput_tipo_doc .form-check-input:checked {
  background-color: #1f2937;

  border-color: #1f2937;
}

.c_detalle_facturacion .c_imput_rut,
.c_detalle_facturacion .c_imput_nombre_rason,
.c_detalle_facturacion .c_imput_calle,
.c_detalle_facturacion .c_imput_ciudad,
.c_detalle_facturacion .c_imput_comuna,
.c_detalle_facturacion .c_imput_notas {
  float: left;

  width: 100%;

  margin-bottom: 20px;
}

.c_detalle_facturacion .c_imput_nombre {
  float: left;

  width: 49%;

  margin: 0% 1% 1% 0%;

  text-transform: initial;
}

.c_detalle_facturacion .c_imput_nombre label {
  text-transform: initial;
}

.c_detalle_facturacion .c_imput_nombre_rason {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  text-transform: initial;
}

.c_detalle_facturacion .c_imput_nombre_rason label {
  text-transform: initial;
}

.c_detalle_facturacion .c_imput_apellidos {
  float: right;

  width: 49%;

  margin: 0% 0% 1% 1%;

  text-transform: initial;
}

.c_detalle_facturacion .c_imput_apellidos label {
  text-transform: initial;
}

.c_detalle_facturacion .c_imput_telefono {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  text-transform: initial;
}

.c_detalle_facturacion .c_imput_telefono label {
  text-transform: initial;
}

.c_detalle_facturacion .c_imput_correo {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  text-transform: initial;
}

.c_detalle_facturacion .c_imput_correo label {
  text-transform: initial;
}

.c_detalle_facturacion .c_imput_calle {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  text-transform: initial;
}

.c_detalle_facturacion .c_imput_calle label {
  text-transform: initial;
}

.c_detalle_facturacion .c_imput_numero {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  text-transform: initial;
}

.c_detalle_facturacion .c_imput_numero label {
  text-transform: initial;
}

.c_detalle_facturacion .c_imput_ciudad {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  text-transform: initial;
}

.c_detalle_facturacion .c_imput_ciudad label {
  text-transform: initial;
}

.c_detalle_facturacion .c_imput_comuna {
  float: left;

  width: 100%;

  margin-bottom: 2%;
}

.c_detalle_facturacion .c_imput_comuna label {
  text-transform: initial;
}

.c_detalle_facturacion .c_imput_notas {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  text-transform: initial;
}

.c_detalle_facturacion .c_imput_notas label {
  text-transform: initial;
}

.c_detalle_facturacion .c_imput_registro {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  text-transform: initial;
}

.c_detalle_facturacion .c_imput_registro label {
  text-transform: initial;
}

.c_detalle_facturacion .c_imput_clave {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  text-transform: initial;
}

.c_detalle_facturacion .c_imput_clave label {
  text-transform: initial;
}

/* Detalle Envio */

.c_detalle_envio_direccion {
  float: left;

  width: 100%;

  /*border-top:  solid 2px #eee;*/

  padding: 1% 0%;
}

.c_detalle_envio_direccion .c_titulo {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  font-weight: 700;

  font-size: 20px;

  color: #6c1602;

  text-transform: uppercase;
}

.c_detalle_envio_direccion .c_imput_direccion_envio {
  float: left;

  width: 100%;

  margin-bottom: 2%;
}

.c_detalle_envio_direccion .c_imput_direccion_envio label {
  text-transform: initial;
}

.c_detalle_envio_direccion .datos_nueva_direccion {
  float: left;

  width: 100%;

  display: none;
}

.c_detalle_envio_direccion .datos_nueva_direccion .c_imput_calle_envio {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  text-transform: initial;
}

.c_detalle_envio_direccion .datos_nueva_direccion .c_imput_calle_envio label {
  text-transform: initial;
}

.c_detalle_envio_direccion .datos_nueva_direccion .c_imput_ciudad_envio {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  text-transform: initial;
}

.c_detalle_envio_direccion .datos_nueva_direccion .c_imput_ciudad_envio label {
  text-transform: initial;
}

.c_detalle_envio_direccion .datos_nueva_direccion .c_imput_comuna_envio {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  text-transform: initial;
}

.c_detalle_envio_direccion .datos_nueva_direccion .c_imput_comuna_envio label {
  text-transform: initial;
}

/* Fin detalle envio */

.c_detalle_orden {
  float: left;

  width: 98%;

  margin: 0% 0% 0% 2%;

  border: solid 2px #6c1602;

  padding: 1% 3%;
}

.c_detalle_orden .separador {
  float: left;

  width: 100%;

  border: solid 2px #eee;

  margin: 1% 0%;
}

.c_detalle_orden .c_titulo {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  font-weight: 700;

  font-size: 20px;

  color: #6c1602;

  text-transform: uppercase;
}

.c_detalle_orden .c_pedido {
  float: left;

  width: 100%;

  padding-bottom: 1%;
}

.c_detalle_orden .c_pedido .titulo_prodcuto {
  float: left;

  width: 70%;

  text-align: left;

  font-size: 16px;

  font-weight: 600;

  text-transform: uppercase;
}

.c_detalle_orden .c_pedido .subtotal_prodcuto {
  float: right;

  width: 30%;

  text-align: right;

  font-size: 16px;

  font-weight: 600;
}

.c_detalle_orden .c_articulos {
  float: left;

  width: 100%;

  padding: 1% 0%;
}

.c_detalle_orden .c_articulos .nombre_articulo {
  float: left;

  width: 70%;

  text-align: left;

  font-size: 14px;
}

.c_detalle_orden .c_articulos .valor_articulo {
  float: right;

  width: 30%;

  text-align: right;

  font-size: 16px;

  font-weight: 700;
}

.c_detalle_orden .c_subtotal {
  float: left;

  width: 100%;

  padding: 1% 0%;
}

.c_detalle_orden .c_subtotal .c_titulosub {
  float: left;

  width: 70%;

  text-align: left;

  font-size: 16px;

  font-weight: 600;

  text-transform: initial;

  text-transform: uppercase;
}

.c_detalle_orden .c_subtotal .c_subvalor {
  float: right;

  width: 30%;

  text-align: right;

  font-size: 16px;

  font-weight: 700;
}

.c_detalle_orden .c_detalle_envio {
  float: left;

  width: 100%;

  padding: 1% 0%;
}

.c_detalle_orden .c_detalle_envio .c_titulo_envio {
  float: left;

  width: 100%;

  text-align: left;

  font-size: 16px;

  font-weight: 600;

  text-transform: initial;

  text-transform: uppercase;
}

.c_detalle_orden .c_detalle_envio .c_check_envio {
  float: left;

  width: 100%;

  padding: 1% 0%;
}

.c_detalle_orden .c_detalle_envio .c_check_envio label {
  text-transform: initial;
}

.c_detalle_orden .c_recargo_webpay {
  float: left;

  width: 100%;

  padding: 1% 0%;
}

.c_detalle_orden .c_recargo_webpay .c_leyenda1 {
  float: left;

  width: 70%;

  text-align: left;

  font-size: 16px;

  font-weight: 600;

  text-transform: initial;
}

.c_detalle_orden .c_recargo_webpay .c_valor_webpay {
  float: right;

  width: 30%;

  text-align: right;

  font-size: 16px;

  font-weight: 700;
}

.c_detalle_orden .c_total_pedido {
  float: left;

  width: 100%;

  padding: 1% 0%;
}

.c_detalle_orden .c_total_pedido .c_leyenda_total_pedido {
  float: left;

  width: 70%;

  text-align: left;

  font-size: 16px;

  font-weight: 600;

  text-transform: initial;
}

.c_detalle_orden .c_total_pedido .c_valor_total_pedido {
  float: right;

  width: 30%;

  text-align: right;

  font-size: 16px;

  font-weight: 700;
}

/* formas de pago */

.c_detalle_orden .c_formas_de_pago {
  float: left;

  width: 100%;

  padding: 1% 0%;
}

.c_detalle_orden .c_formas_de_pago .c_tipo_de_pago {
  float: left;

  width: 100%;

  padding: 1% 0%;
}

.c_detalle_orden .c_formas_de_pago .leyenda_tipo_pago1 {
  float: left;

  width: 100%;

  padding: 1% 0%;

  text-transform: initial;
}

.c_detalle_orden .c_formas_de_pago .leyenda_tipo_pago1 strong {
  text-transform: initial;
}

.c_detalle_orden .c_formas_de_pago .leyenda_tipo_pago2 {
  float: left;

  width: 100%;

  padding: 1% 0%;

  text-transform: initial;
}

.c_detalle_orden .c_formas_de_pago .leyenda_tipo_pago2 strong {
  text-transform: initial;
}

.c_detalle_orden .c_formas_de_pago .c_tipo_de_pago label {
  text-transform: initial;

  font-size: 16px;

  font-weight: 700;
}

.c_detalle_orden .c_btn_finalizar {
  float: left;

  width: 100%;

  margin-top: 2%;

  margin-bottom: 2%;
}

.c_detalle_orden .c_btn_finalizar .btn {
  width: 100%;

  font-weight: 700;
}

.c_detalle_orden .c_leyenda_terminos_pedido {
  float: left;
  width: 100%;
  margin-top: 2%;
  margin-bottom: 2%;
  font-size: 14px;
  text-align: center;
}

.c_detalle_orden .c_leyenda_terminos_pedido a {
  color: #000000;
  font-weight: 700;
  text-decoration: none;
}

.c_detalle_orden .c_leyenda_terminos_pedido a:hover {
  text-decoration: none;
}

.c_texto_orden .c_from_login {
  float: left;

  width: 100%;

  margin: 1% 0%;
}

.c_texto_orden .c_from_login .c_leyenda_from_login {
  float: left;

  width: 100%;

  font-size: 14px;

  font-weight: 400;

  text-transform: initial;

  margin-bottom: 1%;
}

.c_texto_orden .c_from_login .c_campos_from_login {
  float: left;

  width: 50%;
}

.c_texto_orden .c_from_login .c_campos_from_login .c_imput {
  float: left;

  width: 50%;

  padding: 1%;
}

.c_texto_orden .c_from_login .c_campos_from_login .c_imput label {
  text-transform: initial;
}

.c_texto_orden .c_from_login .c_campos_from_login .c_btn_login {
  float: left;

  width: 100%;

  padding: 1% 0% 1% 1%;
}

.c_texto_orden .c_from_cupon {
  float: left;

  width: 100%;

  margin: 1% 0%;
}

.c_texto_orden .c_from_cupon .c_leyenda_from_cupon {
  float: left;

  width: 100%;

  font-size: 14px;

  font-weight: 400;

  text-transform: initial;

  margin-bottom: 1%;
}

.c_texto_orden .c_from_cupon .c_campos_from_cupon {
  float: left;

  width: 50%;
}

.c_texto_orden .c_from_cupon .c_campos_from_cupon .c_imput {
  float: left;

  width: 50%;

  padding: 1%;
}

.c_texto_orden .c_from_cupon .c_campos_from_cupon .c_imput label {
  text-transform: initial;
}

.c_texto_orden .c_from_cupon .c_campos_from_cupon .c_btn_login {
  float: left;

  width: 100%;

  padding: 1% 0% 1% 1%;
}

.c_area_cliente {
  float: left;

  width: 96%;

  margin: 1% 2%;
}

.c_area_cliente .c_leyenda_1_cliente {
  float: left;

  width: 100%;
}

.c_area_cliente .c_leyenda_1_cliente .c_titulo {
  float: left;

  width: 100%;

  font-size: 16px;

  text-transform: initial;

  text-transform: initial;
}

.c_area_cliente .c_leyenda_1_cliente .c_titulo strong {
  text-transform: initial;
}

.c_area_cliente .c_leyenda_1_cliente .c_titulo a {
  text-decoration: none;

  text-transform: initial;

  color: #000000;
}

.c_area_cliente .c_leyenda_1_cliente .c_titulo a:hover {
  text-decoration: none;

  text-transform: initial;

  color: #000000;

  font-weight: 600;
}

.c_area_cliente .c_leyenda_1_cliente .c_leyenda_2 {
  float: left;

  width: 100%;

  font-size: 16px;

  text-transform: initial;
}

/* Registro Cliente */

.c_datos_registro_cliente {
  float: left;

  width: 100%;
}

.c_datos_cliente {
  float: left;

  width: 50%;

  margin: 0% 25% 2%;
}

.c_datos_cliente .c_titulo {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  font-weight: 700;

  font-size: 20px;

  color: #6c1602;

  border-bottom: solid 2px #eee;

  padding: 1% 0%;

  text-transform: uppercase;
}

.c_datos_cliente .c_leyenda_clientes {
  float: left;

  width: 100%;

  font-size: 14px;

  text-transform: initial;

  margin-top: 2%;

  margin-bottom: 3%;
}

.c_datos_cliente .c_leyenda_clientes a {
  color: #6c1602;

  text-decoration: none;

  text-transform: initial;

  font-weight: 400;
}

.c_datos_cliente .c_leyenda_clientes a:hover {
  color: #6c1602;

  font-weight: 600;

  text-decoration: none;
}

.c_datos_cliente .c_imput_rut {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  text-transform: initial;
}

.c_datos_cliente .c_imput_rut label {
  text-transform: initial;
}

.c_datos_cliente .c_imput_nombre {
  float: left;

  width: 49%;

  margin: 0% 1% 1% 0%;

  text-transform: initial;
}

.c_datos_cliente .c_imput_nombre label {
  text-transform: initial;
}

.c_datos_cliente .c_imput_apellidos {
  float: right;

  width: 49%;

  margin: 0% 0% 1% 1%;

  text-transform: initial;
}

.c_datos_cliente .c_imput_apellidos label {
  text-transform: initial;
}

.c_datos_cliente .c_imput_telefono {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  text-transform: initial;
}

.c_datos_cliente .c_imput_telefono label {
  text-transform: initial;
}

.c_datos_cliente .c_imput_correo {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  text-transform: initial;
}

.c_datos_cliente .c_imput_correo label {
  text-transform: initial;
}

.c_datos_cliente .c_imput_clave {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  text-transform: initial;
}

.c_datos_cliente .c_imput_clave label {
  text-transform: initial;
}

.c_datos_cliente .c_imput_calle {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  text-transform: initial;
}

.c_datos_cliente .c_imput_calle label {
  text-transform: initial;
}

.c_datos_cliente .c_imput_numero {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  text-transform: initial;
}

.c_datos_cliente .c_imput_numero label {
  text-transform: initial;
}

.c_datos_cliente .c_imput_ciudad {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  text-transform: initial;
}

.c_datos_cliente .c_imput_ciudad label {
  text-transform: initial;
}

.c_datos_cliente .c_imput_comuna {
  float: left;

  width: 100%;

  margin-bottom: 1%;
}

.c_datos_cliente .c_imput_comuna label {
  text-transform: initial;
}

.c_datos_cliente .c_btn {
  float: left;

  width: 100%;

  text-align: center;

  margin-top: 2%;
}

.c_datos_cliente .c_leyenda_terminos {
  float: left;

  width: 100%;

  font-size: 14px;

  text-transform: initial;

  margin-bottom: 2%;

  margin-top: 2%;

  text-align: center;
}

.c_datos_cliente .c_leyenda_terminos a {
  color: #6c1602;

  text-decoration: none;

  text-transform: initial;

  font-weight: 400;
}

.c_datos_cliente .c_leyenda_terminos a:hover {
  color: #6c1602;

  font-weight: 600;

  text-decoration: none;
}

/* Fin Registro Cliente */

/* Login Cliente */

.c_datos_login_cliente {
  float: left;

  width: 100%;
}

.c_datos_login {
  float: left;

  width: 50%;

  margin: 0% 25% 2%;
}

.c_datos_login .c_titulo {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  font-weight: 700;

  font-size: 20px;

  color: #6c1602;

  border-bottom: solid 2px #eee;

  padding: 1% 0%;

  text-transform: uppercase;
}

.c_datos_login .c_leyenda_login {
  float: left;

  width: 100%;

  font-size: 14px;

  text-transform: initial;

  margin-bottom: 2%;
}

.c_datos_login .c_leyenda_login a {
  color: #6c1602;

  text-decoration: none;

  text-transform: initial;

  font-weight: 400;
}

.c_datos_login .c_leyenda_login a:hover {
  color: #6c1602;

  font-weight: 600;

  text-decoration: none;
}

.c_datos_login .c_imput_correo {
  float: left;

  width: 100%;

  margin-bottom: 2%;

  text-transform: initial;
}

.c_datos_login .c_imput_correo label {
  text-transform: initial;
}

.c_datos_login .c_imput_clave {
  float: left;

  width: 100%;

  margin-bottom: 2%;

  text-transform: initial;
}

.c_datos_login .c_imput_clave label {
  text-transform: initial;
}

.c_datos_login .c_btn {
  float: left;

  width: 100%;

  text-align: center;

  margin-top: 2%;
}

/* Fin Login Cliente */

/*  Ver orden de compra  Cliente */

.c_area_cliente .c_detalle_pedido {
  float: left;

  width: 100%;
}

.c_area_cliente .c_detalle_pedido .titulo {
  float: left;

  width: 100%;

  margin-top: 2%;

  font-weight: 700;

  font-size: 20px;

  color: #565353;

  text-transform: uppercase;
}

.c_area_cliente .c_detalle_pedido .c_barra {
  float: left;

  width: 100%;
}

.c_area_cliente .c_detalle_pedido .c_barra .barra {
  display: block;

  height: 3px;

  margin: 1% 0;

  max-width: 30px;

  width: 100%;

  background-color: #6c1602;
}

.c_area_cliente .c_detalle_pedido .c_detalle_pedido_cliente {
  float: left;

  width: 100%;
}

.c_area_cliente .c_detalle_pedido .c_detalle_pedido_cliente_total {
  float: right;

  width: 30%;
}

.c_area_cliente .c_detalle_pedido .c_detalle_pedido_cliente_total table tr td {
  text-align: center;
}

.c_area_cliente .c_detalle_pedido .c_linea-1 {
  float: left;

  width: 100%;
}

.c_area_cliente .c_detalle_pedido .c_detalle_y_factura {
  float: left;

  width: 100%;
}

.c_area_cliente .c_detalle_pedido .c_detalle_y_factura .c_datos_factura {
  float: left;

  width: 25%;

  padding: 1%;
}

.c_area_cliente
  .c_detalle_pedido
  .c_detalle_y_factura
  .c_datos_factura
  .titulo {
  float: left;

  width: 100%;

  font-weight: 700;

  font-size: 16px;

  color: #565353;

  text-transform: uppercase;
}

.c_area_cliente
  .c_detalle_pedido
  .c_detalle_y_factura
  .c_datos_factura
  .c_barra {
  float: left;

  width: 100%;
}

.c_area_cliente
  .c_detalle_pedido
  .c_detalle_y_factura
  .c_datos_factura
  .c_barra
  .barra {
  display: block;

  height: 3px;

  margin: 1% 0;

  max-width: 30px;

  width: 100%;

  background-color: #6c1602;
}

.c_area_cliente
  .c_detalle_pedido
  .c_detalle_y_factura
  .c_datos_factura
  .c_texto {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  font-size: 14px;
}

.c_area_cliente
  .c_detalle_pedido
  .c_detalle_y_factura
  .c_datos_factura
  .c_descargar {
  float: left;

  width: 100%;

  margin: 2% 0%;
}

.c_area_cliente .c_detalle_pedido .c_detalle_y_factura .c_datos_envio {
  float: left;

  width: 25%;

  padding: 1%;
}

.c_area_cliente .c_detalle_pedido .c_detalle_y_factura .c_datos_envio .titulo {
  float: left;

  width: 100%;

  font-weight: 700;

  font-size: 16px;

  color: #565353;

  text-transform: uppercase;
}

.c_area_cliente .c_detalle_pedido .c_detalle_y_factura .c_datos_envio .c_barra {
  float: left;

  width: 100%;
}

.c_area_cliente
  .c_detalle_pedido
  .c_detalle_y_factura
  .c_datos_envio
  .c_barra
  .barra {
  display: block;

  height: 3px;

  margin: 1% 0;

  max-width: 30px;

  width: 100%;

  background-color: #6c1602;
}

.c_area_cliente .c_detalle_pedido .c_detalle_y_factura .c_datos_envio .c_texto {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  font-size: 14px;
}

.c_area_cliente .c_detalle_pedido .c_detalle_y_factura .c_estado_pago {
  float: right;

  width: 25%;

  padding: 1%;
}

.c_area_cliente .c_detalle_pedido .c_detalle_y_factura .c_estado_pago .titulo {
  float: left;

  width: 100%;

  margin-bottom: 2%;

  font-weight: 700;

  font-size: 16px;

  color: #565353;

  text-transform: uppercase;
}

/* El texto en diagonal */

.c_area_cliente
  .c_detalle_pedido
  .c_detalle_y_factura
  .c_estado_pago
  .texto_estado_pago {
  float: left;

  margin: 30% 0% 0% 50%;

  transform: translate(-50%, -50%) rotate(-30deg);

  color: green;

  font-size: 22px;

  font-weight: bold;

  text-transform: uppercase;

  border: 3px solid green;

  padding: 10px 20px;

  border-radius: 10px;

  opacity: 0.8;

  pointer-events: none; /* no interfiere con clics */
}

.c_area_cliente
  .c_detalle_pedido
  .c_detalle_y_factura
  .c_estado_pago
  .texto_estado_no_pago {
  float: left;

  width: 100%;

  text-align: center;

  margin: 30% 0% 0% 50%;

  transform: translate(-50%, -50%) rotate(-30deg);

  color: red;

  font-size: 22px;

  font-weight: bold;

  text-transform: uppercase;

  border: 3px solid red;

  padding: 10px 20px;

  border-radius: 10px;

  opacity: 0.8;

  pointer-events: none; /* no interfiere con clics */
}

.c_area_cliente
  .c_detalle_pedido
  .c_detalle_y_factura
  .c_estado_pago
  .texto_estado_cancelado {
  float: left;

  margin: 30% 0% 0% 50%;

  transform: translate(-50%, -50%) rotate(-30deg);

  color: rgba(118, 118, 118, 0.584);

  font-size: 22px;

  font-weight: bold;

  text-transform: uppercase;

  border: 3px solid rgba(118, 118, 118, 0.584);

  padding: 10px 20px;

  border-radius: 10px;

  opacity: 0.8;

  pointer-events: none; /* no interfiere con clics */
}

.c_area_cliente .c_detalle_pedido .c_detalle_y_factura .c_btn_pago {
  float: left;

  width: 25%;

  padding: 1%;
}

.c_area_cliente .c_detalle_pedido .c_detalle_y_factura .c_btn_pago .titulo {
  float: left;

  width: 100%;

  font-weight: 700;

  font-size: 16px;

  color: #565353;

  text-transform: uppercase;

  margin-bottom: 2%;
}

.c_area_cliente
  .c_detalle_pedido
  .c_detalle_y_factura
  .c_btn_pago
  .texto_leyenda_fpago {
  float: left;

  width: 100%;

  font-size: 12px;

  margin: 2% 0%;
}

.c_area_cliente .c_detalle_pedido .c_detalle_y_factura .c_btn_pago .btn_pago {
  float: left;

  width: 100%;

  font-size: 12px;

  margin: 2% 0%;
}

.c_area_cliente
  .c_detalle_pedido
  .c_detalle_y_factura
  .c_btn_pago
  .btn_pago
  .c_btn_forma_pago {
  float: left;

  width: 100%;
}

.c_area_cliente
  .c_detalle_pedido
  .c_detalle_y_factura
  .c_btn_pago
  .btn_pago
  .c_btn_forma_pago
  img {
  text-align: center;

  width: 50%;

  padding: 2%;
}

.c_area_cliente
  .c_detalle_pedido
  .c_detalle_y_factura
  .c_btn_pago
  .btn_pago
  .c_btn_forma_pago
  .leyenda1 {
  float: left;

  width: 90%;

  padding: 2%;

  text-align: center;

  font-size: 16px;
}

.c_area_cliente
  .c_detalle_pedido
  .c_detalle_y_factura
  .c_btn_pago
  .c_select_fpago {
  float: left;

  width: 100%;

  font-size: 12px;

  margin-bottom: 2%;
}

.c_area_cliente
  .c_detalle_pedido
  .c_detalle_y_factura
  .c_btn_pago
  .c_select_fpago
  select {
  float: left;

  width: 100%;
}

.c_area_cliente .c_detalle_pedido .c_detalle_transaciones {
  float: left;

  width: 100%;
}

/* Lista de ordenes */

.c_area_cliente .c_lista_pedido {
  float: left;

  width: 100%;

  margin-top: 2%;
}

.c_area_cliente .c_lista_pedido .titulo {
  float: left;

  width: 100%;

  margin-top: 2%;

  font-weight: 700;

  font-size: 20px;

  color: #565353;

  text-transform: uppercase;
}

.c_area_cliente .c_lista_pedido .c_barra {
  float: left;

  width: 100%;
}

.c_area_cliente .c_lista_pedido .c_barra .barra {
  display: block;

  height: 3px;

  margin: 1% 0;

  max-width: 30px;

  width: 100%;

  background-color: #6c1602;
}

.c_area_cliente .c_detalle_pedido_cliente {
  float: left;

  width: 100%;
}

/* Lista de direcciones */

.c_area_cliente .c_lista_direcciones {
  float: left;

  width: 100%;
}

.c_area_cliente .c_lista_direcciones .titulo {
  float: left;

  width: 100%;

  margin-top: 2%;

  font-weight: 700;

  font-size: 20px;

  color: #565353;

  text-transform: uppercase;
}

.c_area_cliente .c_lista_direcciones .c_barra {
  float: left;

  width: 100%;
}

.c_area_cliente .c_lista_direcciones .c_barra .barra {
  display: block;

  height: 3px;

  margin: 1% 0;

  max-width: 30px;

  width: 100%;

  background-color: #6c1602;
}

.c_area_cliente .c_lista_direcciones .c_detalle_direcciones {
  float: left;

  width: 100%;
}

/* Comprobante pago  */

.c_datos_detalle_pago {
  float: left;

  width: 96%;

  margin: 1% 2%;
}

.c_datos_detalle_pago .c_datos_detalle_pago_contenido {
  float: left;

  width: 50%;

  margin: 0% 25%;
}

.c_datos_detalle_pago .c_datos_detalle_pago_contenido .c_titulo {
  float: left;

  width: 100%;

  margin-bottom: 1%;

  font-weight: 700;

  font-size: 20px;

  color: #6c1602;

  border-bottom: solid 2px #eee;

  padding: 1% 0%;

  text-transform: uppercase;
}

.c_datos_detalle_pago .c_datos_detalle_pago_contenido .c_btn {
  float: left;

  width: 100%;

  text-align: center;
}

.c_datos_detalle_pago .c_datos_detalle_pago_contenido .c_detalle_pago {
  float: left;

  width: 100%;

  margin-top: 2%;

  margin-bottom: 2%;
}

.c_datos_detalle_pago .c_datos_detalle_pago_contenido .leyenda_pago_2 {
  float: left;

  width: 100%;

  margin-top: 2%;

  margin-bottom: 2%;

  font-size: 14px;

  text-align: center;
}

/* Fin Comprobante de pago */

/**************************************/

/****    Diseño para Tablet 768  *****/

/**************************************/

@media screen and (max-width: 800px) {
  .c_nav .c_carro a span {
    text-align: right;
    margin-top: 2%;
    }

  .c_nav .c_carro .texto_carro_menu {
    display: none;
  }

  .c_nav .c_carro span {
    float: none;
  }

  .categoria {
    width: 50%;
    left: -50%;
  }

  .categoria.active {
    left: 0;
  }

  .c_header .c_logo {
    width: 90%;
    margin-left: 5%;
    margin-top: 4%;
  }

  .c_productos_inicio .c_titulo_pc_armados {
    width: 94%;
    font-weight: 700;
    font-size: 20px;
    padding: 2% 3%;
  }

  .c_productos_inicio .c_pc_destacados {
    float: left;
    width: 96%;
    margin: 0% 2%;
  }

  .c_productos_inicio .tarjeta_producto {
    float: left;
    width: 23%;
    border: solid 1px rgb(116, 115, 115, 0.5);
    vertical-align: top;
    padding: 1%;
    padding-bottom: 2%;
    margin: 1% 1%;
    position: relative;
  }

  .c_productos_inicio .tarjeta_producto .c_info {
    background: #fff;
    height: 140px;
    padding: 8px 8px 12px;
  }
}


/* Tablets y pantallas medianas */

@media (max-width: 1200px) {
  .c_productos_inicio .tarjeta_producto {
    width: calc(20% - 20px);
  }

  .c_footer-1 {
    grid-template-columns: repeat(2, 1fr);

    padding: 40px 30px;
  }
}

/* Tablets pequeñas */

@media (max-width: 992px) {
  .c_header {
    padding: 30px 15px;

    margin-top: 60px;
  }

  .c_nav {
    padding: 0 15px;
  }

  .categoria {
    width: 280px;

    left: -280px;
  }

  .c_productos_inicio .tarjeta_producto {
    width: calc(25% - 20px);
  }

  .c_producto_cat .tarjeta_producto {
    width: 23%;
  }
}

/* Pantallas pequeñas y móviles */

@media (max-width: 768px) {
  .c_header {
    margin-top: 50px;

    padding: 20px 10px;

    gap: 15px;
  }

  .c_header .c_logo {
    max-width: 220px;
  }

  .c_header .c_buscador {
    max-width: 100%;
  }

  .c_nav {
    flex-wrap: wrap;

    padding: 0 10px;
  }

  .c_nav nav ul {
    flex-wrap: wrap;
  }

  .c_nav nav ul li a {
    padding: 12px 16px;

    font-size: 14px;
  }

  .c_nav .c_carro a {
    padding: 8px 15px;

    font-size: 13px;
  }

  .categoria {
    width: 70%;

    left: -70%;
  }

  .c_slideshow {
    grid-template-areas:
      "slide slide"
      "slide slide"
      "item1 item2"
      "item3 item3";

    gap: 10px;
  }

  .c_productos_inicio .tarjeta_producto {
    width: calc(33.33% - 15px);

    margin: 7.5px;
  }

  .c_categoria_titulos {
    padding: 12px 16px;

    font-size: 14px;

    flex-wrap: wrap;
  }

  .c_catalogo_toolbar {
    margin-bottom: 16px;
  }

  .c_ordenar_catalogo {
    width: 100%;

    justify-content: space-between;
  }

  .c_ordenar_catalogo_select {
    min-width: 190px;
  }

  .c_categoria_titulos .titulo a {
    font-size: 14px;
  }

  .c_paginacion .page-link {
    padding: 6px 10px;

    font-size: 14px;
  }

  .c_sin_productos {
    padding: 40px 15px;
  }

  .c_sin_productos .icono {
    font-size: 60px;
  }

  .c_sin_productos h3 {
    font-size: 20px;
  }

  .c_footer-1 {
    grid-template-columns: 1fr;

    padding: 40px 20px;

    gap: 30px;
  }

  .c_footer-1 .titulo::after {
    left: 50%;

    transform: translateX(-50%);
  }

  .c_prod_derecho .c_img_seccion_tarjetas,
  .c_prod_izquierdo .c_img_seccion_tarjetas {
    width: 98%;

    padding: 1% 1%;
  }

  .c_prod_derecho .c_img_seccion_tarjetas a img,
  .c_prod_izquierdo .c_img_seccion_tarjetas a img {
    width: 100%;

    text-align: center;

    margin: 0%;

    border-radius: 5%;
  }

  .c_prod_derecho .c_productos,
  .c_prod_izquierdo .c_productos {
    width: 100%;
  }

  .c_prod_derecho .c_productos .tarjeta_producto,
  .c_prod_izquierdo .c_productos .tarjeta_producto {
    width: 30%;
  }

  .c_producto_cat .tarjeta_producto {
    width: 23%;
  }

  /* Ajustar contenedor detalle producto en tablets/móvil */

  .c_detalle_producto .c_info2 {
    height: auto;

    min-height: fit-content;

    overflow: visible;
  }
}

/* Móviles */

@media (max-width: 576px) {
  .c_header {
    margin-top: 45px;
  }

  .c_nav nav ul li a {
    padding: 10px 12px;

    font-size: 13px;
  }

  .c_nav .c_carro .texto_carro_menu {
    display: none;
  }

  .categoria {
    width: 85%;

    left: -85%;
  }

  .c_slideshow {
    grid-template-areas:
      "slide"
      "slide"
      "item1"
      "item2"
      "item3";
  }

  .c_productos_inicio .tarjeta_producto {
    width: calc(50% - 10px);

    margin: 5px;

    padding: 12px;
  }

  .c_categoria_titulos {
    padding: 10px 12px;

    gap: 6px;
  }

  .c_catalogo_toolbar {
    justify-content: stretch;

    margin-bottom: 14px;
  }

  .c_ordenar_catalogo {
    width: 100%;

    flex-direction: column;

    align-items: stretch;

    gap: 8px;

    padding: 12px;
  }

  .c_ordenar_catalogo_label {
    font-size: 12px;
  }

  .c_ordenar_catalogo_select {
    width: 100%;

    min-width: 0;

    height: 38px;

    font-size: 13px;
  }

  .c_categoria_titulos .titulo a {
    font-size: 13px;
  }

  .c_categoria_titulos .separador {
    font-size: 14px;
  }

  .c_paginacion .page-link {
    padding: 5px 8px;

    font-size: 13px;
  }

  .c_sin_productos {
    padding: 30px 10px;
  }

  .c_sin_productos .icono {
    font-size: 50px;
  }

  .c_sin_productos h3 {
    font-size: 18px;
  }

  .c_sin_productos p {
    font-size: 14px;
  }

  .c_productos_inicio .c_titulo_pc_armados {
    font-size: 20px;

    padding: 20px 10px;
  }
}

/* Móviles muy pequeños */

@media (max-width: 400px) {
  .c_productos_inicio .tarjeta_producto {
    width: 100%;

    margin: 10px 0;
  }

  .c_nav .c_carro {
    width: auto;
  }





  .categoria {
    width: 100%;

    left: -100%;
  }

  .c_prod_derecho .c_img_seccion_tarjetas,
  .c_prod_izquierdo .c_img_seccion_tarjetas {
    width: 98%;

    padding: 1% 1%;

    margin-bottom: 3%;
  }

  .c_prod_derecho .c_img_seccion_tarjetas a img,
  .c_prod_izquierdo .c_img_seccion_tarjetas a img {
    width: 100%;
    text-align: center;
    margin: 0%;
    border-radius: 5%;
  }

  .c_prod_derecho .c_productos,
  .c_prod_izquierdo .c_productos {
    width: 100%;
  }

  .c_prod_derecho .c_productos .tarjeta_producto,
  .c_prod_izquierdo .c_productos .tarjeta_producto {
    width: 48%;
  }

  .c_producto_cat .tarjeta_producto {
    width: 48%;
  }
}

/* Mejoras visuales adicionales */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }
}

@media (hover: hover) {
  .tarjeta_producto {
    cursor: pointer;
  }
}

/* ====================================
   BOTÓN FLOTANTE DE WHATSAPP
   ==================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
  color: #fff;
}

.whatsapp-float i {
  line-height: 1;
}

@keyframes pulse-whatsapp {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    transform: scale(1.05);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }
}

/* ═══════════════════════════════════════════════════════
   Navbar Horizontal de Categorías  — mismo estilo que .c_nav
   ═══════════════════════════════════════════════════════ */

/* .web solo con header, sin padding inferior */
.web.web-header-only {
  padding-bottom: 0;
}

.c_nav_horizontal {
  width: 100%;
  position: sticky;
  top: 60px;
  z-index: 1500;
}

/* Contenedor centrado igual que .web — el fondo está aquí, no en el nav */
.nav-hor-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 8px 8px;
  overflow: visible;
}

.nav-hor-inner::-webkit-scrollbar {
  display: none;
}

.nav-hor-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  overflow: visible;
}

.nav-hor-item {
  position: relative;
  flex-shrink: 0;
}

.nav-hor-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.nav-hor-item > a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 16px 24px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.nav-hor-item > a:hover {
  color: #fff;
  background: transparent;
}

.nav-hor-menu-link {
  gap: 10px !important;
}

.nav-hor-menu-link .c_iconomenu {
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

/* Ítem activo */
.nav-hor-item.active {
  background: rgba(255, 255, 255, 0.15);
}

/* Item especial: PC Retiro Inmediato */
.nav-hor-special > a {
  color: #fde68a;
}

.nav-hor-special > a i {
  margin-right: 8px;
  font-size: 16px;
}

/* Caret — igual al .caret del menú negro */
.nav-hor-caret {
  margin-left: 8px;
  font-size: 14px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.nav-hor-item.has-subnav:hover .nav-hor-caret {
  transform: rotate(180deg);
}

/* Dropdown — igual a .children del menú negro */
.nav-hor-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.nav-hor-dropdown li {
  display: block;
  border-bottom: 1px solid #f0f0f0;
}

.nav-hor-dropdown li:last-child {
  border-bottom: none;
}

.nav-hor-dropdown li a {
  display: block;
  padding: 12px 20px;
  color: #2c3e50;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  background: transparent;
  border: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-hor-dropdown li a:hover {
  background: #f8f9fa;
  color: #1f2937;
  padding-left: 20px;
}

/* Responsive: ocultar en tablets/móviles */
@media (max-width: 992px) {
  .c_nav_horizontal {
    display: none;
  }
}


/* ── Sección reseñas inicio (feedback) ────────────────────────────────── */
.fb-ref-section { background: #f8f9fb; padding: 15px 0 30px; margin-top: 5px; }

/* Título */
.fb-ref-titulo {
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: linear-gradient(90deg, #5e35b1, #1565c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.25;
}
.fb-ref-titulo .corazon { -webkit-text-fill-color: #e53935; }

.fb-ref-link {
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #5e35b1;
  text-decoration: none;
  white-space: nowrap;
}
.fb-ref-link:hover { text-decoration: underline; color: #1565c0; }

/* Banner resumen */
.fb-ref-banner {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.fb-ref-banner-brand {
  font-size: 1.1rem;
  font-weight: 900;
  color: #1a3c6e;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.fb-ref-banner-excelente { font-weight: 700; font-size: .95rem; color: #222; }
.fb-ref-banner-stars { display: flex; gap: 2px; align-items: center; }
.fb-ref-banner-rating { font-weight: 800; font-size: 1rem; color: #222; }
.fb-ref-banner-count { color: #888; font-size: .9rem; }

/* Cards */
.fb-ref-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,.055);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 240px;
  height: 100%;
}
.fb-ref-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8eeff, #dce8ff);
  color: #1565c0;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fb-ref-name { font-weight: 700; font-size: .9rem; color: #1a1a1a; line-height: 1.2; }
.fb-ref-date { font-size: .76rem; color: #aaa; }
.fb-ref-stars { display: flex; gap: 2px; }
.fb-ref-text {
  font-size: .875rem;
  color: #444;
  line-height: 1.65;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fb-ref-leer { font-size: .8rem; color: #1565c0; font-weight: 600; text-decoration: none; }
.fb-ref-leer:hover { text-decoration: underline; }
.fb-ref-producto {
  font-size: .74rem;
  font-weight: 600;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Botones de navegación */
.fb-ref-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #d0d0d0;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .15s;
  padding: 0;
  line-height: 1;
}
.fb-ref-nav-btn:hover { background: #1565c0; color: #fff; border-color: #1565c0; }

/* Badge verificado */
.fb-ref-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #1a3c6e;
  color: #fff;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: .77rem;
  font-weight: 600;
}


/* ── Estrellas interactivas ─────────────────────────────────────────── */
.fb-stars {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.fb-stars input[type="radio"] {
    display: none;
}
.fb-stars label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    color: #6c757d;
    user-select: none;
    min-width: 58px;
    text-align: center;
}
.fb-stars label .fb-star-icon {
    display: block;
    font-size: 2.1rem;
    line-height: 1;
    color: #dee2e6;
    transition: color 0.13s, transform 0.12s;
}
.fb-stars label:hover .fb-star-icon,
.fb-stars label.fb-lit .fb-star-icon {
    color: #ffc107;
    transform: scale(1.18);
}
.fb-stars label.fb-selected .fb-star-icon {
    color: #ffc107;
}
.fb-stars label.fb-selected {
    color: #0d6efd;
    font-weight: 600;
}
