.gradient-bg {
    background: linear-gradient(135deg, #e76f51 0%, #f4a261 100%);
}
.gradient-text {
    background: linear-gradient(135deg, #e76f51 0%, #e9c46a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.card-shadow {
    box-shadow: 0 10px 25px -5px rgba(231, 111, 81, 0.1), 0 10px 10px -5px rgba(231, 111, 81, 0.04);
}
.hero-gradient {
    background: linear-gradient(135deg, rgba(231, 111, 81, 0.05) 0%, rgba(233, 196, 106, 0.1) 100%);
}
/* Scroll bar gizleme */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* ========================================
   ÜRÜN ÖZELLİK ETİKETLERİ İKONLARI
   ======================================== */

/* Özellik İkonları Container */
.feature-icons {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.feature-icons > span.icon {
    background-color: #fff;
    padding: 2px;
    border: 1px solid #000;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Özellik İkonu */
.feature-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: help;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    object-fit: contain;
}

.feature-icon:hover {
    transform: scale(1.1);
}

/* Daha Fazla Göster */
.feature-more {
    font-size: 11px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
}

/* Dark Mode Desteği */
.dark .feature-more {
    color: #9ca3af;
    background: #374151;
}

/* Responsive Tasarım */
@media (max-width: 640px) {
    .feature-icon {
        width: 16px;
        height: 16px;
    }

    .feature-more {
        font-size: 10px;
        padding: 1px 4px;
        min-width: 16px;
        height: 16px;
    }
}

/* Panel için özel stiller */
.panel .feature-icons {
    gap: 6px;
}

.panel .feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
}

.panel .feature-icon:hover {
    transform: scale(1.05);
}

/* Panel form seçili özellik etiketleri */
.panel input[type="checkbox"]:checked + span {
    color: #1e40af !important;
}
.panel input[type="checkbox"]:checked {
    background-color: #3b82f6 !important;
    border-color: #3b82f6 !important;
}
.panel label:has(input[type="checkbox"]:checked) { /* Modern browsers */
    background-color: #dbeafe !important;
    border-color: #3b82f6 !important;
}
/* Fallback: JavaScript ile eklenen sınıf */
.panel .feature-selected { /* For JS fallback */
    background-color: #dbeafe !important;
    border-color: #3b82f6 !important;
}
.panel .feature-selected span {
    color: #1e40af !important;
}

/* Dark mode için seçili özellik etiketleri */
.dark .panel input[type="checkbox"]:checked + span {
    color: #60a5fa !important;
}
.dark .panel input[type="checkbox"]:checked {
    background-color: #2563eb !important;
    border-color: #2563eb !important;
}
.dark .panel label:has(input[type="checkbox"]:checked) {
    background-color: #1e3a8a !important;
    border-color: #2563eb !important;
}
.dark .panel .feature-selected {
    background-color: #1e3a8a !important;
    border-color: #2563eb !important;
}
.dark .panel .feature-selected span {
    color: #60a5fa !important;
}
