/* =============================================================
   WOOCOMMERCE — Product page WC overrides
   Sources: style.css L201-249; Customizer CSS L42-99, L194-244,
            L312-419, L859-1035, L1038-1232, L1284-1463, L1610-1686,
            L2670-2812
   ============================================================= */

/* ==================== PRODUCT PAGE BACKGROUNDS ==================== */

/* Let body noise texture show through on single product */
body.single-product #wrapper,
body.single-product .site,
body.single-product .site-wrapper,
body.single-product #content,
body.single-product .content-container,
body.single-product .site-content,
body.single-product main#main,
body.single-product .site-main,
body.single-product .entry-content-wrap,
body.single-product .woocommerce,
body.single-product #inner-content {
    background-color: transparent !important;
    background-image: none !important;
}

.single-product #content,
.single-product .site-content,
.single-product .content-container,
.single-product .entry-content {
    overflow: visible !important;
}

/* ==================== PRODUCT TITLE & BREADCRUMB ==================== */

/* Royal Indigo Polish: product title */
.single-product .product_title.entry-title {
    color: var(--global-palette3) !important;
    font-size: clamp(1.5rem, 3vw, 2rem) !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 0.5rem !important;
}

/* Word spacing on archive title */
.product_title {
    word-spacing: 0.2rem;
}

/* Breadcrumb */
.single-product .kadence-breadcrumbs,
.single-product nav.woocommerce-breadcrumb {
    font-size: 12px !important;
    color: var(--global-palette5) !important;
    margin-bottom: 12px !important;
    opacity: 0.8;
}

.single-product nav.woocommerce-breadcrumb a {
    color: var(--global-palette5) !important;
    text-decoration: none !important;
}

.single-product nav.woocommerce-breadcrumb a:hover {
    color: var(--global-palette1) !important;
}

/* ==================== PRODUCT GALLERY ==================== */

.single-product .woocommerce-product-gallery {
    border-radius: 16px !important;
    overflow: hidden !important;
}

.kadence-product-gallery-thumbnails {
    margin-top: 20px !important;
    padding-top: 15px !important;
    border-top: 1px solid #ADAAA840;
}

/* ==================== PRICE ==================== */

/* Royal Indigo Polish: price */
.single-product .price,
.single-product .price .woocommerce-Price-amount,
.single-product span.price {
    color: var(--global-palette1) !important;
    font-size: 1.65rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
}

/* ==================== STOCK STATUS ==================== */

.single-product .stock.in-stock {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: rgba(22, 163, 74, 0.08) !important;
    color: #15803d !important;
    border: 1px solid rgba(22, 163, 74, 0.2) !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 4px 12px !important;
    letter-spacing: 0.02em !important;
}

.single-product .stock.in-stock::before {
    content: "●" !important;
    font-size: 8px !important;
    color: #16a34a !important;
}

.single-product .stock.out-of-stock {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: rgba(220, 38, 38, 0.07) !important;
    color: #b91c1c !important;
    border: 1px solid rgba(220, 38, 38, 0.2) !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 4px 12px !important;
}

/* Out-of-stock warning icon */
body.single-product .product p.stock.out-of-stock::before {
    content: "!";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: var(--global-palette13);
    color: var(--global-palette9);
    border-radius: 50%;
    font-size: 11px;
    margin-right: 8px;
    font-weight: 800;
}

/* ==================== SHORT DESCRIPTION ==================== */

.single-product .woocommerce-product-details__short-description {
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: var(--global-palette5) !important;
    margin-bottom: 20px !important;
}

.single-product .woocommerce-product-details__short-description li {
    margin-bottom: 6px !important;
    padding-left: 4px !important;
}

.single-product .woocommerce-product-details__short-description li strong {
    color: var(--global-palette1) !important;
    font-weight: 700 !important;
}

/* Short description density */
.woocommerce-product-details__short-description p {
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 25px;
}

.product-short-description {
    max-width: 65ch;
}

