.g9-pw-wizard {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 20px;
    margin: 0 auto;
    padding: 60px 120px 20px 100px;
    background: #f5f0e5;
    height: 100dvh;
    overflow: hidden;
    position: relative;
    width: 100%;

    @media (width < 1600px) {
        padding: 60px 60px 20px 40px;
    }

    @media (width < 1000px) {
        padding: 60px 20px 20px 0;
    }
}

.g9-pw-wizard-header {
    display: flex;
    grid-column: span 2;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.g9-pw-wizard-header .breadcrumb-title-wrapper{
    width: auto;
}

.g9-pw-wizard h1{
    font-weight: 500;
    font-size: 28px;
    line-height: 42px;
    text-transform: uppercase;
    padding-left: 20px;  
}

.g9-pw-wizard h2{
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 25px;
}

.g9-pw-sidebar {
    width: 250px;
    flex-shrink: 0;
    background: #f5f0e5;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    overflow-y: auto;
}

.g9-pw-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}

.g9-pw-tab {
    padding: 12px 16px;
    background: #fff;
    border: 2px solid #cbd1d2;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: #29261f;
    transition: all 0.3s;
}

.g9-pw-tab:hover {
    background: #cbd1d2;
    border-color: #6c757b;
    color: #29261f;
}

.g9-pw-tab.active {
    background: #d4ad82;
    color: #fff;
    border-color: #d4ad82;
}

.g9-pw-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.g9-pw-add-to-cart-btn {
    padding: 12px 20px;
    background: #d4ad82;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.g9-pw-add-to-cart-btn:hover {
    background: #c49a6f;
}

/* Summary button: default (no products) — deactivated, not clickable */
.g9-pw-view-summary-btn {
    padding: 12px 20px;
    background: #29261F;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
    cursor: not-allowed;
    pointer-events: none;
}

/* Summary button: active (at least one product in summary) */
.g9-pw-view-summary-btn.g9-pw-summary-btn-has-items {
    background: #D4AD82;
    cursor: pointer;
    pointer-events: auto;
}

.g9-pw-view-summary-btn.g9-pw-summary-btn-has-items:hover {
    background: #c49a6f;
}

/* Summary button: add-to-summary animation */
.g9-pw-view-summary-btn.g9-pw-summary-btn-animate {
    animation: g9-pw-summary-pulse 0.4s ease;
}

@keyframes g9-pw-summary-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(212,173,130,0);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 12px rgba(212,173,130,0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(212,173,130,0);
    }
}

.g9-pw-main-content {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.g9-pw-component {
    display: none;
}

.g9-pw-component.active {
    display: block;
}

.g9-pw-filters {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    align-items: flex-end;

    @media (width < 1000px) {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 15px;
    }
}

.g9-pw-filters hr{
    display: none;
    visibility: hidden;
    width: 100%;
    height: 0;
    margin-bottom: 15px;

    @media (1000px < width < 1400px) {
        display: block;
    }
}

.g9-pw-filter-group {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    position: relative;
    flex: 1 1 0;
    max-width: 225px;
    min-width: 138px;

    @media (width < 1400px) {
        max-width: 100%;
        width: 100%;
    }

    @media (width < 1000px) {
        flex: 0 0 100%;
    }
}

.g9-pw-filter-group.g9-pw-filter-label-hidden label {
    display: none;
}

.g9-pw-filter-group label {
    margin-top: 8px;
    margin-left: 12px;
    font-weight: 500;
    font-size: 14px;
    color: #29261f;
    position: absolute;
    pointer-events: none;
    z-index: 99;
    top: 0;
    left: 0;
}

.g9-pw-filter {
    width: 100%;
    padding: 21px 12px 0;
    border: 1px solid #cbd1d2;
    border-radius: 4px;
    font-size: 14px;
    color: #29261f;
    background: #fff;
    max-width: 100%;
    line-height: 30px!important;
}

.g9-pw-filter-group.g9-pw-filter-label-hidden .g9-pw-filter {
    padding: 8px 12px;
}

.g9-pw-debug-info {
    margin: 20px 0;
    padding: 15px;
    background: #cbd1d2;
    border: 1px solid #6c757b;
    border-radius: 6px;
    font-family: monospace;
    font-size: 12px;
}

.g9-pw-debug-info h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: #29261f;
}

.g9-pw-debug-item {
    margin: 5px 0;
    padding: 5px 0;
    border-bottom: 1px solid #6c757b;
}

.g9-pw-debug-item:last-child {
    border-bottom: none;
}

.g9-pw-debug-item strong {
    color: #d4ad82;
    margin-right: 8px;
}

.g9-pw-product-container {
    min-height: 400px;
}

.g9-pw-product-list{
    display: flex;
    flex-direction: column;
    gap: 12px;

    @media (width < 1200px) {
        gap: 15px;
    }
}

