.product-card__link {
    text-decoration: none;
    width: 100%;

}

.product-card__link:hover {
    /* color: white;
    border: 1px solid #FBB219;
    background-color: #FBB219; */
}

.product-card__title {
    color: #0C0C0C;
    font-weight: 600;
    font-size: 14px;
    display: block;
    white-space: nowrap;
    /* No permite saltos de línea */
    overflow: hidden;
    /* Oculta el texto que excede el ancho */
    text-overflow: ellipsis;
}

.product-card__category {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    color: #384F7E;
}

.product-card__code {
    color: #515151;
    font-size: 12px;
    font-weight: 400;
    margin-left: 5px;
}


.product__title {
    color: #131313;
    font-size: 32px;
    font-weight: 600;
}

.product__text {
    font-size: 16px;
    font-weight: 400;
    color: #171717;
    margin-top: 40px;
}

.product__btn {
    color: #384F7E;
    border: 1px solid #384F7E;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 400;
    max-width: 100%;
    width: 230px;

}

.product__btn:hover {
    background-color: #384F7E;
    color: white;
}

.product__contact-container {
    position: absolute;
    width: 100%;
    bottom: 100px;
}

.product__btn--consult {
    background-color: #384F7E;
    color: white;
    border: 1px solid #384F7E;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 400;
    width: 230px;
}
.product__container-buttons {
    position: relative;
   
}
.product__table {

    overflow: hidden;
}
.product__text-title {
    font-size: 20px;
    font-weight: 400;
    color: #848484;
    margin-top: 20px;
    text-transform: uppercase;
}
.product__description {
    font-size: 16px;
    font-weight: 400;
    color: #171717;
    margin-top: 10px;
}
/* Product Card Styles */
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    border: 1px solid #DFDFDF;
    width: 398px;
    height: 303px;
    margin-bottom: 0.5rem;
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.product-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(128, 128, 128, 0.35) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.product-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
}

.product-card__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 8px;
    color: white;
}

.product-card__description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: white;
    margin: 0;
}
#productTabs .nav-item .nav-link.active{
    color:black !important;
    font-weight:700;
}
#productTabs .nav-item .nav-link{
    color:black !important;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .product-card {
        width: 100%;
        max-width: 398px;
        height: 250px;
    }

    .product-card__title {
        font-size: 20px;
        line-height: 24px;
    }

    .product-card__description {
        font-size: 14px;
        line-height: 17px;
    }

    .product-card__content {
        padding: 15px;
    }
    .product__contact-container {
        position: relative;
        bottom: 0px;
    }
      .product__container-buttons {
        position: relative;
    }
}
