/* Hero */
.product-badge {
    font-size: large;
    color: rgb(0, 89, 206);
}

.hero-title {
    font-weight: 600;
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .product-badge {
        text-align: center;
    }

    .hero-title {
        text-align: center;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 20px;
    }
}

/* Technical Data Table */
.technical-data-table {
    margin: 40px 0;
    border-collapse: collapse;
    width: 100%;
}

    .technical-data-table th,
    .technical-data-table td {
        border: 1px solid #ddd;
        padding: 12px 15px;
    }

    .technical-data-table th {
        background-color: #f8f9fa;
        font-weight: 600;
    }

    .technical-data-table tr:nth-child(even) {
        background-color: #f2f2f2;
    }

/* Related Products */
.releated-products-card-mobile {
    height: 400px;
}

    .releated-products-card-mobile .card-img-top {
        height: 300px;
        object-fit: contain;
    }

    .releated-products-card-mobile .card-text {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

.releated-products-card-desktop, .releated-products-card-mobile {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.16), 0 0 18px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    background-color: #fff;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    overflow: hidden;
}

    .releated-products-card-desktop:hover {
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.32), 0 8px 18px rgba(0, 0, 0, 0.16);
        transform: translateY(-4px);
        cursor: pointer;
    }

.releated-products-card-title {
    font-weight: 400;
    font-size: 0.88rem;
    margin-bottom: 2px;
    color: rgb(0, 89, 206);
}

.releated-products-card-subtitle {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 20px;
}


.releated-products-card-desktop .card-img-top {
    height: 300px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
}

/* Footer */
.footer-copyright {
    letter-spacing: 2px;
}

.footer-copyright-adatvedelmi-szab {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright-adatvedelmi-szab:hover {
    color: rgb(0, 110, 255) !important;
}

/* Footer */
.footer {
    background-color: #555;
}