.g9-pw-product-item {
    display: grid;
    grid-template-columns: 100px 10fr 8fr 250px;
    align-items: center;
    gap: 20px;
    border: 1px solid #cbd1d2;
    border-radius: 8px;
    padding: 12px;
    transition: box-shadow 0.3s;
    background: #fff;

    @media (width < 1200px) {
        grid-template-columns: 100px 1fr;
    }
}

.g9-pw-product-item:hover {
    box-shadow: 0 4px 8px rgba(41,38,31,0.15);
}

.g9-pw-product-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f5f0e5;
    border-radius: 6px;
}

.g9-pw-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.g9-pw-product-info {
    flex: 0 1 320px;
}

.g9-pw-product-name {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: #29261F;
    margin-bottom: 8px;
}

.g9-pw-product-price {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    margin-block: 4px;
}

.g9-pw-product-description {
    font-size: 14px;
    color: #29261F;
    margin: 0;
    flex: 0 1 320px;

    @media (width < 1200px) {
        grid-column: span 2;
    }
}

.g9-pw-product-stock {
    font-size: 14px;
    font-weight: 500;
    color: #D4AD82;
    margin: 0;
}

.g9-pw-product-stock-backorder {
    color: #aaa;
}

.g9-pw-product-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: end;
    justify-self: end;
    width: 250px;

    @media (width < 1200px) {
        grid-column: span 2;
    }
}

input.g9-pw-quantity{
    margin: 0!important;
    width: 40px!important;
    height: 80%!important;
    box-sizing: border-box!important;
    border: none!important;
    padding: 8px!important;
    text-align: center!important;
    color: #53585C;
}

.g9-pw-select-btn {
    flex: 1;
    padding: 8px 16px;
    background: #d4ad82;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.g9-pw-select-btn:hover {
    background: #c49a6f;
}

.g9-pw-product-quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 131px;
    height: 54px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0;
}

.g9-pw-product-qty-minus,
.g9-pw-product-qty-plus {
    max-width: 30px;
    max-height: 30px;
    width: 100%;
    height: 100%;
    padding: 0;
    background: unset;
    color: #53585C;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex: 0 0 30px;

}

.g9-pw-product-qty-minus:hover,
.g9-pw-product-qty-plus:hover {
    background: #53585C;
    color: #fff;
}

.g9-pw-no-products {
    text-align: center;
    padding: 40px;
    color: #6c757b;
    font-size: 16px;
}

/* Loading state */
.g9-pw-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    padding: 40px;
    color: #6c757b;
}

.g9-pw-loading p {
    margin: 16px 0 0 0;
    font-size: 14px;
}

.g9-pw-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #cbd1d2;
    border-top-color: #d4ad82;
    border-radius: 50%;
    animation: g9-pw-spin 0.8s linear infinite;
}

@keyframes g9-pw-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Summary Component */
.g9-pw-summary-component {
    display: none;
}

.g9-pw-summary-component.active {
    display: block;
}

.g9-pw-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid #cbd1d2;
    margin-bottom: 30px;
}

.g9-pw-summary-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    color: #29261f;
}

.g9-pw-back-to-components-btn {
    padding: 10px 20px;
    background: #6c757b;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.g9-pw-back-to-components-btn:hover {
    background: #5a6268;
}

.g9-pw-summary-items {
    padding: 20px;
    flex: 1;
}

.g9-pw-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #cbd1d2;
}

.g9-pw-summary-item:last-child {
    border-bottom: none;
}

.g9-pw-summary-item-info {
    flex: 1;
}

/* Match product list typography */
.g9-pw-summary-item-name {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: #29261F;
    margin-bottom: 8px;
}

.g9-pw-summary-item-price {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    margin-block: 4px;
    color: #29261F;
}

.g9-pw-summary-item-backorder {
    font-size: 14px;
    font-weight: 500;
    color: #aaa;
    margin: 0;
}

.g9-pw-summary-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Summary quantity: match product list .g9-pw-product-quantity-controls */
.g9-pw-summary-item-actions .g9-pw-quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 131px;
    height: 54px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0;
}

.g9-pw-summary-item-actions .g9-pw-quantity-minus,
.g9-pw-summary-item-actions .g9-pw-quantity-plus {
    max-width: 30px;
    max-height: 30px;
    width: 100%;
    height: 100%;
    padding: 0;
    background: unset;
    color: #53585C;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex: 0 0 30px;
}

.g9-pw-summary-item-actions .g9-pw-quantity-minus:hover,
.g9-pw-summary-item-actions .g9-pw-quantity-plus:hover {
    background: #53585C;
    color: #fff;
}

