/**
 * Taster Session Picker Styles
 */
.ttp-taster-picker {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    background: #f8faf0;
    border: 2px solid #A9C732;
    border-radius: 8px;
}

.ttp-taster-picker__wrap {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ttp-taster-picker__label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 0.25rem;
}

.ttp-taster-picker__select {
    width: 100%;
    padding: 10px 12px;
    font-size: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.ttp-taster-picker__select:focus {
    border-color: #A9C732;
    outline: none;
    box-shadow: 0 0 0 3px rgba(169, 199, 50, 0.2);
}

.ttp-taster-picker__select option {
    padding: 8px;
}

.ttp-taster-picker__help {
    font-size: 0.8rem;
    color: #777;
    margin: 0.25rem 0 0;
}

.ttp-taster-picker__loading {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.ttp-taster-picker__spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-top-color: #A9C732;
    border-radius: 50%;
    animation: ttp-taster-spin 0.6s linear infinite;
}

@keyframes ttp-taster-spin {
    to { transform: rotate(360deg); }
}

.ttp-taster-picker__empty {
    text-align: center;
    padding: 0.75rem 0;
}

.ttp-taster-picker__empty strong {
    display: block;
    color: #c00;
    margin-bottom: 0.25rem;
}

.ttp-taster-picker__empty p {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
}

.ttp-taster-picker__error {
    color: #c00;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .ttp-taster-picker {
        padding: 0.75rem 1rem;
    }

    .ttp-taster-picker__select {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* ==================== Block Variation Preview ==================== */
.ttp-block-preview {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ttp-block-preview__header {
    font-size: 1rem;
    color: #333;
}

.ttp-block-preview__header strong {
    color: #222;
}

.ttp-block-preview__list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 220px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #d8e4b0;
    border-radius: 6px;
}

.ttp-block-preview__list li {
    padding: 8px 12px;
    font-size: 0.85rem;
    color: #444;
    border-bottom: 1px solid #f0f4e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.ttp-block-preview__list li:last-child {
    border-bottom: none;
}

.ttp-block-preview__item--full {
    color: #999;
    text-decoration: line-through;
    text-decoration-color: #ccc;
}

.ttp-block-preview__status {
    font-size: 0.75rem;
    color: #777;
    font-weight: 500;
}

.ttp-block-preview__status--full {
    color: #c00;
    text-decoration: none;
}

.ttp-block-preview__item--full .ttp-block-preview__status--full {
    text-decoration: none;
}

.ttp-block-preview__pricing {
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #d8e4b0;
    border-radius: 6px;
}

.ttp-block-preview__full-price {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 4px;
}

.ttp-block-preview__current {
    font-size: 1rem;
    color: #222;
}

.ttp-block-preview__current strong {
    font-size: 1.2rem;
    color: #000;
}

.ttp-block-preview__breakdown {
    font-size: 0.8rem;
    color: #666;
    margin-left: 4px;
}

.ttp-block-preview__glide-note {
    margin-top: 6px;
    font-size: 0.78rem;
    color: #555;
    line-height: 1.4;
    padding-top: 6px;
    border-top: 1px dashed #d8e4b0;
}
