/* Estilos básicos */
body {
    margin: 0;
    padding: 0;
    font-family: "Outfit", sans-serif;
}

/* Estilos para el breadcrumb */
.breadcrumb {
    background: #0d3393;
    color: white;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 40px;
    min-height: 40px;
    box-sizing: border-box;
    width: 100%;
}

.breadcrumb a:first-child {
    margin-left: calc((100% - 1225px) / 2);
}

.breadcrumb a {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: white;
    text-decoration: none;
    padding: 0 5px;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
    cursor: pointer; /* Añadir cursor pointer */
    position: relative;
    z-index: 10; /* Aumenta el z-index para asegurar que esté por encima */
    pointer-events: auto !important;
    cursor: pointer !important;
}
.breadcrumb a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.breadcrumb a:hover {
    opacity: 0.8;

}

.breadcrumb img {
    width: 20px;
    height: 20px;
    margin-left: 0;
}

.breadcrumb p {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
}

.breadcrumb p span {
    margin-left: 5px;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

/* Estilos para el contenido principal */
.product-page {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #f3f3f3;
}

/* Ajustes para el contenido principal */
.product-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
    padding: 0;
    margin-left: calc((100% - 1225px) / 2);
    width: 1225px;
}

/* Columna izquierda con imagen */
.product-info-left {
    width: 50%;
    font-size: 16px;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Columna derecha con descripción */
.product-info-right {
    width: 50%;
    padding-left: 40px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}

/* Título y descripción */
.product-details h1 {
    width: 100%;
    color: #0d3393;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
}

.product-details p#product-description {
    width: 100%;
    max-width: 80%;
    font-size: 16px;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
    text-align-last: left;
}
/* Showcase de producto */
.product-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-top: -70px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-showcase img#product-image {
    width: 300px;
    height: 300px;
    object-fit: contain;
}

/* Flechas de navegación */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #f3f3f3;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-arrow img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.left-arrow {
    left: 20px;
}

.right-arrow {
    right: 20px;
}

/* Tamaños de producto */
.sizes {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    max-width: 500px;
    margin-top: -60px;
    position: relative;
    z-index: 1;
    margin-left: 170px;
}

.sizes.single-button {
    margin-left: 210px;
}

.sizes.trio-button {
    margin-left: 130px;
}

.size {
    font-family: "Outfit", sans-serif;
    padding: 10px 20px;
    border: none;
    margin-right: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 5px;
    position: relative;
    z-index: 2;
}

.size .number {
    font-weight: 700;
}

.size .unit {
    font-weight: 300;
}

.size.active {
    background-color: #0d3393;
    color: white;
}

.size:not(.active) {
    background-color: #e0e0e0;
    color: white;
}

/* Botón de cotización */
.cta-button {
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    background-color: #ef0606;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 25px;
    cursor: pointer;
    margin: 90px auto 50px;
    border-radius: 100px;
    margin-left: 45px;
    width: 340px;
    height: 60px;
    display: block;
    animation: pulse 1.5s infinite;
    text-decoration: none;
    text-align: center;
    line-height: 30px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 #ef0606;
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 140, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
    }
}

/* Compartir producto */
.share-section {
    display: flex;
    align-items: center;
    margin: 70px 0 20px;
    margin-left: 40px;
    margin-block-end: 50px;
}

.share-section h3 {
    font-family: "Outfit", sans-serif;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 400;
}

.share-icons {
    display: flex;
    gap: 10px;
}

.share-icons img {
    width: 33px;
    height: 33px;
    transition: transform 0.3s ease;
}

.share-icons img:hover {
    transform: scale(1.2);
}

/* Documentos del producto */
.product-documents {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 450px;
    gap: 20px;
    margin: 70px 0 20px;
    margin-block-end: 40px;
}

.doc-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    color: #333;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 3px 7px;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    width: 180px;
    height: 55px;
    font-family: "Outfit", sans-serif;
    font-weight: 300;
    justify-content: center;
    text-decoration: none;
}

.doc-button:hover {
    background-color: #f3f3f3;
    border-color: #0d3393;
}

.doc-button img {
    width: 20px;
    height: 20px;
    margin-top: 5px;
}


@media (max-width: 1300px) {
    .breadcrumb a:first-child {
        margin-left: 20px;
    }

    .product-details {
        width: 100%;
        margin-left: 20px;
        padding: 0 20px;
    }

    .features {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .feature {
        width: calc(50% - 10px);
        min-width: 160px;
    }
}

@media (max-width: 1175px) {
    .product-details {
        flex-direction: column;
    }

    .product-info-left,
    .product-info-right {
        width: 100%;
    }

    .features {
        justify-content: center;
        margin-left: 0;
    }

    .feature {
        width: calc(40% - 60px);
        margin-left: 80px;
    }

    .application-content {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-button {
        margin-left: auto;
        margin-right: auto;
    }

    .product-documents {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 750px) {
    .product-details {
        padding: 15px 0;
        width: calc(100% - 30px);
        margin: 0 15px;
    }

    .breadcrumb a {
        transform: translateX(-15px);
        font-size: 14px;
    }

    .breadcrumb p {
        transform: translateX(-10px);
        font-size: 14px;
    }

    .product-details p#product-description {
        max-width: 600px;
        padding: 0 15px;
    }

    .product-details h1#product-title {
        max-width: 600px;
        padding: 0 15px;
    }

    .product-showcase {
        width: 100%;
        max-width: 300px;
        margin: 20px auto;
    }

    .product-showcase img#product-image {
        width: 100%;
        max-width: 250px;
        height: auto;
        object-fit: contain;
        transform: translateX(20px);
    }

    .sizes {
        margin: 20px auto;
        width: 100%;
        max-width: 300px;
        display: flex;
        justify-content: center;
        gap: 10px;
        transform: translateX(25px);
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-arrow img {
        width: 30px;
        height: 30px;
    }

    .left-arrow {
        left: -20px;
    }

    .right-arrow {
        right: -60px;
    }

    .application {
        width: 100%;
        margin: 20px auto;
        margin-block-end: 40px;
    }

    .application-content {
        width: 210px;
        margin: 0 auto;
    }

    .product-documents {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 5px;
        margin: 20px auto;
        padding: 0 10px;
    }

    .doc-button {
        min-width: 110px;
        width: 33.33%;
        margin: 0;
        font-size: 12px;
        padding: 5px;
        white-space: nowrap;
        transform: translateX(-12px);
    }

    .cta-button {
        width: calc(100% - 30px);
        max-width: 340px;
        margin: 20px auto;
        padding: 15px;
        box-sizing: border-box;
        transform: translateX(0);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 22px;
        margin-block-end: 40px;
    }

    .share-section {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .features {
        display: grid;
        grid-template-columns: repeat(2, minmax(160px, 1fr));
        gap: 15px;
        padding: 10px;
        margin: 20px auto;
        width: 100%;
    }

    .feature {
        width: 100%;
        min-width: initial;
        margin: 0;
    }

    .feature-content {
        height: 150px;
        width: 100%;
        padding: 15px;
    }

    .feature-icon {
        margin-bottom: 8px;
    }

    .feature-icon img {
        margin-top: 40px;
    }

    .feature p {
        font-size: 11px;
        margin-top: 25px;
        line-height: 1.3;
    }

    .application-content {
        transform: scale(0.85);
        height: 120px;
        margin: 0 auto;
        padding: 15px;
    }

    .application-icons {
        gap: 15px;
    }

    .application-icons img {
        width: 45px;
        height: 45px;
    }

    .application h3 {
        font-size: 11px;
        margin-bottom: 12px;
    }
}