#infinite-footer {
	display: none;
}

/* Dölj "Välj alternativ"-knappen på produktkort i butiken/kategorier */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
    display: none !important;
}

.qliro-one-checkout-select-other-wrapper {
    margin-top: 24px !important;
}

/* Dölj EA11y accessibility-widget */
.ea11y-widget-open-button,
.ea11y-widget-container,
[class*="ea11y-widget"] {
    display: none !important;
}


.woocommerce-mini-cart .mini_cart_item:last-child,
.woocommerce-mini-cart .woocommerce-mini-cart-item:last-child {
    border-bottom: 1px solid #e5e5e5 !important;
    padding-bottom: 16px !important;
}


.woocommerce-additional-fields__field-wrapper {
	margin-left: -25px;
	margin-top: -30px;
}

.grecaptcha-badge { 
    visibility: hidden !important;
}


/* ============================================
   VARUKORGSIDA – /varukorg/
============================================ */

/* Bas */
.woocommerce-cart {
    color: #143065;
    font-family: Inter;
}

.woocommerce-cart .product-name a {
    font-weight: 500;
    font-size: 17px;
    color: #143065;
}

.woocommerce-cart .cart-collaterals h2 {
    font-size: 20px;
    font-weight: 600 !important;
    color: #143065;
}

.woocommerce-cart .coupon {
    display: none !important;
}



/* Dölj thead */
.woocommerce-cart thead,
.woocommerce-cart table.shop_table thead {
    display: none !important;
    border: none !important;
}

.woocommerce-cart table.shop_table tbody tr:first-child td {
    border-top: none !important;
}

/* Antal-input + +/− knappar (samma stil som sidovarukorg/kassa) */
.woocommerce-cart .quantity {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
}

.woocommerce-cart .quantity input.qty {
    width: 40px !important;
    height: 28px !important;
    text-align: center;
    padding: 0 !important;
    border: 1px solid #e1e6ec !important;
    border-radius: 6px !important;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    background: #fff;
}

/* Dölj de inbyggda spin-pilarna */
.woocommerce-cart .quantity input.qty::-webkit-inner-spin-button,
.woocommerce-cart .quantity input.qty::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
    opacity: 0;
    display: none !important;
}

.woocommerce-cart .quantity input.qty {
    -moz-appearance: textfield;
    appearance: textfield;
}

.ez-cart-qty-btn {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    border: 1px solid #e1e6ec !important;
    background: #fff !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    color: #555 !important;
    cursor: pointer;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    box-shadow: none !important;
    line-height: 1;
    transition: background 0.15s ease;
}

.ez-cart-qty-btn:hover {
    background: #f1f3f5 !important;
}

/* Knappar – Uppdatera varukorg + Fortsätt till kassan */
.woocommerce-cart button[name="update_cart"],
.woocommerce-cart a.checkout-button.button.alt.wc-forward {
    color: #fff !important;
    background-color: #4DA7CA !important;
    border: 1px solid #4DA7CA !important;
    border-radius: 8px !important;
    padding: 10px 20px !important;
    opacity: 1 !important;
}

.woocommerce-cart button[name="update_cart"]:hover,
.woocommerce-cart a.checkout-button.button.alt.wc-forward:hover {
    background-color: #165B76 !important;
    border-color: #165B76 !important;
}

.woocommerce-cart button[name="update_cart"]:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

/* Ta bort-knapp (papperskorgsikon) */
.woocommerce-cart td.product-remove a {
    display: block;
    width: 23px;
    height: 23px;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    font-size: 0 !important;
    line-height: 0 !important;
    color: transparent !important;
    text-indent: 0 !important;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6M9 7h6m2 0H7m3-3h4a1 1 0 011 1v2H9V5a1 1 0 011-1z'/%3E%3C/svg%3E") no-repeat center;
    background-size: 23px 23px;
    opacity: 0.6;
    cursor: pointer;
}

