/*
 * Nexa Gift Card Mobile Name Fix V1
 * Scope: Gift-card details page only.
 * Purpose: Show long service/product names on two lines on phones.
 */
@media (max-width: 767.98px) {
    .nexa-product-page .nexa-service-card {
        align-items: center;
    }

    .nexa-product-page .nexa-service-left {
        flex: 1 1 auto;
        min-width: 0;
    }

    .nexa-product-page .nexa-service-left > .min-w-0 {
        flex: 1 1 auto;
        min-width: 0;
    }

    .nexa-product-page .nexa-service-name {
        display: -webkit-box !important;
        max-width: none !important;
        overflow: hidden !important;
        white-space: normal !important;
        text-overflow: ellipsis;
        overflow-wrap: anywhere;
        word-break: normal;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        line-height: 1.35;
    }

    .nexa-product-page .nexa-service-price {
        flex: 0 0 auto;
        margin-left: 8px;
    }
}

@media (max-width: 374.98px) {
    .nexa-product-page .nexa-service-card {
        gap: 8px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .nexa-product-page .nexa-service-image {
        width: 46px;
        min-width: 46px;
        height: 46px;
    }

    .nexa-product-page .nexa-service-name {
        font-size: 13px;
    }
}
