.product-miniature .thumbnail-container:focus .product-description::after,
.product-miniature .thumbnail-container:hover .product-description::after {
    position: relative;
    border: none;
}


/* Desktop */
article.product-miniature {
    border: 1px solid #E8E9EA;
    border-radius: 8px;

    .thumbnail-container {
        border-radius: 8px;

        .thumbnail-top {
            position: relative;

            a.thumbnail {
                img {
                    max-height: 250px;
                    width: 250px;
                    object-fit: cover;
                }
            }

            .product-tags {
                position: absolute;
                left: 32px;
                bottom: 38px;
                display: flex;
                flex-direction: row;
                height: auto;
                gap: 5px;

                .promo-tag {
                    font-family: KomikaHand, serif;
                    background-color: #D0111A;
                    text-align: center;
                    color: white;
                    padding: 6px 10px;
                    font-weight: 700;
                    font-size: 12px;
                    z-index: 10;
                    border-radius: 2px;
                }

                .only-web-tag {
                    font-family: KomikaHand, serif;
                    color: #EB6909;
                    background-color: #FCDEC7;
                    text-align: center;
                    padding: 5px 9px;
                    font-weight: 700;
                    font-size: 12px;
                    z-index: 10;
                    border-radius: 2px;
                }
            }

            .extra-informations {
                margin-top: 0;
                margin-bottom: 6px;
                height: 14px;

                .variant-links-mobile {
                    display: none;
                }

                .variant-links {
                    display: flex;
                    margin-left: 32px;
                    padding: 0;
                    min-height: 14px;
                    top: 0;

                    a {
                        &:first-child {
                            margin-left: 0;
                            &.active{
                                margin-right: 5px !important;
                            }
                        }

                        width: 14px !important;
                        height: 14px !important;
                        border-radius: 50%;
                        margin: 0 .25rem 0 .3125rem;

                        &.more-variants {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            color: black;
                        }
                    }

                    .color2 {
                        display: inline-block;
                        cursor: pointer;
                        background-size: contain;
                        border: none;

                        &[title=Blanc] {
                            border: 1px solid #979797
                        }
                    }

                    .color2:hover, .color2.active {
                        outline: 1.8px solid black;
                        outline-offset: 1px;
                    }
                }

                .variant-links-mobile {
                    display: none;
                }
            }
        }

        .extra-informations {
            .more-variants {
                padding: 0;
                margin: 4px 0 0 5px;
            }
        }

        .product-description {
            padding: 0 32px;

            h2.h3.product-title, .h3.product-title {
                margin: 0;
                text-align: left;
                display: -webkit-box;
                -webkit-line-clamp: 1;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
                max-height: 20px;
                @media screen and (max-width: 768px){
                    -webkit-line-clamp: 2;
                    height: auto;
                    width: 100%;
                    max-height: 40px;
                }

                a {
                    color: #211F1F;
                    font-size: 15px;
                    line-height: 18px;
                    font-weight: 500;
                }
            }

            p.product-description {
                color: #211F1F;
                font-size: 12px;
                line-height: 15px;
                font-weight: 400;
                padding: 0;
                display: -webkit-box !important;
                -webkit-line-clamp: 1 !important;
                -webkit-box-orient: vertical !important;
                overflow: hidden !important;
                text-overflow: ellipsis !important;
                margin-bottom: 16px;
            }

            .product-price-and-shipping {
                display: flex;
                flex-direction: row;
                gap: 10px;

                .left {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    gap: 11px;

                    span.price {
                        color: #211F1F;
                        font-size: 20px;
                        line-height: 24px;
                        font-weight: 500;
                    }

                    span.regular-price {
                        color: #211F1F;
                        font-size: 11px;
                        font-weight: 400;
                        line-height: 14px;
                        margin-left: 0;
                    }
                }

                .discount-percentage,
                .discount-product,
                .discount-amount{
                    display: block;

                    color: white;

                    font-size: 12px;
                    font-weight: 700;
                    line-height: 15px;

                    background-color: #D0111A;
                    border-radius: 4px;
                    padding: 4px 7px;
                }
            }

            .product-add-to-cart {
                margin-top: 16px;

                form.add-to-cart-or-refresh {
                    display: flex;
                    flex-direction: row;
                    justify-content: space-between;

                    .product-quantity {
                        width: 77px;
                        height: 50px;
                        border: 1px solid #E8E9EA;
                        border-radius: 8px;

                        display: flex;
                        flex-direction: row;
                        justify-content: space-around;

                        .btn-touchspin {
                            height: 100%;
                            width: 20px;
                            padding: 0;
                            background-color: transparent;
                            border: none;
                        }

                        input[name="qty"] {
                            width: 1.5em;
                            margin-bottom: 0;
                            padding: 0;
                            height: auto;
                            border: none !important;
                            text-align: center;
                        }
                    }

                    button.btn.btn-primary.add-to-cart {
                        &.add-to-cart-mobile {
                            display: none;
                        }

                        &.add-to-cart-desktop {
                            height: 48px;

                            font-size: 11px;
                            font-weight: 500;
                            line-height: 14px;
                            color: white;
                            text-transform: uppercase;

                            background-color: #211F1F;
                            border-radius: 8px;
                            padding: 17px 26px;
                            flex: 1;
                        }
                    }
                }
            }
        }
    }
}

