/**
 * NF Digital Shop - Sidecart Widget CSS
 */

/* Wrapper - Horizontal Flex */
.nf-cart-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Icon - Flex Item 1 */
.nf-cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nf-cart-icon i {
    font-size: 24px;
    color: currentColor;
}

/* Info - Flex Item 2 mit vertikalem Layout */
.nf-cart-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Preis */
.nf-cart-price {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

/* MwSt */
.nf-cart-tax {
    font-size: 12px;
    opacity: 0.7;
    line-height: 1.2;
}

/* Sidecart Tab Styling */
.elementor-panel-navigation-tab[data-tab="tab_sidecart"]:before {
    content: "\e93a"; /* Elementor cart icon */
    font-family: "eicons";
    display: block;
    font-size: 28px;
    margin-bottom: 8px;
}

/* Alternative selector */
#elementor-panel-navigation [data-tab="tab_sidecart"]:before {
    content: "\e93a";
    font-family: "eicons";
    display: block;
    font-size: 28px;
    margin-bottom: 8px;
}

/* Flex layout for icon above text */
.elementor-panel-navigation-tab[data-tab="tab_sidecart"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Sidecart visibility override for widget */
body.sidecart-open #wcc-sidecart-wrapper {
    display: block !important;
}

#wcc-sidecart-wrapper.active {
    display: block !important;
}

.wcc-sidecart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999998;
}

body.sidecart-open .wcc-sidecart-overlay {
    opacity: 1;
    visibility: visible;
}