/* ============================================
                    İZOLE CSS - ÖNE ÇIKAN ÜRÜNLER BÖLÜMÜ
                    TAM GENİŞLİK VE RESPONSIVE YAPI
                   ============================================ */

.featured-section-isolated {
    /* ============================================
                 DEĞİŞKENLER - GÜNCELLENDİ
              ============================================ */
    --primary: #ed1c24;
    --primary-dark: #c41218;
    --primary-light: #ff4d55;
    --secondary: #1a1a1a;
    --secondary-light: #2d2d2d;
    --text-dark: #111111;
    --text-light: #666666;
    --text-lighter: #888888;
    --border: #e5e5e5;
    --border-dark: #d1d1d1;
    --bg-light: #f8f9fa;
    --bg-lighter: #ffffff;
    --bg-dark: #1a1a1a;
    --accent: #ed1c24;
    --shell-bg: #ffffff;

    /* Tipografi */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Montserrat', var(--font-primary);
    --font-readable: 'Roboto', 'Segoe UI', var(--font-primary);

    /* Premium Colors */
    --premium-gray: #f9fafb;
    --premium-border: #e1e5e9;
    --premium-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    --premium-hover: 0 12px 40px rgba(0, 0, 0, 0.08);

    /* Spacing - Güncellendi */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-round: 50%;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Container Widths */
    --container-sm: 100%;
    --container-md: 100%;
    --container-lg: 100%;
    --container-xl: 100%;
    --container-max: 1920px;

    /* Reset ve İzolasyon */
    all: initial;
    font-family: var(--font-primary) !important;
    box-sizing: border-box !important;
    display: block !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

.featured-section-isolated *,
.featured-section-isolated *::before,
.featured-section-isolated *::after {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
    font-family: inherit !important;
}

/* ============================================
             ÖNE ÇIKAN ÜRÜNLER BÖLÜMÜ - TAM GENİŞLİK
          ============================================ */
.featured-section-isolated .featured-products-section {
    background-color: var(--shell-bg) !important;
    padding: var(--space-4xl) 0;
    font-family: var(--font-primary) !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
}

/* CONTAINER - TAM GENİŞLİK */
.featured-section-isolated .container-full {
    width: 100% !important;
    max-width: var(--container-max) !important;
    margin: 0 auto !important;
    padding: 0 max(1.5rem, 5vw) !important;
    position: relative;
}

/* HEADER STYLES - MERKEZİ HİZALAMA */
.featured-section-isolated .featured-header {
    margin-bottom: var(--space-3xl);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-xl);
    font-family: var(--font-primary) !important;
    width: 100%;
}

.featured-section-isolated .header-content {
    flex: 1;
    max-width: 800px;
}

.featured-section-isolated .featured-header .section-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-sm);
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(237, 28, 36, 0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary) !important;
}

.featured-section-isolated .featured-header .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    font-family: var(--font-display) !important;
    color: var(--text-dark);
    max-width: 100%;
    letter-spacing: -0.02em;
}

.featured-section-isolated .featured-header .featured-description {
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: var(--line-height-base);
    color: var(--text-light);
    margin-bottom: 0;
    max-width: 700px;
    font-weight: 400;
    font-family: var(--font-primary) !important;
    letter-spacing: 0.02px;
}

.featured-section-isolated .header-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.featured-section-isolated .featured-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 1px solid var(--premium-border);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    font-family: var(--font-primary) !important;
    white-space: nowrap;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.featured-section-isolated .featured-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 28, 36, 0.1);
}

.featured-section-isolated .featured-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.featured-section-isolated .featured-link:hover svg {
    transform: translateX(3px);
}

/* Talimat 2: Ürün Hatlarımız kelimesinin rengi */
.featured-section-isolated .text-accent {
    color: #ed1c24 !important;
}

/* PRODUCT SHOWCASE */
.featured-section-isolated .featured-showcase {
    margin-top: var(--space-2xl);
    width: 100%;
}

/* PRODUCT GRID - TAM GENİŞLİK RESPONSIVE */
.featured-section-isolated .featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: var(--space-xl);
    width: 100%;
}

/* PRODUCT CARD - Gölgelendirme tamamen kaldırıldı */
.featured-section-isolated .featured-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--premium-border);
    transition: all var(--transition);
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    font-family: var(--font-primary) !important;
    position: relative;
    width: 100%;
}

.featured-section-isolated .featured-card:hover {
    transform: translateY(-6px);
    box-shadow: none !important;
}

/* IMAGE SECTION */
.featured-section-isolated .featured-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    flex-shrink: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-section-isolated .featured-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform var(--transition-slow);
    display: block;
    background: white;
    padding: 1rem;
}

.featured-section-isolated .featured-card:hover .featured-image {
    transform: scale(1.05);
}

.featured-section-isolated .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.featured-section-isolated .featured-badge {
    display: none;
}