/* Mobile */
@media screen and (max-width: 788px) {
    article.product-miniature {
        .thumbnail-container {
            margin: 0 0 10px 0;

            .thumbnail-top {
                a.thumbnail {
                    img {
                        max-height: 146px;
                    }
                }

                .product-tags {
                    left: 10px;

                    .promo-tag {
                        font-size: 8px;
                        font-weight: 700;
                        line-height: 9px;

                        padding: 4px 5px;
                    }

                    .only-web-tag {
                        font-size: 8px;
                        font-weight: 700;
                        line-height: 9px;

                        padding: 4px 5px;
                    }
                }

                .extra-informations {
                    .variant-links {
                        margin-left: 10px;
                    }
                }
            }

            .extra-informations {
                .more-variants {
                    padding: 0;
                    margin: 4px 0 0 5px;
                }
            }

            .product-description {
                padding: 0 10px;

                h2.h3.product-title, h2.h3.product-title {
                    a {
                        color: #211F1F;
                        font-size: 12px;
                        line-height: 14px;
                        font-weight: 500;
                    }
                }

                p.product-description {
                    color: #211F1F;
                    font-size: 10px;
                    line-height: 11px;
                    font-weight: 400;
                }

                .product-price-and-shipping {
                    height: 39px;

                    .left {
                        flex-direction: column;
                        align-items: start;

                        span.price {
                            color: #211F1F;
                            font-size: 16px;
                            line-height: 17px;
                            font-weight: 500;
                        }

                        span.regular-price {
                            color: #211F1F;
                            font-size: 10px !important;
                            line-height: 14px !important;
                            font-weight: 400 !important;
                        }
                    }

                    .discount-percentage {
                        display: block;

                        color: white;

                        font-size: 10px;
                        font-weight: 700;
                        line-height: 11px;

                        background-color: #D0111A;
                        border-radius: 2px;
                        padding: 5px 7px;

                        margin-left: auto;
                        height: 23px;
                    }
                }

                .product-add-to-cart {
                    margin-top: 16px;

                    form.add-to-cart-or-refresh {
                        display: flex;
                        flex-direction: row;
                        justify-content: space-between;

                        .product-quantity {
                            display: none;
                        }

                        button.btn.btn-primary.add-to-cart {
                            &.add-to-cart-mobile {
                                width: 100%;
                                display: block;
                                height: 40px;

                                font-size: 11px;
                                font-weight: 500;
                                line-height: 12px;
                                color: white;
                                text-transform: uppercase;

                                background-color: #211F1F;
                                border-radius: 8px;
                                padding: 13px 41px;
                            }

                            &.add-to-cart-desktop {
                                display: none;
                            }
                        }
                    }
                }
            }
        }
    }
}