.elementor-widget-product-page {
    --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-product-page {
        display: flex;
        flex-direction: column;
        gap: 40px;

        .container-top {
            display: flex;
            gap: 24px;

            .container-top-left {
                flex: 4;
                display: flex;
                align-items: center;
                border: 1px solid #3641511c;
                border-radius: 8px;
                overflow: hidden;
                padding: 12px;

                .product-image {
                    width: 100%;
                    aspect-ratio: 1 / 1;
                    object-fit: contain;
                }
            }

            .container-top-right {
                flex: 6;
                display: flex;
                flex-direction: column;
                gap: 16px;

                .chip {
                    width: fit-content;
                    background-color: var(--title-color);
                    color: white;
                    border-radius: 6px;
                    font-family: 'Poppins', serif;
                    text-transform: uppercase;
                    font-weight: 700;
                    font-size: 16px;
                    padding: 3px 5px;
                    margin-bottom: -10px;
                }

                .description {
                    color: var(--text-color);
                    font-family: 'Poppins', serif;
                    margin: 0;
                }

                .separator {
                    width: 100%;
                    height: 1px;
                    background: #3641511c;
                }
            }
        }

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

        .text {
            color: var(--text-color);
            font-family: 'Poppins', serif;
            margin: 0;
        }
    }

    @media (max-width: 1024px) {
        .container-product-page {
            gap: 24px !important;
        }

        .container-top {
            flex-direction: column !important;
        }
    }
}