.woocommerce-cart td.product-remove a::before,
.woocommerce-cart td.product-remove a::after {
    content: none !important;
    display: none !important;
}

.woocommerce-cart td.product-remove a:hover {
    opacity: 1;
}

/* Totalbelopp-rutan */
.woocommerce-cart .cart-collaterals .cart_totals {
    border: 1px solid #e1e6ec;
    border-radius: 12px;
    overflow: hidden;
}


/* ============================================
   DESKTOP – horisontell tabell-layout med kort-stil
============================================ */

@media (min-width: 769px) {
    .woocommerce-cart table.shop_table.cart {
        border: none !important;
        border-collapse: separate !important;
        border-spacing: 0 12px !important;
    }

    .woocommerce-cart table.shop_table.cart tbody tr.cart_item {
        background: #fff;
        border-radius: 12px;
        position: relative;
    }

    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td {
        border: 1px solid #e1e6ec !important;
        border-left: none !important;
        border-right: none !important;
        padding: 18px 14px !important;
        vertical-align: middle;
        background: #fff;
    }

    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td:first-child {
        border-left: 1px solid #e1e6ec !important;
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
    }

    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td:last-child {
        border-right: 1px solid #e1e6ec !important;
        border-top-right-radius: 12px;
        border-bottom-right-radius: 12px;
    }

    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-thumbnail img {
        border-radius: 8px;
        width: 80px;
        max-width: 80px;
    }

    /* Variationer (Installation/Lastbalansering/Färg) */
    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-name dl.variation {
        margin: 6px 0 0;
        padding: 0;
        font-size: 13px;
        color: #777;
    }

    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-name dl.variation dt,
    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-name dl.variation dd {
        display: inline;
        margin: 0;
        padding: 0;
        font-weight: 400;
        float: none;
        clear: none;
        width: auto;
    }

    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-name dl.variation dt {
        font-weight: 600;
    }

    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-name dl.variation dd::after {
        content: "";
        display: block;
    }

    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-name dl.variation dd p {
        display: inline;
        margin: 0;
    }

    /* Uppdatera varukorg-raden – ingen border, ingen bakgrund */
    .woocommerce-cart table.shop_table.cart tr.actions td,
    .woocommerce-cart table.shop_table.cart tr:has(.actions) td {
        border: none !important;
        background: transparent !important;
    }
}


/* ============================================
   MOBIL – produktkort-layout istället för tabell
============================================ */

@media (max-width: 768px) {
    .woocommerce-cart .woocommerce > form.woocommerce-cart-form,
    .woocommerce-cart .woocommerce > .cart-collaterals {
        width: 100%;
    }

    .woocommerce-cart table.shop_table.cart {
        border: none !important;
        border-radius: 0;
    }

    .woocommerce-cart table.shop_table.cart tbody tr.cart_item {
        display: block !important;
        background: #fff;
        border: 1px solid #e1e6ec !important;
        border-radius: 12px;
        padding: 14px;
        margin-bottom: 12px;
        position: relative;
    }

    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td {
        display: block !important;
        border: none !important;
        padding: 4px 0 !important;
        text-align: left !important;
    }

    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td::before {
        display: none !important;
    }

    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-remove {
        position: absolute;
        top: 12px;
        right: 12px;
        padding: 0 !important;
        width: 23px;
        height: 23px;
    }

    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-thumbnail {
        text-align: center !important;
        padding-bottom: 10px !important;
    }

    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-thumbnail img {
        width: 80px !important;
        max-width: 80px;
        margin: 0 auto;
    }

    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-name {
        text-align: center !important;
        font-weight: 500;
        font-size: 15px;
        padding: 4px 0 12px !important;
    }

    /* Variationer (Installation/Lastbalansering/Färg) */
    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-name dl.variation {
        margin: 8px 0 0;
        padding: 0;
        font-size: 13px;
        color: #777;
        text-align: left;
    }

    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-name dl.variation dt,
    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-name dl.variation dd {
        display: inline;
        margin: 0;
        padding: 0;
        font-weight: 400;
        float: none;
        clear: none;
        width: auto;
    }

    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-name dl.variation dt {
        font-weight: 600;
    }

    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-name dl.variation dd::after {
        content: "";
        display: block;
    }

    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-name dl.variation dd p {
        display: inline;
        margin: 0;
    }

    /* Pris/Antal/Delsumma med labels */
    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-price,
    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-quantity,
    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-subtotal {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 8px 0 !important;
        font-size: 14px;
        border-top: 1px solid #f0f0f0 !important;
    }

    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-price::before,
    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-quantity::before,
    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-subtotal::before {
        display: inline-block !important;
        font-weight: 500;
        color: #143065;
    }

    /* Uppdatera varukorg-raden */
    .woocommerce-cart table.shop_table.cart tr.actions,
    .woocommerce-cart table.shop_table.cart tr:has(.actions) {
        display: block !important;
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin-top: 12px;
    }

    .woocommerce-cart table.shop_table.cart tr.actions td,
    .woocommerce-cart table.shop_table.cart tr:has(.actions) td {
        display: block !important;
        border: none !important;
        padding: 0 !important;
    }

    .woocommerce-cart button[name="update_cart"] {
        width: 100% !important;
        padding: 12px !important;
        border-radius: 10px !important;
    }
}
