/* ==================== SUMMARY PANEL ==================== */

.single-product div.product div.summary {
    padding: 0 !important;
}

/* Trust badges row */
.single-product .kadence-column .kt-icon-list-item-wrap,
.single-product .preem-trust-bar {
    font-size: 12px !important;
    color: var(--global-palette5) !important;
}

/* ==================== UPSELLS / RELATED ==================== */

.single-product .up-sells,
.single-product .related {
    margin-top: 60px !important;
    padding-top: 40px !important;
    border-top: 1px solid var(--global-palette6) !important;
}

.single-product .up-sells h2,
.single-product .related h2 {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    color: var(--global-palette3) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    margin-bottom: 24px !important;
}

.single-product .up-sells ul.products li.product {
    background: var(--global-palette9) !important;
    border: 1.5px solid var(--global-palette6) !important;
    border-radius: 14px !important;
    padding: 16px !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
}

.single-product .up-sells ul.products li.product:hover {
    border-color: var(--global-palette1) !important;
    box-shadow: 0 8px 24px rgba(109, 40, 217, 0.1) !important;
    transform: translateY(-2px) !important;
}

/* ==================== VARIATION FORM ==================== */

/* Hide WC variation dl — deliver_time_calc shows variation info above form */
.single-product dl.variation {
    display: none !important;
}

/* Hide variation reset link */
.reset_variations {
    display: none !important;
}

/* Variation form layout */
form.cart .variations {
    margin-bottom: 0 !important;
}

.woocommerce div.product form.cart .variations th {
    margin-bottom: 8px !important;
    font-weight: 700;
    line-height: 1;
}

.vi-wpvs-variation-wrap {
    margin-bottom: 25px;
}

.woocommerce-variation-add-to-cart {
    margin-top: 0 !important;
}

/* ==================== SWATCHES ==================== */

/* Out-of-stock swatch — wipe plugin icons */
.vi-wpvs-option-wrap-out-of-stock-attribute::before,
.vi-wpvs-option-wrap-out-of-stock-attribute::after,
.vi-wpvs-option-wrap-out-of-stock-attribute span::before,
.vi-wpvs-option-wrap-out-of-stock-attribute span::after {
    display: none !important;
}

.vi-wpvs-option-wrap-out-of-stock-attribute {
    position: relative;
    cursor: not-allowed !important;
}

/* Greyed-out swatch circle */
.vi-wpvs-option-wrap-out-of-stock-attribute .vi-wpvs-option-color {
    filter: grayscale(1) !important;
    opacity: 0.2 !important;
    border: 1px dashed var(--global-palette6) !important;
}

/* Bold red diagonal slash */
.vi-wpvs-option-wrap-out-of-stock-attribute::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 3px !important;
    background-color: var(--global-palette13) !important;
    display: block !important;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 20;
    pointer-events: none;
    border-radius: 4px !important;
    box-shadow: 0 0 2px rgba(255,255,255,0.5);
}

/* Selected label */
/* selected color label */
.vi-wpvs-label-selected {
    color: var(--global-palette1) !important;
    font-weight: 500 !important;
}

/* Single-column variation layout */
.vi-wpvs-variation-style {
    grid-template-columns: 1fr !important;
}

/* Attribute label size */
th.label {
    font-size: 18px !important;
    color: var(--global-palette5) !important;
}

/* Smooth transitions for all swatches */
.vi-wpvs-option-wrap {
    transition: all 0.25s ease !important;
    border-color: transparent !important; /* Hide the plugin's default clunky border */
    /* Draw a default subtle border using box-shadow instead */
    box-shadow: 0 0 0 1px var(--global-palette6) !important; 
}

/* Soft lift effect AND guaranteed hover border */
.vi-wpvs-option-wrap:hover {
    transform: translateY(-2px);
    /* Shadow 1: Draws the 1px Palette 5 hover border 
       Shadow 2: Adds the soft premium drop shadow 
    */
    box-shadow: 0 0 0 1px var(--global-palette5), 0 4px 10px rgba(26, 23, 20, 0.08) !important;
}

