@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;
	max-width: 1400px;
	width: 100%;
	flex: 1;
}

/* Header Modernizado */
.c_header{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 40px 20px;
	margin-top: 60px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.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{
	flex: 1;
	margin-left: 40px;
	max-width: 400px;
}
/* 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_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_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%;
}

.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%;
	margin: 5%;
}

.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,.16), 0 3px 6px rgba(0,0,0,.23);
	position: relative;
}

.c_prod_derecho .c_productos .tarjeta_producto:hover{
	
	transition:transform .3s,box-shadow .3s,background-color .3s,color .3s,opacity .3s,margin .3s;
	
	top: -2px;
	
	box-shadow: 8px 8px 7px rgba(0,0,0,.16),0px 8px 8px rgba(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%;
}

.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%;
	margin: 5%;
}

.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,.16), 0 3px 6px rgba(0,0,0,.23);
	position: relative;
}

.c_prod_izquierdo .c_productos .tarjeta_producto:hover{
	
	transition:transform .3s,box-shadow .3s,background-color .3s,color .3s,opacity .3s,margin .3s;
	
	top: -2px;
	
	box-shadow: 8px 8px 7px rgba(0,0,0,.16),0px 8px 8px rgba(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: .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_sku{
	float: left;
	width: 100%;
	font-size: 14px;
	color: #6b7280;
	font-weight: 500;
	margin-top: 20px;
	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,.16), 0 3px 6px rgba(0,0,0,.23);
}

.c_detalle_producto .c_productos_relacionados .c_productos .tarjeta_producto:hover{
	
	transition:transform .3s,box-shadow .3s,background-color .3s,color .3s,opacity .3s,margin .3s;
	
	top: -2px;
	
	box-shadow: 8px 8px 7px rgba(0,0,0,.16),0px 8px 8px rgba(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{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0px 4px;
}

.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_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,.16), 0 3px 6px rgba(0,0,0,.23);
	cursor: pointer;
	position: relative;
}

.c_producto_cat .tarjeta_producto:hover{
	
	transition:transform .3s,box-shadow .3s,background-color .3s,color .3s,opacity .3s,margin .3s;
	
	top: -2px;
	
	box-shadow: 8px 8px 7px rgba(0,0,0,.16),0px 8px 8px rgba(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;
	/*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_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;
}

/* 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;
}
	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;
	}
}

/* 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-transform: initial;
	text-align: center;
}

.c_detalle_orden .c_leyenda_terminos_pedido a{
	color: #6C1602;
	font-weight: 700;
	text-decoration: none;
	text-transform: initial;
}

.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{
		width:30%;
		text-align: none;
	}
	
	.c_nav .c_carro a span{
		width:20%;
		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;
	}

}

/* ===== MEDIA QUERIES MODERNIZADAS ===== */

/* 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;
	}
	
	.c_header .c_logo {
		max-width: 250px;
	}
	
	.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_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_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;
	}
}
