/* TDH Tickera Buy Now Button Styles */

.tdh-buy-now-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.tdh-buy-now-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.tdh-price {
    font-size: 1.25em;
    font-weight: 600;
    color: #333;
}

.tdh-qty-select {
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    min-width: 70px;
    cursor: pointer;
}

.tdh-qty-select:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

.tdh-buy-now-btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #0073aa;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.tdh-buy-now-btn:hover {
    background: #005a87;
}

.tdh-buy-now-btn:active {
    transform: scale(0.98);
}

.tdh-buy-now-btn:disabled,
.tdh-buy-now-btn.tdh-loading {
    background: #999;
    cursor: not-allowed;
}

.tdh-sold-out {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    background: #eee;
    border-radius: 4px;
}

.tdh-error {
    color: #d63638;
    font-style: italic;
}

/* Inline variation */
.tdh-buy-now-wrap.tdh-inline {
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

/* Centered variation */
.tdh-buy-now-wrap.tdh-centered {
    align-items: center;
}