/* Modern offset ring for the selected color */
.vi-wpvs-option-wrap.vi-wpvs-option-active,
.vi-wpvs-option-wrap.vi-wpvs-option-wrap-selected {
    /* Shadow 1: Creates a 2px white gap 
       Shadow 2: Creates the 4px solid purple outer ring 
    */
    box-shadow: 0 0 0 2px var(--global-palette9), 0 0 0 4px var(--global-palette1) !important;
    transform: scale(0.95); 
}

/* Ensure images inside image swatches fit the rounded corners */
.vi-wpvs-option-wrap img {
    border-radius: 7px !important; 
}

/* ==================== ADD TO CART BUTTON ==================== */

.woocommerce-variation-add-to-cart,
form.cart {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
}

button.single_add_to_cart_button {
    flex: 1 1 auto !important;
}

button.single_add_to_cart_button.button {
    height: 52px !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, var(--global-palette1) 0%, var(--global-palette4) 100%) !important;
    color: var(--global-palette9) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    padding: 0 28px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    flex-grow: 1 !important;
    width: auto !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

button.single_add_to_cart_button.button::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.12) 100%) !important;
    opacity: 0 !important;
    transition: opacity 0.25s ease !important;
}

button.single_add_to_cart_button.button:hover::before { opacity: 1 !important; }

button.single_add_to_cart_button.button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(109, 40, 217, 0.35) !important;
}

button.single_add_to_cart_button.button:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 4px rgba(109, 40, 217, 0.15) !important;
}

button.single_add_to_cart_button.button:active::before { opacity: 0 !important; }

button.single_add_to_cart_button.button::after {
    content: '→' !important;
    font-size: 16px !important;
    transition: transform 0.25s ease !important;
    display: inline-block !important;
}

button.single_add_to_cart_button.button:hover::after {
    transform: translateX(4px) !important;
}

button.single_add_to_cart_button.button:disabled {
    background: var(--global-palette6) !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
    transform: none !important;
    box-shadow: none !important;
}

button.single_add_to_cart_button.button:disabled::after { transform: none !important; }

button.single_add_to_cart_button.disabled {
    background-color: var(--global-palette6) !important;
    color: var(--global-palette5) !important;
    opacity: 1 !important;
}

.quantity.spinners-added input.minus, .quantity.spinners-added input.plus {
	font-size: 20px !important;
}

.kadence-cart-button-large.woocommerce div.product .kwt-add-to-cart-single form.cart div.quantity.spinners-added .qty {
	line-height: 52px !important;
}

.single-product p.stock:nth-child(1) {
	display: none !important;
}

/* Suppress WC "view cart" link after AJAX add */
.added_to_cart {
    display: none !important;
}

/* Ensure single variation wrap is full width */
.woocommerce-variation .single_variation,
.single_variation_wrap {
    width: 100% !important;
}

/* ==================== CWG (OUT-OF-STOCK NOTIFY) ==================== */

.cwg_popup_submit {
    padding: 15px 20px !important;
    width: 100%;
}

body.single-product .product input.cwg_popup_submit {
    display: block !important;
    width: 100% !important;
    height: 48px !important;
    margin: 0 !important;
    border-radius: 8px !important;
    border: none !important;
    background: var(--global-palette4) !important;
    color: var(--global-palette9) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 4px rgba(85, 60, 110, 0.2) !important;
}

body.single-product .product input.cwg_popup_submit:hover {
    background: var(--global-palette4) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(109, 40, 217, 0.35) !important;
}

/* ==================== PEWC APPLE CARDS (Product Extra Options) ==================== */

/* List container */
ul.pewc-checkbox-group-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    padding: 0 !important;
    margin: 0 !important;
}

ul.pewc-checkbox-group-wrapper li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

