/* Hide WooCommerce Default Text */

.woocommerce-MyAccount-content > p{
    display:none;
}

/* Dashboard */

.vukago-dashboard{
    width:100%;
}

/* Welcome Card */

.vukago-dashboard-header{

    background:linear-gradient(135deg,#eef9f9,#ffffff);
    border:1px solid #d8ecec;
    border-radius:18px;
    padding:35px;
    margin-bottom:30px;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.vukago-dashboard-header h2{

    margin:0 0 25px;
    font-size:36px;
    color:#222;
    font-weight:700;

}

.vukago-dashboard-header p{

    margin:12px 0;
    font-size:16px;
    color:#555;

}

.vukago-dashboard-header strong{

    display:inline-block;
    width:120px;
    color:#111;

}

/* Stats */

.vukago-dashboard-cards{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;

    margin-bottom:35px;

}

.vukago-card{

    background:#fff;

    border-radius:16px;

    padding:35px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.vukago-card:hover{

    transform:translateY(-6px);

}

.vukago-card h4{

    margin:0;
    color:#666;
    font-size:17px;

}

.vukago-card h2{

    margin:18px 0 0;
    font-size:52px;
    color:#2C6E6E;

}

/* Buttons */

.vukago-dashboard-buttons{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.vukago-dashboard-buttons a{

    background:#2C6E6E;

    color:#fff !important;

    text-decoration:none;

    text-align:center;

    padding:18px;

    border-radius:14px;

    font-size:18px;

    font-weight:600;

    transition:.3s;

}

.vukago-dashboard-buttons a:hover{

    background:#174b4b;

    transform:translateY(-4px);

}

/* Mobile */

@media(max-width:991px){

.vukago-dashboard-cards{

grid-template-columns:1fr;

}

.vukago-dashboard-buttons{

grid-template-columns:1fr;

}

.vukago-dashboard-header{

padding:25px;

}

.vukago-dashboard-header h2{

font-size:28px;

}

}