/* Produktkort */
.product_type_variable, .add_to_cart_button {
	width: 100%;
}
.woocommerce ul.products li.product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
	padding: 0px;
}

/* Titel */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 60px;
  padding-left: 12px;
  padding-right: 12px;
}

/* Pris */
.woocommerce ul.products li.product .price {
  border-top: 1px solid #E0E0E0;
  padding: 20px;
}



/* Aktiv kategori – bakgrund */
body.tax-product_cat.term-laddboxar .menu-laddboxar,
body.tax-product_cat.term-lastbalansering .menu-lastbalansering,
body.tax-product_cat.term-laddkablar .menu-laddkablar,
body.tax-product_cat.term-kabelhallare .menu-kabelhallare,
body.tax-product_cat.term-laddstolpar-elbilsladdning .menu-laddstolpar,
body.tax-product_cat.term-tillbehor-till-laddbox .menu-tillbehor,
body.tax-product_cat.term-varmestyrning-smart .menu-varmestyrning {
  background-color: black !important;
}

/* Aktiv kategori – text + ikon */
body.tax-product_cat.term-laddboxar .menu-laddboxar *,
body.tax-product_cat.term-lastbalansering .menu-lastbalansering *,
body.tax-product_cat.term-laddkablar .menu-laddkablar *,
body.tax-product_cat.term-kabelhallare .menu-kabelhallare *,
body.tax-product_cat.term-laddstolpar-elbilsladdning .menu-laddstolpar *,
body.tax-product_cat.term-tillbehor-till-laddbox .menu-tillbehor *,
body.tax-product_cat.term-varmestyrning-smart .menu-varmestyrning * {
  color: #ffffff !important;
}






















/* ============================================
  Vad händer nu? - Kassan på mobilen
============================================ */

@media (max-width: 600px) {
    .checkout-installation-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}


/* ============================================
   INSTALLATIONSPROCESS-RUTA ("Hur går installationen till?")
   ============================================ */

/* Textarea-fält använt som info-ruta – dölj checkbox + textarea, visa bara text + länk */
.pewc-item.pewc-item-textarea input.pao-toggle-checkbox {
    display: none !important;
}

.pewc-item.pewc-item-textarea textarea {
    display: none !important;
}

.pewc-item.pewc-item-textarea {
    cursor: default !important;
}

/* Snygga till textarea-info-rutan */
.pewc-item.pewc-item-textarea {
    border: none !important;
    padding: 0px !important;
    margin-top: -35px !important;
    margin-bottom: -40px !important;
    background: transparent !important;
}