.g9-pw-summary-item-actions .g9-pw-quantity-minus:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.g9-pw-summary-item-actions .g9-pw-summary-quantity {
    margin: 0;
    width: 40px;
    height: 80%;
    box-sizing: border-box;
    border: none;
    padding: 8px;
    text-align: center;
    color: #53585C;
    font-size: 14px;
    -moz-appearance: textfield;
}

.g9-pw-summary-item-actions .g9-pw-summary-quantity::-webkit-outer-spin-button,
.g9-pw-summary-item-actions .g9-pw-summary-quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Match product list .g9-pw-select-btn shape/padding/font */
.g9-pw-remove-item {
    padding: 8px 16px;
    background: #dc3232;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.g9-pw-remove-item:hover {
    background: #a00;
}

.g9-pw-summary-footer {
    padding: 30px 0;
    border-top: 2px solid #cbd1d2;
    margin-top: 30px;
    text-align: right;
}

.g9-pw-summary-total {
    padding: 20px;
    background: #cbd1d2;
    border-radius: 6px;
    margin-top: 20px;
    text-align: right;
    font-size: 18px;
    font-weight: 500;
    color: #29261f;
}

.g9-pw-summary-total strong {
    font-size: 24px;
    font-weight: 700;
    color: #d4ad82;
}

.g9-pw-empty-summary {
    text-align: center;
    padding: 40px;
    color: #6c757b;
}

.g9-pw-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #d4ad82;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(41,38,31,0.2);
    z-index: 101;
    font-size: 14px;
}

/* Desktop Summary Side Cart */
.g9-pw-side-cart {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100dvh;
    background: #fff;
    box-shadow: -2px 0 8px rgba(41,38,31,0.15);
    z-index: 100;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    overflow: hidden;
}

.g9-pw-side-cart.active {
    right: 0;
}

.g9-pw-side-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #cbd1d2;
    background: #f5f0e5;
}

.g9-pw-side-cart-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #29261f;
}

.g9-pw-side-cart-close {
    background: transparent;
    border: none;
    font-size: 28px;
    color: #6c757b;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.3s;
}

.g9-pw-side-cart-close:hover {
    color: #29261f;
}

.g9-pw-side-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.g9-pw-side-cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #cbd1d2;
}

.g9-pw-side-cart-item:last-child {
    border-bottom: none;
}

.g9-pw-side-cart-item-info {
    flex: 1;
}

.g9-pw-side-cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: #29261f;
    font-size: 14px;
}

.g9-pw-side-cart-item-price {
    color: #6c757b;
    font-size: 12px;
}

.g9-pw-side-cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.g9-pw-side-cart-item-actions .g9-pw-quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
}

.g9-pw-side-cart-item-actions .g9-pw-quantity-minus,
.g9-pw-side-cart-item-actions .g9-pw-quantity-plus {
    width: 28px;
    height: 28px;
    padding: 0;
    background: #d4ad82;
    color: #fff;
    border: 1px solid #d4ad82;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    line-height: 1;
}

.g9-pw-side-cart-item-actions .g9-pw-quantity-minus:hover,
.g9-pw-side-cart-item-actions .g9-pw-quantity-plus:hover {
    background: #c49a6f;
    border-color: #c49a6f;
}

.g9-pw-side-cart-item-actions .g9-pw-quantity-minus:disabled {
    background: #cbd1d2;
    border-color: #cbd1d2;
    cursor: not-allowed;
    opacity: 0.6;
}

.g9-pw-side-cart-item-actions .g9-pw-summary-quantity {
    width: 50px;
    padding: 4px;
    border: 1px solid #cbd1d2;
    border-left: none;
    border-right: none;
    border-radius: 0;
    text-align: center;
    color: #29261f;
    font-size: 14px;
    -moz-appearance: textfield;
}

.g9-pw-side-cart-item-actions .g9-pw-summary-quantity::-webkit-outer-spin-button,
.g9-pw-side-cart-item-actions .g9-pw-summary-quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.g9-pw-side-cart-footer {
    padding: 20px;
    border-top: 2px solid #cbd1d2;
    background: #f5f0e5;
}

.g9-pw-side-cart-total {
    text-align: right;
    margin-bottom: 15px;
    font-size: 18px;
    color: #29261f;
}

.g9-pw-side-cart-total strong {
    font-size: 24px;
    color: #d4ad82;
}

