.md-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0 30px;
}

.md-filter-bar input,
.md-filter-bar select {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #d0d7e2;
    font-size: 0.9rem;
    min-width: 180px;
}

.md-category-title {
    font-size: 1.4rem;
    margin: 30px 0 16px;
    font-weight: 700;
    color: #1f2933;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-vps {
    padding: 14px 12px;
    border-radius: 12px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Terméknév teljes hosszban + középre igazítva */
.cloudvps-page .card-vps h3 {
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 6px;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    word-break: break-word;
    display: block;
    max-height: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
}

.card-vps:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.md-product-img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    margin: 0 auto 14px;
    display: block;
}

.md-short-desc {
    font-size: 0.75rem;
    color: #475569;
    min-height: 30px;
    max-height: 30px;
    overflow: hidden;
    margin-bottom: 10px;
    text-align: center;
}

.price-wrap {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: #0047bb;
    margin-bottom: 12px;
    position: relative;
    cursor: help;
}

.price-wrap:hover {
    transform: scale(1.06);
    color: #002f7a;
}

.price-wrap::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #1f2937;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
    border: 1px solid #e5e7eb;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.price-wrap:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-3px);
}

.md-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.md-no-results {
    text-align: center;
    font-size: 1rem;
    color: #475569;
    margin: 40px 0;
}