.elementor-widget-prices {
    --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;
        flex-direction: column;
        gap: 14px;
    }

    .item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        box-shadow: 0 0 10px 0 rgba(0,0,0,.15);
        border-radius: 15px;
        overflow: hidden;
        padding: 16px 24px;
        transition: all 500ms;

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

        .left-container {
            display: flex;
            align-items: center;
            justify-content: space-around;
            width: auto;
            gap: 20px;

            .available-text {
                color: var(--title-color);
                font-size: 18px;
                font-weight: 500;
                line-height: 18px;
                font-family: 'Poppins', serif;
            }

            .brand-image {
                width: 150px;
                max-width: 200px;
                height: auto;
                max-height: 30px;
                object-fit: contain;
            }
        }

        .center-container {
            width: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 4px;

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

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

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

        .button {
            position: relative;
            padding: 15px 45px 15px 45px;
            background-color: var(--accent-color);
            border: 1px solid var(--accent-color);
            border-radius: 50px;
            cursor: pointer;
            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-size: 14px;
                font-weight: 600;
                font-family: 'Poppins', serif;
                color: #FFFFFF;
                text-decoration: none;
                white-space: nowrap;
                transition: all 0.3s;
            }

            &:hover {
                background-color: #FFFFFF;

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

    @media (max-width: 1024px) {
        .item {
            padding: 8px !important;
            gap: 8px !important;

            .available-text {
                display: none !important;
            }

            .brand-image {
                width: auto !important;
                max-width: 100px !important;
                max-height: 20px !important;
            }

            .center-container {
                gap: 0 !important;

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

                .star {
                    font-size: 10px !important;
                }
            }

            .button {
                padding: 10px 20px !important;

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

                .button-icon {
                    left: 7px !important;
                    width: 12px !important;
                    height: 12px !important;
                    border-radius: 12px !important;
                }
            }
        }
    }
}