.elementor-widget-top_3 {
    --accent-color: var(--e-global-color-accent, #364151);
    --title-color: var(--e-global-color-primary, #364151);
    --text-color: var(--e-global-color-text, #0F172A);

    width: 100%;

    .container {
        display: flex;
        align-items: flex-end;
        gap: 30px;
    }

    .product-item {
        text-align: center;
        padding: 40px 40px 20px 40px;
        background-color: white;
        box-shadow: 0 0 10px 0 rgba(0,0,0,.15);
        transition: 500ms all;
        display: flex;
        flex-direction: column;
        gap: 10px;
        border-radius: 15px;
        position: relative;

        &:hover {
            box-shadow: 0 0 30px 0 rgba(0,0,0,.15);

            .image {
                transform: scale(1.05);
            }
        }

        .number {
            position: absolute;
            top: 0;
            left: 15px;
            right: 15px;
            text-align: left;
            color: var(--title-color);
            font-size: 45px;
            font-family: 'Poppins', serif;
            font-weight: 800;
        }

        .container-top {
            display: flex;
            flex-direction: column;
            gap: 10px;

            .container-image {
                overflow: hidden;
                border-radius: 15px;
                background-color: #F3F3F3;
                width: 100%;

                .image {
                    object-fit: contain;
                    cursor: pointer;
                    transition: all 500ms;
                }
            }

            .container-texts {
                display: flex;
                flex-direction: column;

                .price {
                    color: var(--title-color);
                    font-family: 'Poppins', serif;
                    font-size: 16px;
                    font-weight: 600;
                    font-style: italic;
                    line-height: normal;
                }

                .title {
                    font-size: 20px;
                    font-family: 'Poppins', serif;
                    color: var(--title-color);
                    font-weight: 700;
                    text-transform: uppercase;
                    line-height: normal;
                    -webkit-user-select: none;
                    -ms-user-select: none;
                    user-select: none;
                }

                .container-stars {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 4px;

                    .star {
                        color: gold;
                        font-size: 14px;
                    }
                }
            }
        }

        .container-bottom {
            display: flex;
            flex-direction: column;
            gap: 8px;

            .button {
                position: relative;
                padding: 15px 10px 15px 10px;
                background-color: var(--accent-color);
                border: 1px solid var(--accent-color);
                cursor: pointer;
                border-radius: 100px;
                transition: all 0.3s;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 16px;

                .button-icon {
                    width: 20px;
                    height: 20px;
                    position: absolute;
                    left: 14px;
                    border-radius: 18px;
                }

                .button-text {
                    font-family: 'Poppins', serif;
                    font-size: 14px;
                    font-weight: 600;
                    color: #FFFFFF;
                    text-decoration: none;
                    transition: all 0.3s;
                }

                &:hover {
                    background-color: #FFFFFF;

                    .button-text {
                        color: var(--accent-color);
                    }
                }
            }

            .small-button {
                color: var(--text-color);
                font-size: 14px;
                font-family: 'Poppins', serif;
                font-weight: 500;
                cursor: pointer;
                transition: all 0.3s;
            }
        }
    }

    .podium-left {
        flex: 1;
        order: 1;
    }

    .podium-center {
        flex: 1.2;
        order: 2;
    }

    .podium-right {
        flex: 1;
        order: 3;
    }

    .podium-right, .podium-left {
        .image {
            width: 250px;
            height: 250px;
        }
    }

    .podium-center {
        .image {
            width: 300px;
            height: 300px;
        }
    }


    @media (max-width: 1024px) {
        .container {
            flex-direction: column !important;
            align-items: center !important;
            gap: 15px !important;
        }

        .container-top {
            flex-direction: row !important;
            align-items: center !important;
        }

        .container-image {
            margin: 0 !important;
            width: auto !important;
        }

        .image {
            width: 80px !important;
            height: 80px !important;
        }

        .product-item {
            width: 100% !important;
            padding: 20px !important;
            border-radius: 10px !important;
            text-align: left !important;
        }

        .number {
            font-size: 25px !important;
            line-height: 25px !important;
            text-align: center !important;
            top: 5px !important;
            left: 5px !important;
            right: unset !important;
        }

        .container-stars {
            justify-content: left !important;
        }

        .small-button {
            text-align: center !important;
            font-size: 12px !important;
        }

        .button {
            text-align: center !important;
            width: 100% !important;
            padding: 13px !important;

            .button-text {
                font-size: 12px !important;
            }
        }

        .container-texts {
            .title {
                font-size: 16px !important;
            }

            .price {
                font-size: 14px !important;
            }

            .container-stars {
                .star {
                    font-size: 13px !important;
                }
            }
        }

        .podium-center {
            order: 1 !important;
            flex: 1 !important;
        }

        .podium-left {
            order: 2 !important;
        }

        .podium-right {
            order: 3 !important;
        }
    }
}