.uab-box {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px;
    margin: 16px 0;
    display: flex;
    gap: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 40%, #edf2ff 100%);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    align-items: flex-start;
}

.uab-box-image img {
    max-width: 150px;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.24);
}

.uab-box-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.uab-box-title {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 700;
    color: #0f172a;
}

.uab-box-price {
    font-weight: 600;
    margin: 0;
    color: #2563eb;
}

.uab-box-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    background: radial-gradient(circle at 0 0, #60a5fa 0, #2563eb 40%, #1d4ed8 100%);
    color: #ffffff;
    transition: transform 0.08s ease, box-shadow 0.08s ease, background-position 0.12s ease;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.45);
    margin-top: 6px;
}

.uab-box-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.55);
}

.uab-box-button:active {
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.35);
}

@media (max-width: 768px) {
    .uab-box {
        flex-direction: column;
        align-items: stretch;
    }

    .uab-box-image img {
        max-width: 180px;
        margin: 0 auto;
    }
}
