@layer common {
    .cart-panel {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        border: .3rem solid var(--primary-border-color);
        background-color: var(--primary-background-color);
        border-radius: .6rem;
        padding: 0.5rem 1rem;
        align-items: stretch;
        justify-content: center;

        .product-info {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: center;
            gap: 1rem;
            justify-content: space-between;

            img.product {
                max-width: 100%;
                max-height: 5rem;
            }

            .meta {
                flex: 1;

                .quantity {
                    font-size: 1rem;
                    font-weight: 800;
                    text-align: center;
                    color: var(--primary-color);
                }

                .price {
                    font-size: 2.5rem;
                    font-weight: 400;
                    text-align: center;
                    color: var(--primary-color);
                }
            }
        }


        .action {
            color: var(--cart-action-text-color);
            font-weight: 600;
            border-radius: .6rem;
            background-color: var(--cart-action-color);
            max-width: 100%;
            padding: .7rem;
            text-align: center;
            text-decoration: none;

            &:hover {
                background-color: color-mix(in srgb, var(--cart-action-color), black 10%);
            }
        }
    }
}
