/* ==========================================
   GIANESHOP TRACKING V2
========================================== */

.gst-v2{

    max-width:1100px;
    margin:50px auto;
    padding:20px;

    font-family:Arial, Helvetica, sans-serif;

}

.gst-v2-hero{

    text-align:center;

    margin-bottom:40px;

}

.gst-v2-logo{

    font-size:70px;

    margin-bottom:15px;

}

.gst-v2-hero h1{

    font-size:42px;

    margin-bottom:10px;

    color:#0b5ed7;

}

.gst-v2-hero p{

    color:#777;

    font-size:18px;

}

/* ==========================================
BUSCADOR
========================================== */

.gst-v2-search{

    margin:40px 0;

}

.gst-v2-search form{

    display:flex;

    gap:15px;

}

.gst-v2-search input{

    flex:1;

    padding:18px;

    border-radius:12px;

    border:1px solid #ddd;

    font-size:18px;

}

.gst-v2-search button{

    padding:18px 35px;

    border:none;

    border-radius:12px;

    background:#0b5ed7;

    color:white;

    font-size:17px;

    cursor:pointer;

    transition:.3s;

}

.gst-v2-search button:hover{

    background:#084298;

}
/* ==========================================
CARD
========================================== */

.gst-v2-card{

    background:white;

    border-radius:20px;

    padding:35px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.gst-v2-card-header{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:35px;

}

.gst-v2-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#eef5ff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:35px;

}

.gst-v2-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;

}

.gst-v2-item{

    background:#f8f9fa;

    border-radius:15px;

    padding:20px;

}

.gst-v2-item label{

    display:block;

    color:#777;

    margin-bottom:10px;

}

.gst-v2-item strong{

    font-size:20px;

}

.gst-status-green{

    color:#198754;

}
