```css
/* ==================================================
   TARJETA DEL PRODUCTO
================================================== */

.catalog-card {
    cursor: pointer;
}

.catalog-card:focus-visible {
    outline: 3px solid rgba(242, 122, 26, 0.45);
    outline-offset: 4px;
}

/* ==================================================
   CAMBIO DE IMAGEN AL PASAR EL MOUSE
================================================== */

.catalog-image-box {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #eeeeee;
}

.catalog-image-box .product-image-main,
.catalog-image-box .product-image-example {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition:
        opacity 0.4s ease,
        transform 0.5s ease;
}

.product-image-main {
    z-index: 1;
    opacity: 1;
}

.product-image-example {
    z-index: 2;
    opacity: 0;
}

.product-example-label {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 4;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(15, 15, 15, 0.76);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.3px;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
    .catalog-card.has-example:hover .product-image-main {
        opacity: 0;
        transform: scale(1.04);
    }

    .catalog-card.has-example:hover .product-image-example {
        opacity: 1;
        transform: scale(1.04);
    }

    .catalog-card.has-example:hover .product-example-label {
        opacity: 0;
    }
}

@media (hover: none) {
    .product-image-example {
        display: none;
    }

    .product-example-label {
        display: none;
    }
}

/* ==================================================
   VENTANA FLOTANTE
================================================== */

body.product-modal-open {
    overflow: hidden;
}

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(8, 8, 8, 0.82);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-modal-dialog {
    position: relative;
    width: min(1050px, 100%);
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.25s ease;
}

.product-modal.active .product-modal-dialog {
    transform: translateY(0) scale(1);
}

.product-modal-close {
    position: absolute;
    top: 17px;
    right: 17px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #171717;
    font-size: 21px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.product-modal-close:hover {
    background: #f27a1a;
    color: #ffffff;
    transform: rotate(90deg);
}

/* ==================================================
   IMÁGENES DEL MODAL
================================================== */

.product-modal-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 18px 18px 0;
}

.product-modal-gallery.single-image {
    grid-template-columns: 1fr;
}

.product-modal-gallery.single-image
.product-modal-image-box {
    width: 100%;
    max-width: 730px;
    margin: 0 auto;
}

.product-modal-image-box {
    position: relative;
    height: 360px;
    overflow: hidden;
    border-radius: 18px;
    background: #eef0f3;
}

.product-modal-image-box[hidden] {
    display: none;
}

.product-modal-image-box span {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 15, 15, 0.72);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.product-modal-image-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================================================
   INFORMACIÓN DEL MODAL
================================================== */

.product-modal-information {
    padding: 29px 34px 35px;
}

.product-modal-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #f27a1a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-modal-information h2 {
    margin: 0 0 15px;
    color: #171717;
    font-size: clamp(27px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.12;
}

.product-modal-information p {
    max-width: 850px;
    margin: 0 0 25px;
    color: #5f6877;
    font-size: 16px;
    line-height: 1.75;
    white-space: pre-line;
}

.product-modal-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: auto;
    min-width: 230px;
    max-width: 100%;
}

/* ==================================================
   TABLET Y CELULAR
================================================== */

@media (max-width: 760px) {
    .product-modal {
        padding: 12px;
    }

    .product-modal-dialog {
        max-height: 95vh;
        border-radius: 19px;
    }

    .product-modal-gallery {
        grid-template-columns: 1fr;
        padding: 13px 13px 0;
    }

    .product-modal-gallery.single-image {
        grid-template-columns: 1fr;
    }

    .product-modal-image-box {
        height: 245px;
        border-radius: 15px;
    }

    .product-modal-close {
        top: 10px;
        right: 10px;
        width: 41px;
        height: 41px;
    }

    .product-modal-information {
        padding: 23px 21px 26px;
    }

    .product-modal-information h2 {
        font-size: 27px;
    }

    .product-modal-information p {
        font-size: 15px;
        line-height: 1.65;
    }

    .product-modal-quote {
        width: 100%;
        min-width: 0;
    }
}
```