.pewc-item.pewc-item-textarea:hover {
    border: none !important;
    background: transparent !important;
}

/* Mobilanpassning – 4 kolumner blir 2x2 */
@media (max-width: 600px) {
    .installation-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Mjuk öppning/stängning för "Hur går installationen till?" */
.installation-details .installation-details-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
    overflow: hidden;
}

.installation-details[open] .installation-details-wrapper {
    grid-template-rows: 1fr;
}

.installation-details .installation-details-inner {
    min-height: 0;
}


/* GENERELLA KORT */
.pewc-product-extra-groups .pewc-item {
    border: 2px solid #d9dfe8;
    border-radius: 12px;
    padding: 20px;
		padding-bottom: 0px;
    background: #fff;
    transition: all 0.2s ease;
    cursor: pointer;
    list-style: none;
}

.pewc-product-extra-groups .pewc-item:hover {
    border-color: #b9c7db;
    background: #f8fbff;
}

/* CHECKBOX / RADIO KORT */
.pewc-preset-style .pewc-checkbox-form-label,
.pewc-preset-style .pewc-radio-form-label,
.pewc-preset-style .pewc-item-field-wrapper,
.pewc-preset-style .pewc-item-checkbox label {
    margin-bottom: -10px;
}

/* Text */
.pewc-product-extra-groups .pewc-checkbox-form-label > span:not(.pewc-theme-element):not(.required),
.pewc-product-extra-groups .pewc-radio-form-label > span:not(.pewc-theme-element):not(.required) {
    font-size: 16px;
    font-weight: 500;
    color: #111;
    line-height: 1.35;
    flex: 1;
    margin: 0;
}

/* Checkbox/radio-rutan */
.pewc-product-extra-groups .pewc-theme-element {
    border: 1.5px solid #cfd8e3;
    border-radius: 6px;
}

/* Aktivt kort */
.pewc-product-extra-groups .pewc-item.pewc-item-checkbox:has(input[type="checkbox"]:checked),
.pewc-product-extra-groups .pewc-item.pewc-item-radio:has(input[type="radio"]:checked) {
    border-color: #eef5ff !important;
    background: #eef5ff !important;
    box-shadow: 0 0 0 2px rgba(59,130,246,0.25);
}

/* Rutan när vald */
.pewc-product-extra-groups .pewc-checkbox-form-label input[type="checkbox"]:checked ~ .pewc-theme-element,
.pewc-product-extra-groups .pewc-radio-form-label input[type="radio"]:checked ~ .pewc-theme-element {
    background: #5b9ae6;
    border-color: #5b9ae6;
}

/* CUSTOM CHECKBOX (pao-toggle-checkbox) */
.pao-toggle-checkbox {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 26px !important;
    height: 26px !important;
    border-radius: 6px !important;
    border: 1px solid #d0d5dd !important;
    background-color: #fff !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-size: 60% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease !important;
}

