/* Gradiali SPA Lentelės Stilius */
.gradiali-spa-table-wrapper {
    margin: 30px 0;
    overflow-x: auto;
}

.gradiali-spa-products-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
	border: none;
}

.gradiali-spa-products-table th {
   border: none;
   border-bottom: 1px solid #E8E8E0;
   text-align: left;
   padding: 15px 10px;
}

.gradiali-spa-products-table td {
	border: none;
	border-bottom: 1px solid #E8E8E0;
	padding: 25px 10px;
}

.gradiali-thumb img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.gradiali-title a {
    color: #161722;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.gradiali-title a:hover {
    color: #B7AD85;
}

.gradiali-duration {
    color: #8b6f47;
    font-weight: 500;
    font-size: 15px;
}

.gradiali-price {
    font-weight: 600;
    color: #B7AD85;
    white-space: nowrap;
    font-size: 16px;
}

.gradiali-action .button {
background: #EAE5D0;
    display: block;
    width: 155px;
    height: 53px;
    line-height: 53px;
    color: #2E2F31;
    border: 1px solid #EAE5D0;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    padding: 0;
    margin: 0;
    transition: .5s;
}

.gradiali-action .button:hover {
    background: #c6935e;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(212, 163, 115, 0.3);
}
.gradiali-action a {
	margin-left: auto !important;
}

/* Responsive – kortelės */
@media (max-width: 768px) {
    .gradiali-spa-products-table thead { display: none; }
    .gradiali-spa-products-table,
    .gradiali-spa-products-table tbody,
    .gradiali-spa-products-table tr,
    .gradiali-spa-products-table td {
        display: block;
        width: 100%;
    }
    .gradiali-spa-products-table tr {
        margin-bottom: 25px;
        border: 1px solid #eee;
        border-radius: 14px;
        padding: 18px;
        background: #fff;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }
    .gradiali-spa-products-table td {
        border: none;
        padding: 10px 0;
        text-align: center;
        position: relative;
    }
    .gradiali-spa-products-table td::before {
        content: attr(data-label);
        font-weight: 600;
        display: block;
        color: #8b6f47;
        margin-bottom: 8px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .gradiali-thumb { margin-bottom: 15px; }
    .gradiali-action { margin-top: 10px; }
}