.woo-atc-qty-widget-2d34e479 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.woo-atc-qty-widget-2d34e479 .product-price-2d34e479 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111;
}

.woo-atc-qty-widget-2d34e479 .delivery-badge-2d34e479 {
    background: #e5f6ed;
    color: #0b7a37;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
    width: fit-content;
}

.woo-atc-qty-widget-2d34e479 .atc-controls-2d34e479 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
}

.woo-atc-qty-widget-2d34e479 .qty-wrapper-2d34e479 {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    height: 48px;
}

.woo-atc-qty-widget-2d34e479 .qty-btn-2d34e479 {
    background: #f7f7f7;
    border: none;
    width: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
}
.woo-atc-qty-widget-2d34e479 .qty-btn-2d34e479:hover { background: #e5e5e5; }

.woo-atc-qty-widget-2d34e479 .qty-input-2d34e479 {
    width: 50px;
    border: none;
    text-align: center;
    -moz-appearance: textfield;
    font-weight: 600;
    box-shadow: none !important;
}
.woo-atc-qty-widget-2d34e479 .qty-input-2d34e479::-webkit-outer-spin-button,
.woo-atc-qty-widget-2d34e479 .qty-input-2d34e479::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.woo-atc-qty-widget-2d34e479 .atc-btn-2d34e479,
.woo-atc-qty-widget-2d34e479 .buy-now-btn-2d34e479 {
    flex: 1;
    min-width: 140px;
    height: 48px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.woo-atc-qty-widget-2d34e479 .atc-btn-2d34e479 {
    background: #111;
    color: #fff;
}
.woo-atc-qty-widget-2d34e479 .atc-btn-2d34e479:hover { opacity: 0.85; }

.woo-atc-qty-widget-2d34e479 .buy-now-btn-2d34e479 {
    background: #FFD814; /* Premium retail feel */
    color: #111;
}
.woo-atc-qty-widget-2d34e479 .buy-now-btn-2d34e479:hover { opacity: 0.85; }

.woo-atc-qty-widget-2d34e479 .btn-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: atc-spin-2d34e479 1s infinite linear;
}
.woo-atc-qty-widget-2d34e479 .atc-btn-2d34e479.loading .btn-spinner { display: block; }

@keyframes atc-spin-2d34e479 {
    to { transform: rotate(360deg); }
}

.woo-atc-qty-widget-2d34e479 .success-msg-2d34e479 {
    background: #f0fdf4;
    color: #166534;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-top: 10px;
}

@media (max-width: 767px) {
    .woo-atc-qty-widget-2d34e479 .atc-controls-2d34e479 {
        flex-direction: column;
    }
    .woo-atc-qty-widget-2d34e479 .qty-wrapper-2d34e479 {
        width: 100%;
        justify-content: center;
    }
    .woo-atc-qty-widget-2d34e479 .qty-input-2d34e479 {
        width: 100%;
    }
    
    .woo-atc-qty-widget-2d34e479.is-sticky-mobile .atc-controls-2d34e479 {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        padding: 15px;
        box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
        z-index: 999;
        flex-direction: row;
    }
    .woo-atc-qty-widget-2d34e479.is-sticky-mobile .qty-wrapper-2d34e479 {
        display: none; /* Usually hide qty on mobile sticky for space */
    }
}