.pao-toggle-checkbox:checked {
    background-color: #4A90E2 !important;
    border-color: #4A90E2 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-size: 60% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* SELECT KORT */
.pewc-product-extra-groups .pewc-item.pewc-item-select {
    display: grid !important;
    grid-template-columns: auto auto 1fr !important;
    align-items: center !important;
    gap: 12px !important;
}

.pewc-product-extra-groups .pewc-item.pewc-item-select > input.pao-toggle-checkbox {
    grid-column: 1 !important;
    grid-row: 1 !important;
}

.pewc-product-extra-groups .pewc-item.pewc-item-select > .pewc-item-field-image-wrapper {
    grid-column: 2 !important;
    grid-row: 1 !important;
}

.pewc-product-extra-groups .pewc-item.pewc-item-select > .pewc-item-field-wrapper {
    grid-column: 3 !important;
    grid-row: 1 !important;
}

/* Aktivt select-kort */
.pewc-product-extra-groups .pewc-item.pewc-item-select.active {
    border-color: #eef5ff !important;
    background: #eef5ff !important;
    box-shadow: 0 0 0 2px rgba(59,130,246,0.25) !important;
}

/* Hover */
.pewc-product-extra-groups .pewc-item.pewc-item-select:hover {
    border-color: #b9c7db;
}

/* BILD */
.pewc-product-extra-groups .pewc-item-field-image-wrapper {
    width: 80px;
    flex: 0 0 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pewc-product-extra-groups .pewc-item-field-image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: none !important;
}

/* TEXTDEL */
.pewc-product-extra-groups .pewc-item-field-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.pewc-product-extra-groups .pewc-field-label {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    color: #111;
}

.pewc-product-extra-groups .required {
    display: none;
}

/* DROPDOWN */
.pewc-product-extra-groups .pewc-select-wrapper {
    position: relative;
    display: inline-block;
    width: auto;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
		margin-bottom: 15px;
}

.pewc-product-extra-groups select.pewc-form-field {
    width: 180px;
    min-width: 180px;
    max-width: 180px;
    padding: 0 38px 0 14px;
    border: 1px solid #d6d6d6;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    color: #111;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: none !important;
	height: 34px !important;
}



/* PRODUCT -> COLUMN */
.pewc-item-products-column {
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    align-items: center !important;
    padding: 8px 25px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.pewc-product-extra-groups {
    padding: 0 !important;
    margin: 0 !important;
}

.pewc-item-products-column > input.pao-toggle-checkbox {
    grid-column: 1 !important;
    grid-row: 1 !important;
}

.pewc-item-products-column > .pewc-item-field-wrapper {
    grid-column: 2 !important;
    grid-row: 1 !important;
}

.pewc-item-products-column .pewc-checkbox-image-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 1px !important;
    border: none !important;
}

.pewc-item-products-column .pewc-checkbox-image-wrapper label {
    width: 90px !important;
    padding: 0 !important;
    margin-right: 15px !important;		
}

.pewc-item-products-column .pewc-checkbox-image-wrapper label img {
    width: 100% !important;
    display: block !important;
    box-shadow: none !important;
    background: none !important;
}

.pewc-item-products-column .pewc-checkbox-desc-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex: 1 !important;
    gap: 12px !important;
}

.pewc-item-products-column .pewc-radio-image-desc {
    flex: 1 !important;
    margin: 0 !important;
}

.pewc-item-products-column .pewc-radio-image-desc a {
    color: #1d1f1e !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    width: 150px !important;
    display: block !important;
}

.pewc-item-products-column .pewc-column-variants-wrapper,
.pewc-item-products-column .pewc-column-price-wrapper {
    margin: 0 !important;
}

.pewc-item-products-column .pewc-column-price-wrapper {
    white-space: nowrap !important;
    align-self: center !important;
}

.pewc-item-products-column select {
    width: 220px !important;
    height: 34px !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    color: #111 !important;
}

/* Aktivt product->column kort */
.pewc-item-products-column.is-active {
    background-color: #eef5ff !important;
    border-color: #eef5ff !important;
    box-shadow: 0 0 0 2px rgba(59,130,246,0.25) !important;
}

.pewc-item-products-column.is-active .pewc-checkbox-image-wrapper {
    background-color: #eef5ff !important;
}

/* Dölj extra pris och add-wrapper */
.pewc-item-products-column .pewc-variation-price {
    display: none !important;
}

.pewc-column-add-wrapper {
    display: none !important;
}

.pewc-column-wrapper .pewc-checkbox-image-wrapper.checked {
    border: none !important;
}

