/* Seçenekli Ürün - Frontend Styles */

.su-secenekler-wrapper {
    margin: 20px 0;
    padding: 20px;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
}

.su-baslik {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #333;
}

.su-aciklama {
    font-size: 14px;
    color: #666;
    margin: 0 0 15px 0;
}

.su-sayac {
    font-weight: 600;
    color: #2271b1;
}

.su-cesitler-listesi {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

.su-cesit-option {
    cursor: pointer;
    display: block;
}

.su-cesit-option .su-checkbox {
    display: none;
}

.su-cesit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    transition: all 0.25s ease;
    position: relative;
    text-align: center;
}

.su-cesit-card:hover {
    border-color: #999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.su-cesit-option .su-checkbox:checked + .su-cesit-card {
    border-color: #4CAF50;
    background: #f1f8e9;
    box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}

.su-cesit-option .su-checkbox:checked + .su-cesit-card .su-check-icon {
    opacity: 1;
    transform: scale(1);
}

.su-cesit-option.su-disabled .su-cesit-card {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.su-cesit-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}

.su-cesit-placeholder {
    width: 70px;
    height: 70px;
    background: #eee;
    border-radius: 8px;
    margin-bottom: 8px;
    display: block;
}

.su-cesit-name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    word-break: break-word;
}

.su-check-icon {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 22px;
    height: 22px;
    background: #4CAF50;
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    line-height: 22px;
    text-align: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.su-uyari {
    margin-top: 12px;
    padding: 10px 14px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    color: #856404;
    font-size: 14px;
    font-weight: 500;
    animation: su-shake 0.4s ease;
}

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

/* Responsive */
@media (max-width: 600px) {
    .su-cesitler-listesi {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 8px;
    }

    .su-cesit-card {
        padding: 8px 6px;
    }

    .su-cesit-img {
        width: 55px;
        height: 55px;
    }

    .su-cesit-name {
        font-size: 11px;
    }

    .su-secenekler-wrapper {
        padding: 14px;
    }
}