/* CONTENT SECTION */
.featured-section-isolated .featured-content {
    padding: var(--space-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.featured-section-isolated .product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.featured-section-isolated .featured-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    line-height: 1.3;
}

.featured-section-isolated .featured-title {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    font-family: var(--font-display) !important;
    letter-spacing: -0.01em;
    margin: 0;
}

.featured-section-isolated .featured-content .featured-description {
    font-size: 0.875rem;
    line-height: var(--line-height-base);
    color: var(--text-light);
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    margin: 0;
    letter-spacing: 0.02px;
}

/* ACTION BUTTONS - Detaylı İncele butonu - ÇERÇEVESİZ ve TEK OK */
.featured-section-isolated .featured-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: auto;
    padding: 0;
    border: none;
    background: transparent;
}

.featured-section-isolated .action-buttons {
    display: flex;
    width: auto;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}

.featured-section-isolated .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    border: none !important;
    background: transparent !important;
    min-height: auto;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.03em;
    line-height: 1.3;
    margin: 0;
    box-shadow: none !important;
}

/* Detaylı İncele butonu - çerçevesiz, siyah yazı, hover kırmızı */
.featured-section-isolated .btn-primary {
    color: #000000;
    background: transparent;
    padding: 0;
    border: none !important;
}

.featured-section-isolated .btn-primary:hover {
    color: #ed1c24;
    background: transparent;
    transform: translateX(4px);
    border: none !important;
    box-shadow: none !important;
}

/* Ok işareti - TEK İNCE OK, çift yön ok yok */
.featured-section-isolated .btn-primary svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
    flex-shrink: 0;
    stroke-width: 2;
    stroke: currentColor;
    display: inline-block;
}

.featured-section-isolated .btn-primary:hover svg {
    transform: translateX(3px);
}

/* Teknik Katalog butonu tamamen kaldırıldı */
.featured-section-isolated .btn-secondary {
    display: none;
}

.featured-section-isolated .tech-specs-link {
    display: none;
}

/* ============================================
             RESPONSIVE DESIGN
          ============================================ */

@media (min-width: 1921px) {
    .featured-section-isolated .container-full {
        padding: 0 max(5rem, 10vw) !important;
    }
}

@media (min-width: 1440px) {
    .featured-section-isolated .featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
        gap: var(--space-2xl);
    }
    .featured-section-isolated .featured-image-wrapper {
        height: 450px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    .featured-section-isolated .featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
        gap: var(--space-xl);
    }
}

@media (max-width: 1024px) {
    .featured-section-isolated .featured-header {
        flex-direction: column;
        gap: var(--space-lg);
        align-items: stretch;
    }
    .featured-section-isolated .featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
        gap: var(--space-lg);
    }
    .featured-section-isolated .featured-image-wrapper {
        height: 380px;
    }
    .featured-section-isolated .container-full {
        padding: 0 max(1.25rem, 4vw) !important;
    }
}

@media (max-width: 768px) {
    .featured-section-isolated .featured-products-section {
        padding: var(--space-3xl) 0;
    }
    .featured-section-isolated .featured-header .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        line-height: 1.3;
    }
    .featured-section-isolated .featured-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    .featured-section-isolated .featured-image-wrapper {
        height: 350px;
    }
    .featured-section-isolated .featured-content {
        padding: var(--space-lg);
    }
    .featured-section-isolated .container-full {
        padding: 0 max(1rem, 5vw) !important;
    }
}

@media (max-width: 480px) {
    .featured-section-isolated .featured-products-section {
        padding: var(--space-2xl) 0;
    }
    .featured-section-isolated .featured-image-wrapper {
        height: 300px;
    }
    .featured-section-isolated .featured-header .section-title {
        font-size: 1.5rem;
    }
    .featured-section-isolated .container-full {
        padding: 0 1rem !important;
    }
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.featured-section-isolated .featured-card {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    animation-delay: calc(var(--index, 0) * 0.1s);
}

.featured-section-isolated .featured-card:nth-child(1) { --index: 1; }
.featured-section-isolated .featured-card:nth-child(2) { --index: 2; }
.featured-section-isolated .featured-card:nth-child(3) { --index: 3; }

/* DARK MODE SUPPORT */
@media (prefers-color-scheme: dark) {
    .featured-section-isolated {
        --shell-bg: #0f172a;
        --text-dark: #ffffff;
        --text-light: #94a3b8;
        --text-lighter: #64748b;
        --premium-border: #334155;
    }
    .featured-section-isolated .featured-card {
        background: #1e293b;
    }
    .featured-section-isolated .featured-header .section-title,
    .featured-section-isolated .featured-title {
        color: #ffffff;
    }
    .featured-section-isolated .btn-primary {
        color: #ffffff;
    }
    .featured-section-isolated .btn-primary:hover {
        color: #ed1c24;
    }
    .featured-section-isolated .featured-image-wrapper {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    }
}