.empresas-ficha-page {
    padding: 48px 20px;
}

.empresas-ficha-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.empresa-ficha-v14 .empresa-header {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 28px;
    align-items: center;
    margin-bottom: 28px;
}

.empresa-ficha-v14 .empresa-logo {
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dcdcde;
    background: #fff;
    padding: 18px;
}

.empresa-ficha-v14 .empresa-logo img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.empresa-ficha-v14 .no-logo {
    font-weight: 700;
    color: #1d2327;
    text-align: center;
}

.empresa-ficha-v14 h1,
.empresa-ficha-v14 h2,
.empresa-ficha-v14 h3 {
    letter-spacing: 0;
}

.empresa-ficha-v14 h1 {
    margin: 0 0 12px;
}

.empresa-ficha-v14 .empresa-contacto {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin: 0 0 32px;
    padding: 16px 0;
    border-top: 1px solid #dcdcde;
    border-bottom: 1px solid #dcdcde;
}

.empresa-ficha-v14 .empresa-contacto p {
    margin: 0;
}

.empresa-ficha-v14 .empresa-productos-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.empresa-ficha-v14 .empresa-card {
    border: 1px solid #dcdcde;
    background: #fff;
    padding: 16px;
}

.empresa-ficha-v14 .empresa-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    margin-bottom: 14px;
    background: #f6f7f7;
}

.empresa-ficha-v14 .empresa-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.empresa-ficha-v14 .empresa-card-title {
    font-size: 17px;
    line-height: 1.3;
    margin: 0 0 10px;
}

.empresa-ficha-v14 .empresa-card-price {
    margin-bottom: 12px;
    font-weight: 700;
}

.empresa-ficha-v14 .empresa-card-cart {
    min-height: 48px;
}

.empresa-ficha-v14 .empresa-card-cart .button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 148px;
    padding: 12px 22px !important;
    line-height: 1.2 !important;
    font-size: 14px !important;
    white-space: nowrap;
    position: relative;
}

.empresa-ficha-v14 .empresa-card-cart .button.loading,
.empresa-ficha-v14 .empresa-card-cart .button.added {
    padding-right: 42px !important;
}

.empresa-ficha-v14 .empresa-card-cart .button.loading::after {
    content: "";
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-top-color: #fff;
    border-radius: 50%;
    position: absolute;
    right: 18px;
    top: 50%;
    margin-top: -7px;
    animation: cogitiEmpresaSpin 0.7s linear infinite;
}

.empresa-ficha-v14 .empresa-card-cart .button.added::after {
    content: "\2713";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 900;
}

.empresa-ficha-v14 .empresa-card-cart .button.cogiti-cart-added-pulse {
    animation: cogitiEmpresaPulse 0.55s ease;
}

.empresa-ficha-v14 .empresa-card-cart .added_to_cart {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-left: 10px;
    font-weight: 700;
}

@keyframes cogitiEmpresaSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes cogitiEmpresaPulse {
    0% {
        transform: scale(1);
    }
    45% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 900px) {
    .empresa-ficha-v14 .empresa-productos-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .empresa-ficha-v14 .empresa-header,
    .empresa-ficha-v14 .empresa-productos-cards {
        grid-template-columns: 1fr;
    }
}
