/*
 TITAN STORE  - Tienda virtual de Titan Sport
 El presente software se provee bajo una licencia cerrada y esta cubierto por derechos de autor.
 No se autoriza su uso directo o indirecto , descompilacion o uso del codigo fuente sin el consentimiento expreso del autor de la obra.
 Nestor Arias-2026
*/
/* 
    Created on : 17/01/2026, 11:29:12?a. m.
    Author     : nesto
*/

.logo{
    height: 60px;
    margin-right: 40%;
    margin-left:12px;
}
header {
    /* background-color: #FF0000; */
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    position: fixed;
    width: 100%;
}
header h1 {
    width: 55%;
    text-align: right;
}
body {
    font-family: 'Aptos', 'sans-serif';
    margin: 0px;
}
input,select{
    border: 1px solid black;
}
button,
input[type="submit"]{
    /*background-color: #007AFF;*/
    color: white;
    border: 1px transparent solid;
    padding-top: 5px;
    padding-bottom: 5px;
}
button:hover{
    font-weight: bold;
}
table tbody>tr:nth-child(odd){
    background-color: #E7E9EB;
}
.container {
    display: flex;
    padding: 20px;
    gap: 20px;
    margin-top: 103px;
    min-height: 500px;
}
.grid-productos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    flex-grow: 1;
}
.searchBox{
    display: flex;
}
.searchBox > div{
    vertical-align: bottom;
    margin-top: 10px;
}
/**
Productos en catálogo
*/
.producto-card {
    background: lightgray;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    outline: none;
    width: 70%;
    overflow: hidden;
}
.producto-card img {
    max-width: 250px;
    border-radius: 8px;
    margin-bottom: 10px;
    max-height: 250px;
}
.producto-card descripcion{
    font-size: 12px;
}
.contact_us {
    position: fixed;
    bottom: 28px;
    float: right;
    width: 107px;
    right: 0px;
    background: rgba(255,255,255,0.75);
    text-align: center;
    z-index: 1;
}
.contact_us img{
    width: 50px;
}
/**
Contenedores que deben ir separados del header.
*/
.cart-container
,.postorder_content
,.admin-container{
    margin-top:135px;
    min-height: 400px;
}
/**
Icono de carrito de compras
*/
#cart {
    position: fixed;
    right: 10px;
    cursor: pointer;
}
.cart-container {
    padding: 20px;
    gap: 20px;
    margin-left:10%;
    margin-right:10%;
}
.cart-card{
    width: 100%;
    border-radius: 12px;
    padding: 20px;
    display:flex;
    gap: 20px;
    /*    border: 1px solid blue;*/
}
table.sc-productos  thead{
    color: white;
}

table.sc-productos tr>td:nth-of-type(1){
    width:  40%;
}
table.sc-productos tr>td:nth-of-type(2)
,table.sc-productos tr>td:nth-of-type(3)
,table.sc-productos tr>td:nth-of-type(4){
    width:  20%;
}
table.sc-productos td.total{
    font-weight: bold;
}
table.sc-productos .cartQuantity{
    display: flex;
}
table.sc-productos .cartQuantity input{
    width: 100px;
}
table.sc-productos .shopping-ctrl{
    cursor: pointer;
}
.reCaptchaErr{
    font-weight: bold;
}
/* Esta es la clase que el botón activará */
.efecto-pulso {
    animation: pulso 2s ease-in-out;
}
@keyframes pulso {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(2);
    }
    100% {
        transform: scale(1);
    }
}

.controles {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}
/**CONTROLES PARA CARRUSEL*/
.jcarousel-wrapper {
    margin: 20px auto;
    position: relative;
    border: 10px solid #fff;
    width: 600px;
    height: 400px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 2px #999;
    -moz-box-shadow: 0 0 2px #999;
    box-shadow: 0 0 2px #999;
}
/**
Pantalla de pago
*/
.postorder_content{
    width:80%;
    margin-left:10%;
}
.paymentchannels{
    width:100%;
    text-align: center;
}
.paymentchannels tr td{
    width:50%;
}
.paymentchannels img{
    max-width: 181px;
}
.paymentchannels img[src~="Nequilogo.png"]{
    width : 80px;
}
.post_order_back
,.backHome{
    cursor:pointer;
    font-weight: bold;
    margin-left: 20px;
    margin-top: 20px;
}
.admin-container {
    /* width: 80%; */
    margin-left: 10px;
    margin-right: 10px;
    /* border: 1px solid black; */
    padding: 5px;
    border-radius: 12px;
}
.adminContent > form > table{
    width:100%;
}
.adminlink{
    position: fixed;
    right: 10px;
}