/* css/product-selector.css */

.product-selector {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

/* Visually Hidden Radio Pattern */
.product-card-radio {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.product-card-label {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 48px;
    touch-action: manipulation;
    position: relative;
}

.product-card-label:hover {
    border-color: #D1D5DB;
}

/* Selected State */
.product-card-radio:checked+.product-card-label {
    border-color: #1C1C1C;
    background-color: #F0EDE6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F3F4F6;
    color: #4B5563;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.product-card-radio:checked+.product-card-label .product-badge {
    background: #1C1C1C;
    color: white;
}

.product-info {
    flex-grow: 1;
}

.product-name {
    font-weight: 700;
    font-size: 16px;
    color: #1C1C1C;
    margin-bottom: 4px;
}

.product-ingredients {
    color: #6B7280;
    font-size: 12px;
    line-height: 1.4;
}

.product-price-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
    justify-content: center;
}

.product-price {
    font-weight: 700;
    font-size: 16px;
}

/* Recommended Badge */
.recommended-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background-color: #1C1C1C;
    color: #F5F0E8;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* Quantity Selector */
.qty-control {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    background: white;
    border: 1px solid #D1D5DB;
    border-radius: 20px;
    padding: 2px 4px;
}

.product-card-radio:checked+.product-card-label .qty-control {
    display: flex;
}

.qty-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #4B5563;
    transition: color 0.2s ease;
    padding: 0;
}

.qty-btn:hover {
    color: #1C1C1C;
}

.qty-val {
    font-size: 14px;
    font-weight: 600;
    min-width: 16px;
    text-align: center;
    color: #1C1C1C;
}