/* Yemek Menü Seçimi Plus - Frontend CSS v1.0.4 */

/* Miktar alanını gizle */
.ymsp-qty-hidden {
    display: none !important;
}

/* WooCommerce add-to-cart butonunu menünün ALTINA taşı */
form.cart {
    display: flex;
    flex-direction: column;
}

.ymsp-menu-wrapper {
    order: 1;
    margin: 16px 0 20px 0;
    width: 100%;
}

/* Sepete ekle butonu en sona */
form.cart .single_add_to_cart_button,
form.cart button[type="submit"],
form.cart .button.alt {
    order: 2;
    margin-top: 0 !important;
}

/* Diğer form elemanlarını da sıraya koy */
form.cart .variations_button,
form.cart .woocommerce-variation-add-to-cart {
    order: 2;
    display: flex;
    flex-direction: column;
}

/* ============================================================
   MENÜ CONTAINER
============================================================ */
.ymsp-menu-container {
    border: 1px solid #e0d5c5;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

/* ============================================================
   GRUP
============================================================ */
.ymsp-group {
    border-bottom: 1px solid #ece4d5;
}

.ymsp-group:last-child {
    border-bottom: none;
}

/* Grup başlığı */
.ymsp-group-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #7c5230;
    color: #fff;
    cursor: pointer;
    user-select: none;
    gap: 8px;
    flex-wrap: wrap;
    transition: background 0.2s;
}

.ymsp-group-header:hover {
    background: #8d6035;
}

.ymsp-group-toggle {
    font-size: 13px;
    width: 16px;
    flex-shrink: 0;
    text-align: center;
}

.ymsp-group-name {
    font-weight: 700;
    font-size: 14px;
    flex: 1;
}

.ymsp-required-badge {
    background: #c0392b;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
}

.ymsp-selection-hint {
    font-size: 12px;
    opacity: 0.85;
    font-style: italic;
}

/* ============================================================
   SEÇENEKLER
============================================================ */
.ymsp-group-items {
    background: #fdfaf6;
}

.ymsp-item-label {
    display: flex;
    align-items: center;
    padding: 11px 18px;
    cursor: pointer;
    gap: 12px;
    border-bottom: 1px solid #f0e8dc;
    transition: background 0.15s;
}

.ymsp-item-label:last-child {
    border-bottom: none;
}

.ymsp-item-label:hover {
    background: #fff5ec;
}

.ymsp-item-label.selected {
    background: #fff5ec;
}

/* Gizli input */
.ymsp-item-input {
    display: none;
}

/* Özel radio/checkbox görünümü */
.ymsp-item-check {
    width: 22px;
    height: 22px;
    border: 2px solid #c8956c;
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    background: #fff;
    box-sizing: border-box;
}

/* Radio için daire */
.ymsp-group[data-type="single"] .ymsp-item-check {
    border-radius: 50%;
}

/* Seçili durumda */
.ymsp-item-input:checked + .ymsp-item-check {
    background: #7c5230;
    border-color: #7c5230;
}

.ymsp-item-input:checked + .ymsp-item-check::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
}

.ymsp-group[data-type="single"] .ymsp-item-input:checked + .ymsp-item-check::after {
    border-radius: 50%;
    width: 9px;
    height: 9px;
}

.ymsp-item-name {
    flex: 1;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.ymsp-item-price {
    font-size: 13px;
    font-weight: 700;
    color: #7c5230;
    white-space: nowrap;
}

/* ============================================================
   FİYAT ÖZETİ
============================================================ */
.ymsp-price-summary {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 12px 16px;
    background: #f5ede2;
    border: 1px solid #e0d5c5;
    border-top: none;
    border-radius: 0 0 10px 10px;
    margin-bottom: 4px;
}

.ymsp-total-label {
    font-size: 14px;
    color: #666;
}

.ymsp-total-price {
    font-size: 20px;
    font-weight: 700;
    color: #7c5230;
    line-height: 1;
}

/* ============================================================
   HATA STİLİ
============================================================ */
.ymsp-group.ymsp-error .ymsp-group-header {
    background: #c0392b;
    animation: ymsp-shake 0.35s ease;
}

@keyframes ymsp-shake {
    0%, 100% { transform: translateX(0); }
    25%       { transform: translateX(-5px); }
    75%       { transform: translateX(5px); }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 600px) {
    .ymsp-item-label { padding: 10px 12px; }
    .ymsp-group-header { padding: 10px 12px; }
    .ymsp-total-price { font-size: 17px; }
}