/* Card (unselected) */
label.pewc-radio-form-label {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 20px 25px !important;
    background-color: var(--global-palette9) !important;
    border: 2px solid var(--global-palette6) !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    position: relative !important;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    font-weight: 500 !important;
    color: var(--global-palette3) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02) !important;
}

/* Hover (non-active) */
label.pewc-radio-form-label:not(.active-swatch):hover {
    border-color: var(--global-palette6) !important;
    background-color: var(--global-palette8) !important;
    transform: translateY(-1px);
}

/* Selected state */
label.pewc-radio-form-label.active-swatch {
    background-color: var(--global-palette9) !important;
    border-color: var(--global-palette4) !important;
    box-shadow: 0 4px 12px rgba(85, 60, 110, 0.15) !important;
    z-index: 1;
}

/* Checkmark badge */
label.pewc-radio-form-label.active-swatch::after {
    content: "✓";
    position: absolute !important;
    top: -10px !important;
    right: -10px !important;
    width: 24px !important;
    height: 24px !important;
    background-color: var(--global-palette4) !important;
    color: var(--global-palette9) !important;
    border-radius: 50% !important;
    border: 2px solid var(--global-palette9) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
}

/* Hide default radio */
input.pewc-radio-form-field {
    display: none !important;
}

/* Text + price wrapper */
span.pewc-radio-option-text {
    display: flex !important;
    width: 100% !important;
    justify-content: flex-start !important;
    align-items: center !important;
    font-size: 1.05rem !important;
    gap: 6px !important;
}

/* Price pill — fixed corrupted white-space property */
span.pewc-option-cost-label {
    margin-left: auto !important;
    font-weight: 700 !important;
    color: var(--global-palette4) !important;
    background: var(--global-palette7) !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
    font-size: 0.9rem !important;
    white-space: nowrap !important;
}

/* Emoji sizing */
span.pewc-radio-option-text img.emoji {
    margin: 0 !important;
    width: 1.2em !important;
    height: 1.2em !important;
    vertical-align: middle !important;
}

/* Hide separator */
span.pewc-separator {
    display: none !important;
}

/* Title glow */
h4.pewc-field-label {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    color: var(--global-palette3) !important;
    margin-bottom: 15px !important;
    display: flex !important;
    align-items: center !important;
}

h4.pewc-field-label::after {
    content: "";
    display: block;
    flex-grow: 1;
    height: 1px;
    background: var(--global-palette6);
    margin-left: 15px;
}

/* PEWC sections full width (push ATC to next row) */
.pewc-product-extra-groups-wrap,
.pewc-total-field-wrapper {
    width: 100% !important;
    flex: 0 0 100% !important;
    margin-bottom: 10px !important;
}

/* Price totals block */
.pewc-total-field-wrapper {
    background: var(--global-palette7) !important;
    padding: 15px 20px !important;
    border-radius: 8px !important;
    border: 1px solid var(--global-palette6) !important;
}

.pewc-total-field-wrapper p {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 8px !important;
    font-size: 0.9rem !important;
    color: var(--global-palette5) !important;
    line-height: 1.2 !important;
}

.pewc-total-field-wrapper p:last-child {
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    padding-top: 10px !important;
    border-top: 1px dashed var(--global-palette6) !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    color: var(--global-palette3) !important;
}

/* WP element button */
.wp-element-button {
    font-size: 1rem !important;
}

/* ==================== PRODUCT ATTRIBUTES TABLE ==================== */

/* Reset margins in attributes */
.product-layout-additional .woocommerce-product-attributes-item__value p {
    margin: 0 !important;
    padding: 0 !important;
    text-align: right !important;
}

.product-layout-additional .woocommerce-product-attributes table,
.product-layout-additional .woocommerce-product-attributes tbody,
.product-layout-additional .woocommerce-product-attributes tr,
.product-layout-additional .woocommerce-product-attributes th,
.product-layout-additional .woocommerce-product-attributes td {
    border: none !important;
    outline: none !important;
    background: transparent !important;
}