/* MOBIL */
@media (max-width: 768px) {
    .pewc-product-extra-groups select.pewc-form-field {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }

    .pewc-product-extra-groups .pewc-item.pewc-item-select > .pewc-item-field-image-wrapper {
        width: 55px !important;
        flex: 0 0 55px !important;
    }

    .pewc-item-products-column {
        gap: 1px !important;
        padding: 5px 12px !important;
    }

    .pewc-item-products-column .pewc-checkbox-image-wrapper label {
        width: 60px !important;
    }

    .pewc-item-products-column .pewc-checkbox-desc-wrapper {
        gap: 5px !important;
    }
}

/* Sektionstitlar */
.pewc-group-heading-wrapper h3 {
    font-family: 'Inter', sans-serif !important;
    font-size: 28px !important;
    font-weight: 600 !important;
    color: #111 !important;
 		margin-bottom: 8px !important;
}

.pewc-group-content-wrapper {
    margin-bottom: 40px !important;
}

/* Brödtext */
.pewc-group-description {
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    color: #555 !important;
    margin-bottom: 10px !important;
}

/* Standardinstallation */
.pewc-item:has(.pewc-information-fields) {
    border-width: 2px !important;
    padding: 30px !important;
    cursor: default !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
	  border-color: #b7cff5 !important;
    background: #eef5ff !important;
}

.pewc-item:has(.pewc-information-fields) input.pao-toggle-checkbox {
    display: none !important;
}

.pewc-item:has(.pewc-information-fields) table {
    display: none !important;
}

.pewc-item:has(.pewc-information-fields) .pewc-item-field-wrapper {
    text-align: center !important;
    align-items: center !important;
		height: 30px;
}

.pewc-item:has(.pewc-information-fields) .pewc-field-label {
		font-style: Inter;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #111 !important;
}

.pewc-item-checkbox .pewc-checkbox-form-label {
    display: flex !important;
    align-items: center !important;
}

.pewc-item-checkbox .pewc-checkbox-form-label > span:not(.pewc-theme-element) {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex: 1 !important;
}

.pewc-item-checkbox .pewc-separator {
    display: none !important;
}

.pewc-item-checkbox .pewc-checkbox-price::before {
    content: '+ ' !important;
}

.pewc-item-checkbox .pewc-checkbox-price {
    white-space: nowrap !important;
}

.pewc-item-checkbox:not(.pewc-item-products-column) .pewc-theme-element {
    background: #fff !important;
}

.pewc-item-checkbox:not(.pewc-item-products-column) .pewc-checkbox-form-label input[type="checkbox"]:checked ~ .pewc-theme-element {
    background: #5b9ae6 !important;
    border-color: #5b9ae6 !important;
}

#pewc-options-total-label,
#pewc-grand-total-label,
#pewc-options-total,
#pewc-grand-total {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
		color: black;
}

#pewc-grand-total-label,
#pewc-grand-total {
    font-family: 'Inter', sans-serif !important;
    font-size: 20px !important;
    font-weight: 500 !important;
}




























/* ============================================
   SIDOVARUKORG – WooCommerce mini-cart
============================================ */

/* Font genomgående */
.widget_shopping_cart_content,
.widget_shopping_cart_content * {
    font-family: 'Inter', sans-serif !important;
}

.widget_shopping_cart_content,
.widget_shopping_cart_content .woocommerce-mini-cart {
    overflow-x: hidden;
}

.widget_shopping_cart_content .woocommerce-mini-cart {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Header "Din kundvagn N artiklar" */
.ez-cart-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e1e6ec;
}

.ez-cart-header-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.ez-cart-header-count {
    font-size: 14px;
    color: #777;
    font-weight: 500;
}

/* Flytta upp X-krysset så det hamnar bredvid headern */
.elementor-menu-cart__close-button {
    margin-bottom: -29px;
}

/* Produktkort */
.widget_shopping_cart_content .woocommerce-mini-cart li.mini_cart_item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid #e1e6ec;
    border-radius: 12px;
    padding: 18px 40px 18px 16px;
    margin-bottom: 14px;
    overflow: hidden;
}