/* Responsive: 768px and lower — nav top, main middle, summary bottom */
@media (width < 1000px) {
    .g9-pw-wizard h2 {
        font-size: 18px;
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .g9-pw-main-content {
        order: 3;
        flex: 1 1 0;
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 15px;
    }

    /* Filters */
    .g9-pw-filter-group label {
        font-size: 11px;
    }

    .g9-pw-filter {
        font-size: 13px;
    }

    .g9-pw-filters {
        margin-bottom: 20px;
        gap: 12px;
    }

    .g9-pw-product-item {
        padding: 12px;
        border-radius: 6px;
    }

    .g9-pw-product-name {
        font-size: 14px;
    }

    .g9-pw-product-price {
        font-size: 16px;
        margin-block: 4px;
    }

    .g9-pw-product-stock {
        font-size: 14px;
    }

    .g9-pw-product-description{
        font-size: 13px;
    }

    .g9-pw-product-actions {
        width: 100%;
        gap: 8px;
    }

    .g9-pw-product-quantity-controls {
        max-width: 166px;
        height: 46px;
        flex: 1 1 0;
    }

    .g9-pw-product-qty-minus,
    .g9-pw-product-qty-plus {
        max-width: 26px;
        max-height: 26px;
        font-size: 16px;
        flex: 0 0 26px;
    }

    input.g9-pw-quantity {
        padding: 6px !important;
        font-size: 14px !important;
    }

    .g9-pw-select-btn {
        padding: 8px 25px;
        font-size: 14px;
        flex: 0 0 0;
    }

    .g9-pw-product-container {
        min-height: 200px;
    }

    .g9-pw-no-products,
    .g9-pw-loading p {
        font-size: 14px;
        padding: 24px;
    }

    /* Summary component (full-page view on mobile) */
    .g9-pw-summary-header h2 {
        font-size: 20px;
    }

    .g9-pw-summary-header {
        padding: 12px 0;
        margin-bottom: 20px;
    }

    .g9-pw-summary-items {
        padding: 12px 0;
    }

    .g9-pw-summary-item {
        padding: 10px 0;
    }

    .g9-pw-summary-item-name {
        font-size: 14px;
    }

    .g9-pw-summary-item-price {
        font-size: 16px;
    }

    .g9-pw-summary-item-backorder {
        font-size: 14px;
    }

    .g9-pw-summary-item-actions .g9-pw-quantity-controls {
        max-width: 166px;
        height: 46px;
        flex: 1 1 0;
    }

    .g9-pw-summary-item-actions .g9-pw-quantity-minus,
    .g9-pw-summary-item-actions .g9-pw-quantity-plus {
        max-width: 26px;
        max-height: 26px;
        font-size: 16px;
        flex: 0 0 26px;
    }

    .g9-pw-summary-item-actions .g9-pw-summary-quantity {
        padding: 6px;
        font-size: 14px;
    }

    .g9-pw-summary-item-actions .g9-pw-remove-item,
    .g9-pw-remove-item {
        padding: 8px 25px;
        font-size: 14px;
    }

    .g9-pw-summary-total {
        padding: 14px;
        font-size: 15px;
        margin-top: 14px;
    }

    .g9-pw-summary-total strong {
        font-size: 20px;
    }

    .g9-pw-summary-footer {
        padding: 20px 0;
        margin-top: 20px;
    }

    .g9-pw-back-to-components-btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .g9-pw-notification {
        font-size: 13px;
        padding: 10px 16px;
    }
}

/* Responsive: 999px and lower — nav top, main middle, summary bottom */
@media (width < 769px) {
    .g9-pw-wizard {
        display: flex;
        flex-direction: column;
        grid-template-columns: unset;
        grid-template-rows: unset;
        padding: 16px 12px;
        height: 100dvh;
        overflow: hidden;
    }

    .g9-pw-wizard-header {
        flex: 0 0 auto;
        order: 1;
        grid-column: unset;
        margin-bottom: 12px;
    }

    .g9-pw-wizard h1 {
        font-size: 22px;
        line-height: 1.3;
    }

    .g9-pw-sidebar {
        display: contents;
        width: 100%;
    }

    .g9-pw-tabs {
        order: 2;
        flex: 0 0 auto;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 6px;
        padding: 8px 0;
        margin-bottom: 6px;
        font-size: 12px;
        -webkit-overflow-scrolling: touch;
    }

    .g9-pw-tabs .g9-pw-tab {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 10px 12px;
        font-size: 12px;
    }

    .g9-pw-sidebar-actions {
        order: 4;
        flex: 0 0 auto;
        margin-top: 0;
        padding: 12px 0 0;
        border-top: 1px solid #cbd1d2;
        gap: 8px;
    }

    .g9-pw-view-summary-btn,
    .g9-pw-add-to-cart-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .g9-pw-wizard h1 {
        padding-left: 0;
    }

    .g9-pw-summary-header {
        flex-wrap: wrap;
    }

    .g9-pw-back-to-components-btn{
        width: 100%;
    }

    .g9-pw-summary-item{
        flex-wrap: wrap;
        gap: 10px;
    }

    .g9-pw-summary-item-actions{
        width: 100%;
        justify-content: flex-end;
    }
    
}

@media (width < 450px) {

    .g9-pw-summary-item-actions{
        justify-content: center;
    }

}

/* Hide side cart */
.g9-pw-side-cart {
    display: none!important;
}