/* Attribute table (card style) */
.product-layout-additional .woocommerce-product-attributes,
.kt-tabs-content-wrap .woocommerce-product-attributes {
    width: 100% !important;
    max-width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 12px !important;
    margin: 20px 0 !important;
    border: none !important;
}

/* Attribute card row */
.product-layout-additional .woocommerce-product-attributes-item,
.kt-tabs-content-wrap .woocommerce-product-attributes-item {
    background-color: var(--global-palette9) !important;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--global-palette6) !important;
    border-left: 4px solid var(--global-palette1) !important;
    padding: 16px 20px !important;
    box-sizing: border-box !important;
    display: flex !important;
    width: 100% !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 20px;
    transition: all 0.2s ease-in-out;
}

.product-layout-additional .woocommerce-product-attributes-item:hover,
.kt-tabs-content-wrap .woocommerce-product-attributes-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(109, 40, 217, 0.15);
}

/* Label — fixed corrupted white-space property */
.product-layout-additional .woocommerce-product-attributes-item__label,
.kt-tabs-content-wrap .woocommerce-product-attributes-item__label {
    font-weight: 700 !important;
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--global-palette5) !important;
    flex: 0 0 35%;
    max-width: 35%;
    text-align: left !important;
    white-space: normal !important;
    line-height: 1.4;
    background: transparent !important;
}

/* Value */
.product-layout-additional .woocommerce-product-attributes-item__value,
.kt-tabs-content-wrap .woocommerce-product-attributes-item__value {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--global-palette3) !important;
    flex: 1 1 auto;
    width: 65%;
    text-align: right !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center;
    background: transparent !important;
}

/* Attribute table mobile */
@media (max-width: 767px) {
    .product-layout-additional .woocommerce-product-attributes-item,
    .kt-tabs-content-wrap .woocommerce-product-attributes-item {
        padding: 10px 12px !important;
        gap: 10px !important;
        border-left-width: 3px !important;
    }

    .product-layout-additional .woocommerce-product-attributes-item__label,
    .kt-tabs-content-wrap .woocommerce-product-attributes-item__label {
        font-size: 0.7rem !important;
        flex: 0 0 40% !important;
        max-width: 40% !important;
    }

    .product-layout-additional .woocommerce-product-attributes-item__value,
    .kt-tabs-content-wrap .woocommerce-product-attributes-item__value {
        font-size: 0.9rem !important;
        width: 60% !important;
    }
}

/* ==================== PEWC RADIO CHECKBOX IMAGE ==================== */

.child-product-wrapper .pewc-radio-checkbox-image-wrapper {
    display: flex !important;
    gap: 15px;
    flex-direction: row !important;
    align-items: center;
    border-radius: 12px;
    border-width: 3px !important;
}

.child-product-wrapper .pewc-radio-checkbox-image-wrapper:hover {
    border-color: var(--global-palette1);
}

.child-product-wrapper .pewc-radio-checkbox-image-wrapper.checked {
    border-color: var(--global-palette1);
    position: relative;
}

.child-product-wrapper .pewc-radio-checkbox-image-wrapper.checked::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--global-palette1);
    opacity: 0.2;
    border-radius: 9px;
    padding: 3px;
}

.child-product-wrapper .pewc-radio-checkbox-image-wrapper img.attachment-thumbnail {
    height: 50px !important;
    width: 50px !important;
}

.pewc-radio-image-desc {
    display: flex !important;
    justify-content: center;
    gap: 15px;
    font-size: 16px !important;
    font-weight: 500;
}

.child-product-wrapper .pewc-child-product-price-label {
    color: var(--global-palette2);
    font-weight: 300;
}

/* ==================== FSM STOCK / DELIVERY OVERRIDES ==================== */

/* Prevent extra space when fsm-stock-container is empty */
.fsm-stock-container {
    margin: 0 !important;
}

