/**
 * CartPops Drawer Meters Styles
 */

/* Common styles for all meters */
.cpops-drawer-meter {
    margin: 16px 0 !important;
    position: relative !important;
    display: block !important;
    visibility: visible !important;
}

.cpops-drawer-meter__header {
    display: flex !important;
    justify-content: space-between !important;
    margin-bottom: 8px !important;
}

.cpops-drawer-meter__title {
    font-weight: 600 !important;
    font-size: 14px !important;
}

.cpops-drawer-meter__info {
    font-size: 14px !important;
}

.cpops-drawer-meter__bar {
    height: 6px !important;
    background-color: #eaeaea !important;
    border-radius: 3px !important;
    overflow: hidden !important;
}

.cpops-drawer-meter__progress {
    height: 100% !important;
    background-color: var(--color-cpops-accent-color) !important;
    border-radius: 3px !important;
    transition: width 0.5s ease !important;
}

/* Quantity meter specific styles */
.cpops-drawer-quantity-meter .cpops-drawer-meter__bar {
    background-color: var(--color-cpops-quantity-meter-background) !important;
}

.cpops-drawer-quantity-meter .cpops-drawer-meter__progress {
    background-color: var(--color-cpops-quantity-meter-background-active) !important;
}

/* Weight meter specific styles */
.cpops-drawer-weight-meter .cpops-drawer-meter__bar {
    background-color: var(--color-cpops-weight-meter-background) !important;
}

.cpops-drawer-weight-meter .cpops-drawer-meter__progress {
    background-color: var(--color-cpops-weight-meter-background-active) !important;
}

/* Shipping meter specific styles */
.cpops-drawer-shipping-meter .cpops-drawer-meter__bar {
    background-color: var(--color-cpops-free-shipping-meter-background) !important;
}

.cpops-drawer-shipping-meter .cpops-drawer-meter__progress {
    background-color: var(--color-cpops-free-shipping-meter-background-active) !important;
} 