.widget_shopping_cart_content .woocommerce-mini-cart li.mini_cart_item img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.widget_shopping_cart_content .woocommerce-mini-cart li.mini_cart_item > a:not(.remove) {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
}

/* Dölj WooCommerce's variations (vi visar dem själva i PHP) */
.widget_shopping_cart_content .woocommerce-mini-cart li.mini_cart_item dl.variation {
    display: none !important;
}

/* Produktnamn */
.ez-cart-item-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
    margin-bottom: 6px;
}

/* Variations-text */
.ez-cart-item-variation {
    margin-bottom: 10px;
    font-size: 12px;
    color: #777;
    line-height: 1.6;
}

.ez-cart-item-variation strong {
    font-weight: 600;
}

/* +/− och pris på samma rad */
.ez-cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
}

.ez-qty-controls {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.ez-qty-btn {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    border: 1px solid #e1e6ec !important;
    background: #fff !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    color: #555 !important;
    cursor: pointer;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.ez-qty-btn:hover {
    background: #f1f3f5 !important;
}

.ez-qty-btn:disabled {
    opacity: 0.4 !important;
    cursor: not-allowed !important;
}

.ez-qty-btn:disabled:hover {
    background: #fff !important;
}

.ez-qty-value {
    min-width: 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #111;
}

.ez-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-shrink: 0;
    white-space: nowrap;
}

.ez-price-original {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.ez-price-current {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

/* Ta bort-knapp (x) på produkter — SAMMA stil som kassans krysset */
.widget_shopping_cart_content .woocommerce-mini-cart li.mini_cart_item a.remove,
.ez-checkout-remove {
    position: absolute !important;
    top: 14px;
    right: 14px;
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    background: #f1f3f5 !important;
    color: #888 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    z-index: 2;
    box-shadow: none !important;
    border: none !important;
}

.widget_shopping_cart_content .woocommerce-mini-cart li.mini_cart_item a.remove:hover,
.ez-checkout-remove:hover {
    background: #fde2e1 !important;
    color: #c0392b !important;
}

/* Delsumma */
.widget_shopping_cart_content .woocommerce-mini-cart__total.total {
    border: none !important;
    border-top: 1px solid #e1e6ec !important;
    padding: 16px 4px;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 600;
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Knappar */
.widget_shopping_cart_content .woocommerce-mini-cart__buttons.buttons {
    margin-top: -20px !important;
    padding-top: 0 !important;
}

.widget_shopping_cart_content a.button.wc-forward {
    display: block !important;
    width: 100% !important;
    text-align: center;
    padding: 14px 0;
    border-radius: 10px !important;
    margin: 0 0 8px 0 !important;
    border: none !important;
    box-shadow: none !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.widget_shopping_cart_content a.button.wc-forward:last-of-type {
    margin-bottom: 0 !important;
}

/* Dölj "Visa varukorg"-knappen helt i sidovarukorgen */
.widget_shopping_cart_content a.button.wc-forward:not(.checkout) {
    display: none !important;
}

.widget_shopping_cart_content a.button.checkout.wc-forward {
    background: #4DA7CA !important;
    color: #fff !important;
}

.widget_shopping_cart_content a.button.checkout.wc-forward:hover {
    background: #3d8aa8 !important;
}

/* Bredare sidopanel */
.elementor-menu-cart__main {
    width: 480px !important;
}

@media (max-width: 600px) {
    .elementor-menu-cart__main {
        width: 100% !important;
    }
}

/* Dölj "(inkl. moms)" från priser i produktkort (gäller både sidovarukorg + kassa) */
.widget_shopping_cart_content .woocommerce-mini-cart li.mini_cart_item .ez-price-current .tax_label,
.ez-checkout-price .tax_label {
    display: none !important;
}


/* ============================================
   KASSAN – produktlista i samma stil som sidovarukorgen
============================================ */

/* Dölj WooCommerce-rubrik */
#order_review_heading {
    margin-top: 10px;
		margin-bottom: 0px;
}

.woocommerce-billing-fields h3 {
	display: none;
}

/* Bryt upp tabellstrukturen till block-layout */
.woocommerce-checkout-review-order-table thead {
    display: none !important;
}

.woocommerce-checkout-review-order-table,
.woocommerce-checkout-review-order-table tbody,
.woocommerce-checkout-review-order-table tr.cart_item {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.woocommerce-checkout-review-order-table tr.cart_item {
    margin-bottom: -40px;
}

.woocommerce-checkout-review-order-table tr.cart_item td.product-name {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    border: none !important;
    box-sizing: border-box !important;
}

.woocommerce-checkout-review-order-table tr.cart_item td.product-total {
    display: none !important;
}

/* Dölj WooCommerce's egen variations-/kvantitetsdata (vi visar dem själva i PHP) */
.woocommerce-checkout-review-order-table tr.cart_item td.product-name dl.variation,
.woocommerce-checkout-review-order-table tr.cart_item td.product-name .product-quantity,
.woocommerce-checkout-review-order-table tr.cart_item td.product-name strong.product-quantity,
.woocommerce-checkout-review-order-table tr.cart_item td.product-name > .quantity {
    display: none !important;
}

/* Produktkortet */
.ez-checkout-item {
    position: relative;
    display: flex;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #e1e6ec;
    border-radius: 12px;
    padding: 18px 40px 18px 16px;
    font-family: 'Inter', sans-serif;
}

.ez-checkout-thumb-wrap {
    width: 68px;
    height: 68px;
    background: #f5f7fa;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ez-checkout-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.ez-checkout-content {
    flex: 1 1 auto;
    min-width: 0;
}

.ez-checkout-item-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
    margin-bottom: 6px;
}

.ez-checkout-item-variation {
    margin-bottom: 10px;
    font-size: 12px;
    color: #777;
    line-height: 1.6;
}

.ez-checkout-item-variation strong {
    font-weight: 600;
}

.ez-checkout-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
}

.ez-checkout-qty-controls {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.ez-checkout-qty-btn {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    border: 1px solid #e1e6ec !important;
    background: #fff !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    color: #555 !important;
    cursor: pointer;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.ez-checkout-qty-btn:hover {
    background: #f1f3f5 !important;
}

.ez-checkout-qty-btn:disabled {
    opacity: 0.4 !important;
    cursor: not-allowed !important;
}

.ez-checkout-qty-value {
    min-width: 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #111;
}

.ez-checkout-price {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
	
}

/* Mobil: bryt upp Elementors två-kolumn-grid till en kolumn */
@media (max-width: 768px) {
    .e-checkout__container {
        display: block !important;
        grid-template-columns: none !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .e-checkout__column,
    .e-checkout__column.e-checkout__column-start,
    .e-checkout__column.e-checkout__column-end {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

.ez-checkout-price {
    visibility: hidden;
}

.ez-checkout-price.ez-checkout-price-ready {
    visibility: visible;
}

.woocommerce-checkout-review-order-table tfoot {
    margin-top: 20px;
    display: block;
}




/* Qliro i varukorgen */
#qliro-one-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

#qliro-order-review {
    grid-column: 1;
}

#qliro-one-iframe-wrapper {
    grid-column: 2;
}

@media (max-width: 768px) {
    #qliro-one-wrapper {
        grid-template-columns: 1fr;
    }

    #qliro-order-review,
    #qliro-one-iframe-wrapper {
        grid-column: 1;
    }
}

.qliro-one-checkout-select-other-wrapper a {
	margin-top: -100px !important;
    display: inline-block;
    background-color: #085F81 !important;
    border-radius: 6px;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
}

.qliro-one-checkout-select-other-wrapper a:hover {
    background: black !important;
}

#qliro-order-review {
    background: #f7f8fa;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
}