/* Hide last duplicate element in container */
.fsm-stock-container :last-of-type {
    display: none !important;
}

/* Strip plugin box styling from delivery info */
.fsm-delivery-info {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

.fsm-delivery-dates {
    font-weight: 500;
    color: var(--global-palette5);
}

/* ==================== MY ACCOUNT ==================== */

/* Sidebar navigation */
.woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid var(--global-palette6);
    border-radius: 8px;
    overflow: hidden;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid var(--global-palette6);
    color: var(--global-palette5);
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    background-color: var(--global-palette8);
    color: var(--global-palette1);
    padding-left: 25px;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    background-color: var(--global-palette1);
    color: var(--global-palette9) !important;
    font-weight: 600;
}

.woocommerce-MyAccount-navigation ul li:last-child a {
    border-bottom: none;
}

/* Sidebar icons (Dashicons) */
.woocommerce-MyAccount-navigation ul li a::before {
    font-family: "Dashicons";
    margin-right: 10px;
    font-weight: normal;
    font-size: 18px;
    vertical-align: middle;
}

.woocommerce-MyAccount-navigation-link--dashboard a::before    { content: "\f226"; }
.woocommerce-MyAccount-navigation-link--orders a::before       { content: "\f174"; }
.woocommerce-MyAccount-navigation-link--downloads a::before    { content: "\f316"; }
.woocommerce-MyAccount-navigation-link--edit-address a::before { content: "\f102"; }
.woocommerce-MyAccount-navigation-link--edit-account a::before { content: "\f110"; }
.woocommerce-MyAccount-navigation-link--customer-logout a::before { content: "\f153"; }
.woocommerce-MyAccount-navigation-link--payment-methods a::before { content: "\f488"; }
.woocommerce-MyAccount-navigation-link--price-requests a::before,
.woocommerce-MyAccount-navigation-link--quotes a::before,
.woocommerce-MyAccount-navigation-link--request-quote a::before { content: "\f491"; }

/* Hide dashboard boilerplate paragraphs */
.woocommerce-MyAccount-content > p:nth-of-type(1),
.woocommerce-MyAccount-content > p:nth-of-type(2) {
    display: none;
}

/* Email verification badge */
.alg-wc-ev-verification-info {
    background-color: color-mix(in srgb, var(--global-palette11) 15%, white);
    border: 1px solid color-mix(in srgb, var(--global-palette11) 15%, white);
    border-left: 5px solid var(--global-palette11);
    border-radius: 6px;
    padding: 15px 20px;
    margin-bottom: 25px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.alg-wc-ev-verification-info::before {
    content: "\f147";
    font-family: "Dashicons";
    font-size: 24px;
    color: var(--global-palette11);
    margin-right: 15px;
}

/* Hungarian label override */
.alg-wc-ev-custom-msg {
    font-size: 0 !important;
    color: transparent;
    display: flex;
    align-items: center;
}

.alg-wc-ev-custom-msg::before {
    content: "Fiók státusz: ";
    font-size: 15px;
    color: var(--global-palette11);
    font-weight: 500;
    margin-right: 5px;
}

.alg-wc-ev-custom-msg strong {
    font-size: 12px !important;
    color: var(--global-palette11);
    background: color-mix(in srgb, var(--global-palette11) 15%, white);
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 5px;
    display: inline-block;
}

/* Google login iframe fix */
.xoo-sl-btn-google .xoo-sl-goo-btn {
    width: 100% !important;
    overflow: visible !important;
    display: flex !important;
    justify-content: center !important;
}

.xoo-sl-btn-google iframe {
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 44px !important;
}

/* ==================== MINI-CART ==================== */

.woocommerce-mini-cart-item span.quantity {
    color: var(--global-palette5) !important;
}

/* ==================== CARD PANEL ==================== */

#card-panel {
    background-color: var(--global-palette9) !important;
}
