.wcst-container {
    width: 100%;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    line-height: 1.4;
}

.wcst-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
	padding: 10px 15px;
}

.wcst-text {
    display: flex;
    align-items: center;
}

.wcst-left {
    margin-right: 10px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wcst-right {
    margin-left: auto;
    white-space: nowrap;
}

.wcst-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 128, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 128, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 128, 0, 0);
    }
}

.wcst-free-shipping-notice {
    cursor: help;
    margin-left: 5px;
    font-size: 0.9em;
    color: #666;
}

/* Responsive styles */
@media (max-width: 768px) {
    .wcst-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .wcst-left, .wcst-right {
        font-size: 0.9em;
    }

    .wcst-right {
        margin-left: 10px;
    }
}

/* Tooltip styles */
.wcst-tooltip {
    position: relative;
    display: inline-block;
}

.wcst-tooltip .wcst-tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
}

.wcst-tooltip:hover .wcst-tooltiptext {
    visibility: visible;
    opacity: 1;
}