/* --- Temel Ayarlar ve Değişkenler --- */
        
		html, body {
			touch-action: manipulation;
    		-ms-touch-action: manipulation; 
    		overflow-x: hidden;
    		width: 100%;
    		position: relative;
    		-webkit-text-size-adjust: 100%;
		}

		/* Tüm section'lar taşan içeriği gizlesin */
		section, header, footer {
    		overflow: hidden; 
    		max-width: 100vw;
		}
		
		/* Özellikle linkler ve butonlar için garantile */
		a, button, input, textarea, select, .btn {
    		touch-action: manipulation;
		}
			
		:root {
            --brand-blue: #01427E;
            --brand-red: #EE1C3C;
            --brand-red-hover: #c4122d;
            --text-dark: #0f172a;
            --text-gray: #334155;
            --text-light: #64748b;
			--text-white: #ffffff;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --border-color: #e2e8f0;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--text-gray);
            background-color: var(--white);
            overflow-x: hidden;
            line-height: 1.5;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* --- Yardımcı Sınıflar (Utilities) --- */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .text-center { text-align: center; }
        .text-left { text-align: left; }
        
        .section-padding {
            padding: 6rem 0;
        }

        /* --- Butonlar --- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 2rem;
            font-weight: 700;
            border-radius: 0.5rem;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-size: 1rem;
            gap: 0.5rem;
        }

        .btn-primary {
            background-color: var(--brand-red);
            color: var(--white);
            box-shadow: 0 4px 14px 0 rgba(238, 28, 60, 0.39);
			text-transform: uppercase;
        }

        .btn-primary:hover {
            background-color: var(--brand-red-hover);
            transform: translateY(-2px);
        }

        .btn-white {
            background-color: var(--white);
            color: var(--brand-blue);
            box-shadow: var(--shadow-lg);
        }

        .btn-white:hover {
            background-color: #f1f5f9;
        }

        .btn-outline {
            border: 1px solid var(--border-color);
            color: var(--text-light);
            background: transparent;
        }

        .btn-outline:hover {
            background-color: var(--brand-blue);
            color: var(--white);
            border-color: var(--brand-blue);
        }

        /* --- Navigasyon --- */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
            background-color: transparent;
            color: var(--white);
            padding: 1rem 0;
        }

        .navbar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 4rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.025em;
        }

        .logo-img {
            height: 3.5rem;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
        }

        .nav-links {
            display: none;
            align-items: center;
            gap: 2rem;
        }

        .nav-link {
            font-size: 0.875rem;
            font-weight: 600;
            position: relative;
            padding-bottom: 2px;
			text-transform: uppercase;
			text-align: center;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--brand-red);
            transition: width 0.3s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            color: inherit;
            cursor: pointer;
        }

        .mobile-menu-btn svg {
            width: 2rem;
            height: 2rem;
        }

        /* Scrolled Navbar State */
        .navbar.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-md);
            color: var(--brand-blue);
            padding: 0.5rem 0;
        }

        /* ==========================================================================
  		 								MOBİL MENÜ
   		========================================================================== */

		/* --- 1. ANA KAPSAYICI --- */
		.mobile-menu {
			background-color: #ffffff;
			padding: 20px;
			box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
			border-bottom-left-radius: 12px;
			border-bottom-right-radius: 12px;
			display: none; /* JS ile açılacak */

			/* TAŞMAYI ÖNLEYEN KRİTİK KODLAR */
			height: auto !important; 
			max-height: 85vh; /* Ekrana sığmazsa kendi içinde kaysın */
			overflow-y: auto; 
			position: relative; /* Sabit değil, içeriğe göre uzasın */
		}

		/* JS ile menü açıldığında */
		.mobile-menu.active {
			display: block; /* Flex YERİNE Block kullanıyoruz ki içerik onu uzatabilsin */
			animation: slideDown 0.3s ease-out forwards;
		}

		/* --- 2. LİSTE YAPISI --- */
		.mobile-menu .mobile-link {
			list-style: none;
			padding: 0;
			margin: 0;
			display: flex;
			flex-direction: column;
			gap: 8px; 
			width: 100%;
		}

		/* --- 3. STANDART LİNKLER --- */
		.mobile-menu .mobile-link a.nav-link {
			display: block;
			padding: 14px 18px;
			background-color: #f8fafc; 
			color: #1e293b;
			font-size: 16px;
			font-weight: 600;
			text-decoration: none;
			border-radius: 8px;
			transition: all 0.2s ease-in-out;
		}

		.mobile-menu .mobile-link a.nav-link:hover,
		.mobile-menu .mobile-link a.nav-link:active {
			background-color: #e2e8f0;
			color: #0f172a;
		}

		/* --- 4. İLETİŞİM BUTONU --- */
		.mobile-menu .mobile-link a.btn {
			display: block; 
			width: 100%; 
			text-align: center; 
			padding: 16px;
			margin-top: 10px; 
			font-size: 16px;
			font-weight: 700;
			border-radius: 8px;
		}

		/* --- 5. AÇILIR MENÜ (DROPDOWN / POLYLANG) --- */
		.mobile-menu .mobile-link .has-dropdown > a.nav-link,
		.mobile-menu .mobile-link .pll-parent-menu-item > a.nav-link {
			display: flex;
			align-items: center;
			justify-content: space-between; 
		}

		/* Alt menü (Sub-menu) başlangıçta gizli */
		.mobile-menu .mobile-link .sub-menu {
			display: none; 
			list-style: none;
			padding-left: 15px; 
			margin: 8px 0 0 10px;
			border-left: 2px solid #cbd5e1; 
			flex-direction: column;
			gap: 5px;

			/* TAŞMAYI ÖNLEYEN KRİTİK KODLAR */
			position: relative !important; 
			width: 100%;
			height: auto !important;
			overflow: visible !important;
		}

		/* Javascript LI etiketine "active" eklediğinde alt menüyü göster */
		.mobile-menu .mobile-link .active > .sub-menu {
			display: flex; /* Block yerine Flex (column) kalsın ki gap çalışsın */
			animation: fadeInDown 0.3s ease;
		}

		/* --- 6. ALT MENÜ LİNKLERİ (Bayraklar vb.) --- */
		.mobile-menu .mobile-link .sub-menu a {
			display: flex;
			align-items: center; 
			gap: 12px; 
			padding: 10px 15px;
			color: #475569;
			font-size: 15px;
			font-weight: 500;
			text-decoration: none;
			border-radius: 6px;
		}

		.mobile-menu .mobile-link .sub-menu a:hover {
			background-color: #f1f5f9;
		}

		.mobile-menu .mobile-link .sub-menu a img {
			vertical-align: middle;
			border-radius: 2px;
			box-shadow: 0 1px 3px rgba(0,0,0,0.1);
		}

		/* --- ANİMASYONLAR --- */
		@keyframes fadeInDown {
			from { opacity: 0; transform: translateY(-10px); }
			to { opacity: 1; transform: translateY(0); }
		}

		@keyframes slideDown {
			from { opacity: 0; transform: translateY(-10px); }
			to { opacity: 1; transform: translateY(0); }
		}

        /* --- Hero Section --- */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            text-align: center;
            padding-top: 5rem;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/wp-content/uploads/2026/02/anasayfa_bg_photo.avif');
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent, rgba(0,0,0,0.4));
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            color: var(--white);
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 999px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 2rem;
            backdrop-filter: blur(4px);
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background-color: var(--brand-red);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 2rem;
        }

        .hero-title span {
            background: linear-gradient(to right, var(--brand-red), var(--white));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-desc {
            font-size: 1.125rem;
            color: #e2e8f0;
            font-weight: 300;
            margin-bottom: 2.5rem;
            line-height: 1.75;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .scroll-down {
            position: absolute;
            bottom: 2.5rem;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.7);
            animation: bounce 2s infinite;
            cursor: pointer;
        }

        /* --- Features / Hizmetler --- */
        .section-header {
            text-align: center;
            max-width: 42rem;
            margin: 0 auto 4rem;
        }

        .badge-pill {
            background-color: #fef2f2; /* Red-50 */
            color: var(--brand-red);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 0.25rem 0.75rem;
            border-radius: 999px;
        }

        .section-title {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--brand-blue);
            margin: 1rem 0;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .feature-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 1rem;
            padding: 2rem;
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: var(--brand-blue);
            box-shadow: var(--shadow-lg);
        }

        .icon-box {
            width: 4rem;
            height: 4rem;
            background-color: #eff6ff; /* Blue-50 */
            color: var(--brand-blue);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }

        .feature-card:hover .icon-box {
            background-color: var(--brand-blue);
            color: var(--white);
        }

        /* --- Product Grid --- */
        .bg-light { background-color: var(--bg-light); }

        .product-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 3rem;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 1.5rem;
        }

        .grid-products {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .product-card {
            background: var(--white);
            border-radius: 0.75rem;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .product-card:hover {
            box-shadow: 0 25px 50px -12px rgba(1, 66, 126, 0.15);
            transform: translateY(-5px);
        }

        .product-img-wrapper {
            position: relative;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background-color: var(--white);
        }

        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .product-card:hover .product-img {
            transform: scale(1.1);
        }

        .product-content {
            padding: 1.5rem;
        }

        .product-category {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--brand-red);
            text-transform: uppercase;
            display: block;
            margin-bottom: 0.5rem;
        }

        .product-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--brand-blue);
            margin-bottom: 0.5rem;
            transition: var(--transition);
        }

        .product-card:hover .product-title {
            color: var(--brand-red);
        }

        /* --- Kurumsal Section --- */
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-img-wrapper {
            position: relative;
        }

        .about-img {
            border-radius: 1rem;
            box-shadow: var(--shadow-lg);
            border: 4px solid var(--white);
            width: 100%;
        }

        .deco-box-red {
            position: absolute;
            top: -1rem;
            left: -1rem;
            width: 6rem;
            height: 6rem;
            background-color: rgba(238, 28, 60, 0.1);
            border-radius: 0.75rem;
            z-index: -1;
        }

        .deco-box-blue {
            position: absolute;
            bottom: -1rem;
            right: -1rem;
            width: 8rem;
            height: 8rem;
            background-color: rgba(1, 66, 126, 0.1);
            border-radius: 0.75rem;
            z-index: -1;
        }

        .floating-cert-card {
            position: absolute;
            bottom: 1.5rem;
            left: 1.5rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(4px);
            padding: 1rem;
            border-radius: 0.75rem;
            box-shadow: var(--shadow-lg);
            border-left: 4px solid var(--brand-blue);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .check-list {
            list-style: none;
            margin-top: 1rem;
        }

        .check-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
            font-weight: 500;
            color: var(--text-gray);
        }

        .check-icon {
            width: 1.5rem;
            height: 1.5rem;
            background-color: #eff6ff;
            color: var(--brand-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* --- Footer --- */
        .footer {
            background-color: var(--brand-blue);
            color: var(--white);
            padding-top: 4rem;
            padding-bottom: 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .footer-col h4 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #bfdbfe; /* Blue-200 */
            font-size: 0.875rem;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            font-size: 0.875rem;
            color: #bfdbfe;
        }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            font-size: 0.75rem;
            color: #bfdbfe;
        }

        /* --- Responsiveness (Media Queries) --- */
        @media (min-width: 768px) {
            .nav-links { display: flex; }
            .mobile-menu-btn { display: none; }
            
            .hero-title { font-size: 4rem; }
            .hero-desc { padding-left: 0; border-left: none; }
            
            .grid-3 { grid-template-columns: repeat(3, 1fr); }
            .grid-products { grid-template-columns: repeat(2, 1fr); }
            .grid-2 { grid-template-columns: 1fr 1fr; }
            
            .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
            .footer-bottom { flex-direction: row; justify-content: space-between; }
        }

        @media (min-width: 1024px) {
            .hero-title { font-size: 5rem; }
            .grid-products { grid-template-columns: repeat(3, 1fr); }
            .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
        }

        /* Animations */
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: .5; }
        }
        @keyframes bounce {
            0%, 100% { transform: translate(-50%, -25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
            50% { transform: translate(-50%, 0); animation-timing-function: cubic-bezier(0,0,0.2,1); }
        }

        /* BU KISIMDAKİ KODLAR HİZMETLER SAYFASI İÇİN ÖZEL OLARAK EKLENMİŞTİR. */

        /* --- Page Hero (Alt Sayfa Başlığı) --- */
        .page-hero {
            position: relative;
            height: 60vh; /* Ana sayfadan daha kısa */
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            background-color: var(--brand-blue);
            padding-top: 80px; /* Navbar payı */
            overflow: hidden;
        }

        .page-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Hizmetler için uygun bir mühendislik/çizim görseli */
            background-image: url('https://images.unsplash.com/photo-1581092334651-ddf26d9a09d0?auto=format&fit=crop&q=80&w=1920');
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

        /* --- Breadcrumb (Sayfa Yolu) --- */
        .breadcrumb {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
        }

        .breadcrumb a:hover {
            color: var(--white);
        }

        .breadcrumb .separator {
            color: var(--brand-red);
        }

        .breadcrumb .current {
            color: var(--white);
        }

        /* --- Service Detail Cards (Detaylı Hizmet Kartları) --- */
        .service-detail-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 1rem;
            overflow: hidden;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .service-detail-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--brand-blue);
        }

        .service-detail-img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            border-bottom: 4px solid var(--brand-red);
        }

        .service-detail-content {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-detail-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .service-detail-desc {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 1rem;
            line-height: 1.6;
        }

        .service-list {
            margin-top: auto;
            list-style: none;
            padding: 0;
        }

        .service-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            color: var(--text-gray);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .service-list li::before {
            content: '';
            display: block;
            width: 6px;
            height: 6px;
            background-color: var(--brand-red);
            border-radius: 50%;
        }

        /* --- Process Steps (İşleyiş Adımları) --- */
        .process-section {
            background-color: var(--bg-light);
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .process-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (min-width: 1024px) {
            .process-grid { grid-template-columns: repeat(4, 1fr); }
        }

        .process-step {
            background: var(--white);
            padding: 2.5rem 2rem;
            border-radius: 1rem;
            text-align: center;
            position: relative;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .process-step:hover {
            transform: translateY(-5px);
            border-color: var(--brand-blue);
        }

        .step-number {
            font-size: 4rem;
            font-weight: 800;
            color: rgba(1, 66, 126, 0.05); /* Çok silik marka mavisi */
            position: absolute;
            top: 0.5rem;
            right: 1rem;
            line-height: 1;
            z-index: 0;
        }

        .step-icon {
            width: 4rem;
            height: 4rem;
            background-color: #eff6ff;
            color: var(--brand-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            position: relative;
            z-index: 1;
        }

        .step-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
            position: relative;
            z-index: 1;
        }

        .step-desc {
            color: var(--text-light);
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
        }

        /* --- CTA Banner --- */
        .cta-banner {
            background-color: var(--brand-blue);
            color: var(--white);
            border-radius: 1.5rem;
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background-image: radial-gradient(var(--white) 1px, transparent 1px);
            background-size: 20px 20px;
        }

         /* --- BU SAYFAYA ÖZEL STİLLER (KURUMSAL) ---*/

        /* --- Kurumsal Hero (Alt Sayfa Başlığı) --- */
        .kurumsal-hero {
            position: relative;
            height: 50vh;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            background-color: var(--brand-blue);
            padding-top: 80px;
            overflow: hidden;
        }

        .kurumsal-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/wp-content/uploads/2026/02/kurumsal_bg_photo.avif');
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

        .kurumsal-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        /* --- Kurumsal Breadcrumb --- */
        .kurumsal-breadcrumb {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
        }

        .kurumsal-breadcrumb a:hover { color: var(--white); }
        .kurumsal-breadcrumb .separator { color: var(--brand-red); }
        .kurumsal-breadcrumb .current { color: var(--white); }

        /* --- Hakkımızda Detay --- */
        .stat-box {
            background-color: var(--bg-light);
            border: 1px solid var(--border-color);
            padding: 1.5rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            transition: var(--transition);
        }

        .stat-box:hover {
            border-color: var(--brand-blue);
            transform: translateX(5px);
        }

        .stat-icon {
            width: 3rem;
            height: 3rem;
            color: var(--brand-blue);
            background-color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-sm);
        }

        /* --- Misyon & Vizyon Kartları --- */
        .mv-section {
            background-color: var(--bg-light);
        }

        .mv-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .mv-grid { grid-template-columns: 1fr 1fr; }
        }

        .mv-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 1rem;
            border: 1px solid var(--border-color);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .mv-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--brand-blue);
        }

        .mv-icon {
            width: 4rem;
            height: 4rem;
            background-color: #eff6ff;
            color: var(--brand-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .mv-bg-icon {
            position: absolute;
            bottom: -2rem;
            right: -2rem;
            width: 12rem;
            height: 12rem;
            color: rgba(1, 66, 126, 0.03);
            pointer-events: none;
        }

        /* --- Timeline (Zaman Çizelgesi) --- */
        .timeline-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            padding: 2rem 0;
        }

        /* Dikey Çizgi */
        .timeline-container::after {
            content: '';
            position: absolute;
            width: 2px;
            background-color: var(--border-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -1px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
            box-sizing: border-box;
        }

        .timeline-item.left {
            left: 0;
            text-align: right;
        }

        .timeline-item.right {
            left: 50%;
            text-align: left;
        }

        .timeline-content {
            padding: 1.5rem;
            background-color: var(--white);
            position: relative;
            border-radius: 0.75rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .timeline-content:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--brand-blue);
        }

        .timeline-year {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--brand-red);
            display: block;
            margin-bottom: 0.5rem;
        }

        .timeline-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .timeline-dot {
            position: absolute;
            width: 20px;
            height: 20px;
            right: -50px;
            background-color: var(--white);
            border: 4px solid var(--brand-blue);
            top: 50%;
            transform: translateY(-50%);
            border-radius: 50%;
            z-index: 1;
        }

        .timeline-item.right .timeline-dot {
            left: -50px;
        }

        @media (max-width: 768px) {
            .timeline-container::after { left: 20px; }
            .timeline-item { width: 100%; padding-left: 50px; padding-right: 20px; }
            .timeline-item.left, .timeline-item.right { left: 0; text-align: left; }
            .timeline-dot { left: -40px !important; right: auto; }
        }

        /* --- Sertifikalar --- */
        .cert-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .cert-grid { grid-template-columns: repeat(4, 1fr); }
        }

        .cert-item {
            text-align: center;
            opacity: 0.7;
            transition: var(--transition);
            cursor: default;
        }

        .cert-item:hover {
            opacity: 1;
            transform: scale(1.05);
        }

        .cert-circle {
            width: 6rem;
            height: 6rem;
            margin: 0 auto 1rem;
            border-radius: 50%;
            background-color: var(--white);
            border: 2px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: var(--brand-blue);
            font-size: 1.25rem;
            box-shadow: var(--shadow-sm);
        }

        /* --- BU SAYFAYA ÖZEL STİLLER (ÜRÜNLER) --- */

        /* --- Ürünler Hero --- */
        .urunler-hero {
            position: relative;
            height: 50vh;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            background-color: var(--brand-blue);
            padding-top: 80px;
            overflow: hidden;
        }

        .urunler-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Depo / Stok görseli */
            background-image: url('/wp-content/uploads/2026/02/urunler_bg_photo.avif');
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

        .urunler-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(1, 66, 126, 0.8); /* Marka mavisi ağırlıklı overlay */
            mix-blend-mode: multiply;
            z-index: 0;
        }

        /* --- Breadcrumb (Ortak yapı ama stil çakışması olmasın diye prefixli) --- */
        .urunler-breadcrumb {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
        }
        .urunler-breadcrumb a:hover { color: var(--white); }
        .urunler-breadcrumb .separator { color: var(--brand-red); }
        .urunler-breadcrumb .current { color: var(--white); }

        /* --- Kategori Filtreleme Alanı --- */
        .urunler-filter-bar {
            background-color: var(--white);
            border-bottom: 1px solid var(--border-color);
            padding: 1.5rem 0;
            box-shadow: var(--shadow-sm);
        }

		.urunler-search-bar{
			display:flex;
			text-align:center;
		}

		.urunler-search-bar input{
			width:90%;
			border: solid 1px var(--border-color);
			border-radius: 16px;
			padding: 1rem 0;
			text-transform:inherit;
			text-align:inherit;
		}

		.urunler-search-bar button{
			position:absolute;
			cursor: pointer;
			width:10%;
			border: solid 1px var(--border-color);
			border-radius: 12px;
			margin:0.5rem;
		}
		
		.urunler-search-bar button:hover{
			transform:scale(1.1);
			transition: var(--transition);
		}

        .urunler-filter-list {
            display: flex;
            gap: 1rem;
            overflow-x: auto;
            padding-bottom: 0.5rem;
            -ms-overflow-style: none;  /* IE and Edge */
            scrollbar-width: none;  /* Firefox */
        }
        .urunler-filter-list::-webkit-scrollbar { display: none; }

        .urunler-filter-btn {
            white-space: nowrap;
            padding: 0.5rem 1.25rem;
            border-radius: 99px;
            font-size: 0.875rem;
            font-weight: 600;
            border: 1px solid var(--border-color);
            background-color: var(--bg-light);
            color: var(--text-gray);
            cursor: pointer;
            transition: var(--transition);
        }

        .urunler-filter-btn:hover,
        .urunler-filter-btn.active {
            background-color: var(--brand-blue);
            color: var(--white);
            border-color: var(--brand-blue);
        }

        /* --- Ürün Grid Yapısı --- */
        .urunler-section {
            background-color: var(--bg-light);
            padding: 4rem 0;
        }

        .urunler-grid {
            display: grid;
            grid-template-columns: repeat(4 1fr);
            gap: 2rem;
        }

        @media (min-width: 640px) {
            .urunler-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (min-width: 1024px) {
            .urunler-grid { grid-template-columns: repeat(4, 1fr); }
        }

        /* --- Ürün Kartı --- */
        .urunler-card {
            background-color: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 1rem;
            overflow: hidden;
            transition: var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .urunler-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            border-color: var(--brand-blue);
        }

        .urunler-img-wrapper {
            position: relative;
            width: 100%;
            height: 220px;
            background-color: #fff;
            border-bottom: 1px solid var(--border-color);
            overflow: hidden;
        }

        .urunler-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }

        .urunler-card:hover .urunler-img {
            transform: scale(1.1);
        }

        .urunler-badge {
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            background-color: var(--brand-red);
            color: var(--white);
            font-size: 0.6rem;
            font-weight: 700;
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
            text-transform: uppercase;
            z-index: 1;
        }

        .urunler-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .urunler-category {
            font-size: 0.75rem;
            color: var(--text-light);
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .urunler-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            transition: var(--transition);
        }

        .urunler-card:hover .urunler-title {
            color: var(--brand-blue);
        }

        .urunler-desc {
            font-size: 0.875rem;
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            line-height: 1.5;
            /* display: -webkit-box; */
            -webkit-line-clamp: 2;
            line-clamp: 2; /* Standart özellik eklendi */
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .urunler-btn {
            margin-top: auto;
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--border-color);
            background-color: transparent;
            color: var(--text-dark);
            font-weight: 600;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

		.urunler-btn:hover{
			background-color: var(--brand-blue);
			color: var(--text-white);
		}

        .urunler-card:hover .urunler-btn {
            background-color: var(--brand-blue);
            color: var(--white);
            border-color: var(--brand-blue);
        }

        /* --- CTA (Katalog İndir) --- */
        .urunler-cta-section {
            padding: 5rem 0;
            background-color: var(--brand-blue);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .urunler-cta-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.05;
            background-image: radial-gradient(var(--white) 1px, transparent 1px);
            background-size: 30px 30px;
        }

         /* --- BU SAYFAYA ÖZEL STİLLER (İLETİŞİM) --- */

        /* --- İletişim Hero --- */
        .iletisim-hero {
            position: relative;
            height: 50vh;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            background-color: var(--brand-blue);
            padding-top: 80px;
            overflow: hidden;
        }

        .iletisim-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Müşteri hizmetleri / İletişim görseli */
            background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=1920');
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

        .iletisim-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.7);
            z-index: 0;
        }

        /* --- Breadcrumb --- */
        .iletisim-breadcrumb {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
        }
        .iletisim-breadcrumb a:hover { color: var(--white); }
        .iletisim-breadcrumb .separator { color: var(--brand-red); }
        .iletisim-breadcrumb .current { color: var(--white); }

        /* --- İletişim Kartları --- */
        .iletisim-cards-section {
            position: relative;
            margin-top: -4rem; /* Hero üzerine binmesi için */
            z-index: 10;
            padding-bottom: 4rem;
        }

        .iletisim-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .iletisim-grid { grid-template-columns: repeat(3, 1fr); }
        }

        .iletisim-card {
            background-color: var(--white);
            padding: 2.5rem;
            border-radius: 1rem;
            text-align: center;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-color);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .iletisim-card:hover {
            transform: translateY(-5px);
            border-color: var(--brand-blue);
        }

        .iletisim-icon {
            width: 3.5rem;
            height: 3.5rem;
            background-color: #eff6ff; /* Blue-50 */
            color: var(--brand-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }

        .iletisim-card:hover .iletisim-icon {
            background-color: var(--brand-blue);
            color: var(--white);
        }

        .iletisim-card-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }

        .iletisim-card-text {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .iletisim-card-link {
            color: var(--text-gray);
            font-weight: 600;
            transition: var(--transition);
        }

        .iletisim-card-link:hover {
            color: var(--brand-blue);
        }

        /* --- Form ve Harita Bölümü --- */
        .iletisim-main-section {
            background-color: var(--bg-light);
            padding: 4rem 0;
        }

        .iletisim-split {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        @media (min-width: 1024px) {
            .iletisim-split { grid-template-columns: 1fr 1fr; }
        }

        /* Form */
        .iletisim-form-container {
            background-color: var(--white);
            padding: 2.5rem;
            border-radius: 1rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
        }

        .iletisim-form-group {
            margin-bottom: 1.5rem;
        }

        .iletisim-form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 640px) {
            .iletisim-form-row { grid-template-columns: 1fr 1fr; }
        }

        .iletisim-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-gray);
            margin-bottom: 0.5rem;
        }

        .iletisim-input,
        .iletisim-select,
        .iletisim-textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid var(--border-color);
            border-radius: 0.5rem;
            font-family: inherit;
            font-size: 1rem;
            color: var(--text-dark);
            background-color: #fff;
            transition: var(--transition);
            outline: none;
			resize: none;
        }

        .iletisim-input:focus,
        .iletisim-select:focus,
        .iletisim-textarea:focus {
            border-color: var(--brand-blue);
            box-shadow: 0 0 0 3px rgba(1, 66, 126, 0.1);
        }

        .iletisim-submit-btn {
            width: 100%;
            padding: 1rem;
            background-color: var(--brand-blue);
            color: var(--white);
            font-weight: 700;
            border: none;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 6px -1px rgba(1, 66, 126, 0.2);
        }

        .iletisim-submit-btn:hover {
            background-color: #0b325e; /* Darker blue */
            transform: translateY(-2px);
        }

        /* Harita */
        .iletisim-map-container {
            width: 100%;
            height: 100%;
            min-height: 400px;
            border-radius: 1rem;
            overflow: hidden;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
        }

        .iletisim-map-frame {
            width: 100%;
            height: 100%;
            border: 0;
            filter: grayscale(100%); /* Gri tonlama efekti */
            transition: filter 0.5s ease;
        }

        .iletisim-map-container:hover .iletisim-map-frame {
            filter: grayscale(0%);
        }

        /* --- SSS (Accordion) --- */
        .iletisim-faq-container {
            margin-top: 2rem;
            background-color: var(--white);
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid var(--border-color);
        }

        .iletisim-faq-item {
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 1rem;
            margin-bottom: 1rem;
        }

        .iletisim-faq-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0;
        }

        .iletisim-faq-summary {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            list-style: none;
            transition: color 0.3s;
        }

        .iletisim-faq-summary:hover {
            color: var(--brand-blue);
        }

        .iletisim-faq-summary::-webkit-details-marker {
            display: none;
        }

        .iletisim-faq-icon {
            transition: transform 0.3s;
        }

        details[open] .iletisim-faq-icon {
            transform: rotate(180deg);
        }

        .iletisim-faq-text {
            margin-top: 0.75rem;
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.6;
            animation: fadeIn 0.3s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-5px); }
            to { opacity: 1; transform: translateY(0); }
        }

		/*--- SHORTCODE CSS BASLANGIC ---*/

		.urun-container {
			display: flex;
			flex-wrap: wrap;
			column-gap: 100px;
			row-gap: 50px;
			align-items: flex-start;
			padding: 40px 30px;
			margin: 40px 30px;
			max-width: 1400px;
			margin-left: auto;
			margin-right: auto;
			box-sizing: border-box;
			border: solid 1px var(--border-color);
			border-radius: 12px;
			box-shadow: 5px 10px 25px rgb(0 0 0 / .12);
			background-size: cover;
			background-position: center center;
			background-repeat: no-repeat;
			background-color: var(--bg-light);
		}


		.urun-slider {
		  flex: 1 1 45%;
		  min-width: 300px;
		  box-sizing: border-box;
		  position: relative;
			border : solid 1px #ccc;
			border-radius : 12px;
			box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
			background-color : white;
		}

		.swiper-container {
		  position: relative;
		  width: 100%;
		  max-width: 100%;
		  height: auto;
		  overflow: hidden;
		}

		.swiper-wrapper {
		  width: 100%;
		}

		.swiper-slide {
		  text-align: center;
		  display: flex;
		  justify-content: center;
		  align-items: center;
		}

		.swiper-slide img {
		  width: 100%;
		  height: auto;
		  object-fit: contain;
		  border-radius: 8px;
		}

		/* Swiper Pagination: Görselin altında sabit */
		.swiper-pagination {
		  position: absolute;
		  bottom: 10px;
		  left: 0;
		  width: 100%;
		  text-align: center;
		  z-index: 10;
		}

		.swiper-pagination-bullet {
		  width: 10px;
		  height: 10px;
		  background: #333;
		  opacity: 0.5;
		  transition: 0.3s ease;
		}

		.swiper-pagination-bullet-active {
		  opacity: 1;
		  background: #01427E;
		}

		.swiper-button-prev,
		.swiper-button-next {
		  color: #01427E;
		}

		.urun-bilgi {
		  flex: 1 1 45%;
		  min-width: 300px;
		  box-sizing: border-box;
		  text-align: center;
		}

		.urun-baslik {
		  font-size: 24px !important;
			font-weight: bold !important;
			margin-bottom: 30px !important;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.urun-kartlar {
		  display: grid;
		  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
		  gap: 20px;
		  justify-content: center;
		}

		/* Liste sarmalayıcısı */
		.urun-bilgi .urun-ozellik-listesi {
		 width: 100%;
		 background-color: #ffffff;
		 border: 1px solid #ccc;
		 border-radius: 8px;
		 overflow: hidden;
		 box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
		}

		/* Her bir özellik satırı */
		.urun-ozellik-listesi .ozellik-satiri {
			display: flex;
			justify-content: space-between; /* Etiketi sola, değeri sağa yaslar */
			align-items: center;
			padding: 14px 18px;
			border-bottom: 1px solid #f0f0f0; /* Satırlar arasına ince çizgi */
				text-align:start;
		}

		/* Son satırın alt çizgisini kaldır */

		.urun-ozellik-listesi .ozellik-satiri:last-child {
			border-bottom: none;
		}



		/* Özellik Etiketi (Sol taraf) */
		.ozellik-satiri strong {
			font-weight: 500;
			color: #333;
			padding-right: 20px; /* Değer ile arasında boşluk olsun */
		}

		/* Özellik Değeri (Sağ taraf) */
		.ozellik-satiri span {
			font-weight: 600;
			color: #012a4a; /* CSS'inizden ana renk */
			text-align: right;
			flex-shrink: 0; /* Değer uzunsa bile küçülmesin (gerekirse satır alta kayar) */
		}

		.urun-alt-icerik {
		  width: 100%;
		  margin-top: 30px;
		  border-top: 1px solid #ccc;
		  padding-top: 20px;
		}

		/* Responsive Tasarım */
		@media (max-width: 991px) {
		  .urun-container {
			flex-direction: column;
		  }
		  .urun-slider,
		  .urun-bilgi {
			max-width: 100%;
		  }
		  .urun-kartlar {
			grid-template-columns: repeat(2, 1fr);
		  }
		}

		@media (max-width: 600px) {
		  .urun-kartlar {
			grid-template-columns: 1fr;
		  }
		}

		/* Ana Grid Konteyneri */
		/*.urunler-grid {
			display: grid;
			gap: 25px;
			grid-template-columns: 1fr;
		}

		@media (min-width: 600px) {
			.urunler-grid.sutun-2 { grid-template-columns: repeat(2, 1fr); }
			.urunler-grid.sutun-3 { grid-template-columns: repeat(3, 1fr); }
			.urunler-grid.sutun-4 { grid-template-columns: repeat(4, 1fr); }
		}

		@media (min-width: 992px) {
			.urunler-grid.sutun-2 { grid-template-columns: repeat(2, 1fr); }
			.urunler-grid.sutun-3 { grid-template-columns: repeat(3, 1fr); }
			.urunler-grid.sutun-4 { grid-template-columns: repeat(4, 1fr); }
		}
		*/

		/* Tek bir ürün kartı - MODERN GÖRÜNÜM */

		.urun-kart {
			background-color: #ffffff;
			border-radius: 12px;
			overflow: hidden;
			text-align: left;
			border: 1px solid var(--border-color);
			transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
			box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
			border-color 0.4s ease;
			box-shadow: 0 2px 4px rgba(0,0,0,0.05), 0 4px 8px rgba(0,0,0,0.05);
			min-width:300px;
			min-height:400px;
		}

		.urun-kart:hover {
			transform: translateY(-8px);
			border-color: transparent;
			box-shadow: 0 8px 16px rgba(4,33,55,0.1), 0 16px 32px rgba(4,33,55,0.1);
		}

		.urun-kart .kart-link {
			text-decoration: none;
			color: inherit;
			display: flex;
			flex-direction: column;
			height: 100%;
		}

		/* Görsel Alanı - MODERN EFEKTLER */
		.urun-kart .kart-gorsel-wrap {
			position: relative;
			overflow: hidden;
		}

		/* Görselin üzerine hafif bir gradient (isteğe bağlı, kaldırılabilir) */
		.urun-kart .kart-gorsel-wrap::after {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.3) 100%);
			opacity: 0.8;
			transition: opacity 0.4s ease;
		}

		.urun-kart:hover .kart-gorsel-wrap::after {
			opacity: 1;
		}

		/* GÖRSEL STİLİ - BLUR EFEKTİ İLE GÜNCELLENDİ */
		.urun-kart .kart-gorsel-wrap img {
			display: block;
			width: 100%;
			height: 250px;
			object-fit: cover;
			filter: blur(0px); /* Başlangıçta blur efekti yok */
			transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
						filter 0.4s ease; /* Hem büyüme hem de blur için geçiş eklendi */
		}

		/* KARTIN ÜZERİNE GELİNCE GÖRSELİ BÜYÜT VE BLURLA */
		.urun-kart:hover .kart-gorsel-wrap img {
			transform: scale(1.05);
			filter: blur(4px); /* Hover durumunda blur uygula */
		}

		/* Kart İçeriği (İsim ve Ürün Sayısı) */
		.urun-kart .kart-icerik {
			padding: 20px;
			flex-grow: 1;
			display: flex;
			flex-direction: column;
			background-color: #ffffff; /* Arka planı tekrar opak yapıyoruz */
		}

		.urun-kart .kart-isim {
			font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
			font-size: 1.25rem;
			font-weight: 600;
			color: #012a4a;
			margin: 0 0 8px 0;
		}

		.urun-kart .kart-urun-sayisi {
			font-size: 0.9rem;
			color: #5a7a96;
			margin-bottom: 15px;
		}

		/* Hover'da ortaya çıkan "Detay" butonu */

		.urun-kart .kart-detay {
			background-color: #01427E;
			color: #ffffff;
			padding: 8px 12px;
			border-radius: 6px;
			text-align: center;
			font-weight: 500;
			margin-top: auto;
			opacity: 0;
			transform: translateY(10px);
			transition: opacity 0.4s ease,transform 0.4s ease;
		}

		.urun-kart:hover .kart-detay {
			opacity: 1;
			transform: translateY(0);
		}

		/* Filtreleme Bölümü Stilleri */

		.filtre-bolumu {
			margin-bottom: 40px;
			padding: 25px;
			background-color: #8a98a7;
			border: 1px solid #e9ecef;
			border-radius: 12px;
			display: flex;
			flex-direction: row-reverse;
		align-items:flex-start;
			gap: 20px;
		}

		#urun-arama-kutusu {
			width: 100%;
			padding: 12px 15px;
			border: 1px solid #ddd;
			border-radius: 6px;
			font-size: 1rem;
			transition: border-color 0.3s, box-shadow 0.3s;
		}

		#urun-arama-kutusu:focus {
			outline: none;
			border-color: #01427E;
			box-shadow: 0 0 0 3px rgba(1, 66, 126, 0.15);
		}

		.filtre-butonlari {
			display: flex;
			flex-wrap: wrap;
			gap: 10px;
		}

		.filtre-buton {
			background-color: #fff;
			border: 1px solid #ddd;
			color: #333;
			padding: 8px 15px;
			border-radius: 20px; /* Hap şeklinde butonlar */
			cursor: pointer;
			font-size: 0.9rem;
			font-weight: 500;
			transition: all 0.3s ease;
			user-select: none; /* Buton yazısının seçilmesini engeller */
		}

		.filtre-buton:hover {
			background-color: #e9ecef;
			border-color: #ccc;
		}

		.filtre-buton.active {
			background-color: #01427E;
			color: #fff;
			border-color: #01427E;
			box-shadow: 0 4px 8px rgba(1, 66, 126, 0.1);
		}

		/* Sayfalama Stilleri */
		.filtre-pagination {
			margin-top: 40px;
			display: flex;
			justify-content: center;
			align-items: center;
			gap: 8px;
		}

		.filtre-pagination .page-num {
			display: flex;
			justify-content: center;
			align-items: center;
			width: 40px;
			height: 40px;
			border: 1px solid #ddd;
			background-color: #fff;
			color: #333;
			text-decoration: none;
			border-radius: 50%; /* Yuvarlak butonlar */
			font-weight: 500;
			transition: all 0.3s ease;
		}

		.filtre-pagination .page-num:hover {
			border-color: #01427E;
			background-color: #f0f5f9;
		}

		.filtre-pagination .page-num.active {
			background-color: #01427E;
			color: #fff;
			border-color: #01427E;
			transform: translateY(-2px);
			box-shadow: 0 4px 8px rgba(1, 66, 126, 0.2);
		}

		#filtre-seviye-2 {
			padding-top: 15px;
			border-top: 1px solid #d1d9e0;
			margin-top: 15px;
		}

		.urun-bilgi h3 {
			/* Başlıklar arasında boşluk olsun (Teknik Detaylar / Viskozite Tablosu) */
			margin-top: 30px; 
			margin-bottom: 15px;
				color:black;
		}



		.urun-bilgi .urun-viskozite-tablosu {
			width: 100%; /* Bulunduğu alanı kaplasın */
			border-collapse: collapse; /* Kenarlıkları birleştir */
			margin-top: 10px;
			margin-bottom: 20px;
			font-size: 0.95rem;
			background-color: #ffffff;
			border-radius: 8px; /* Tablo köşelerini yuvarlat */
			overflow: hidden; /* Köşelerin düzgün görünmesi için */
			box-shadow: 0 2px 4px rgba(0,0,0,0.05);
		}

		/* .urun-bilgi içindeki teknik çizim/viskozite görseli */
		.urun-bilgi .urun-teknik-cizim {
			 margin-top: 30px; /* Diğer listelerden ayırmak için */
		}

		.urun-bilgi .urun-teknik-cizim h4 {
			margin-bottom: 15px;
			text-align: center; /* .urun-bilgi'deki center'ı iptal et */
			font-size: 24px !important; 
			font-weight: bold !important;
		}

		.urun-bilgi .urun-teknik-cizim img {
			width: 100%;
			height: auto;
			border: 1px solid #e9ecef;
			border-radius: 8px;
			box-shadow: 0 2px 4px rgba(0,0,0,0.05);
			cursor: zoom-in;
		}

		/* .urun-bilgi içindeki ek not kartları (textarea) */
		.urun-bilgi .ek-not-karti {
			background-color: #f9f9f9;
			border: 1px solid #ccc;
			border-radius: 8px;
			padding: 20px;
			margin-top: 30px;
			text-align: left;
		 box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
		}

		.urun-bilgi .ek-not-karti h4 {
			margin: 0 0 10px 0;
			font-size: 24px !important; 
			font-weight: bold !important;
			text-align: left;
		}

		.alt-icerik-kutu .urun-teknik-cizim h4 {
			font-size: 24px !important; 
			font-weight: bold !important;
			text-align: center;
		}

		.urun-alt-icerik{
			display: flex;
			flex-wrap: wrap;
			align-items: flex-start;
			gap: 20px;
			justify-content: center;
		}
		.alt-icerik-wrapper{
			display: flex;
			flex-wrap: wrap;
			align-items: flex-start;
			gap: 20px;
			justify-content: center;
		}

		.alt-icerik-kutu {
			flex-grow: 1;
			flex-shrink: 1;
			flex-basis: 45%;
			display: flex;
			flex-direction: column;
			align-items: center;
		}

		.kucuk-kutu {
			flex-basis: 8%;
		}

		.not-satirlari-wrapper{
			display: flex;
		  flex-direction: row;
		  flex-wrap: wrap;
		  align-content: center;
		  justify-content: flex-start;
		  align-items: center;
			gap: 5px;
		}

		.not-satiri{
			padding : 5px;
			border: solid 1px #ccc;
		  background-color: #012a4a;
		  border-radius: 10px;
			color:white !important;
		}

		.urun-teknik-cizim img{
			border:solid 1px #ccc;
			border-radius:12px;
		}

		.urun-teknik-cizim-vizkozite h4{
			font-size: 24px !important; 
			font-weight: bold !important;
			text-align: center;
		}

		.urun-teknik-teknik-cizim-olculeri h4{
			font-size: 24px !important; 
			font-weight: bold !important;
			text-align: center;
		}

		.urun-teknik-teknik-cizim-olculeri img{
			border:solid 1px #ccc;
			border-radius:12px;
		}

		.urun-teknik-cizim-vizkozite img{
			border:solid 1px #ccc;
			border-radius:12px;
		}

		.rank-math-breadcrumb{
			border: solid 1px #01427E;
			border-radius:12px;
			box-shadow: 10px 10px 10px 0px #ccc;
		}


		/* Deneme Css */

		/* =========================================
		   SIDEBARLI HİYERARŞİK TASARIM
		   ========================================= */

		/* Ana Kapsayıcı: İki Sütuna Böl */
		.sidebar-layout {
			display: flex;
			flex-wrap: wrap;
			gap: 30px;
			align-items: flex-start;
			margin-top: 2rem;
			margin-bottom: 50px;
			max-width:100%;
		}

		/* 1. SOL SÜTUN (SIDEBAR) */
		.filtre-sidebar {
			flex: 0 0 250px; /* Sabit 250px genişlik */
			background: #fff;
			padding: 20px;
			border: 1px solid #ccc;
			border-radius: 8px;
		}

		/* Sidebar Arama */
		.sidebar-arama input {
			width: 100%;
			padding: 8px 12px;
			margin-bottom: 20px;
			border: 1px solid #ddd;
			border-radius: 4px;
			font-size: 0.9rem;
		}

		/* Ağaç Yapısı Başlığı */
		.sidebar-baslik {
			font-size: 1.1rem;
			font-weight: 700;
			margin-bottom: 15px;
			color: #01427E;
			border-bottom: 2px solid #f1f1f1;
			padding-bottom: 10px;
		}

		/* Liste Yapısı (UL Reset) */
		.kategori-agaci-ul {
			list-style: none;
			padding: 0;
			margin: 0;
		}

		/* Alt Liste Girintisi */
		.kategori-agaci-ul .kategori-agaci-ul {
			padding-left: 15px; /* Her seviyede 15px içeri gir */
			border-left: 1px solid #eee; /* Solda ince çizgi rehberi */
			margin-left: 5px;
		}

		/* Liste Elemanları */
		.kategori-agaci-ul li {
			margin-bottom: 4px;
		}

		/* Linkler */
		.agac-link {
			display: flex;
			align-items: center;
			justify-content: space-between; /* İsim sola, sayı sağa */
			text-decoration: none;
			color: #555;
			font-size: 0.95rem;
			padding: 4px 8px;
			border-radius: 4px;
			transition: all 0.2s;
		}

		.agac-link:hover {
			color: #01427E;
			background: #f9f9f9;
		}

		/* Aktif Kategori (Seçili Olan) */
		.agac-link.active {
			font-weight: 700;
			color: #01427E;
			background: #eef4fa;
		}

		/* Sayı (Count) */
		.term-count {
			font-size: 0.8rem;
			color: #999;
			margin-left: 5px;
		}

		/* 2. SAĞ SÜTUN (ÜRÜNLER) */
		.filtre-icerik-alani {
			flex: 1; /* Kalan tüm alanı kapla */
			min-width: 0; /* Flexbox taşmasını önler */
		}

		/* MOBİL UYUMLULUK */
		@media (max-width: 768px) {
			.sidebar-layout {
				display: flex;
			flex-wrap: wrap;
			gap: 10px;
			align-items: flex-start;
			}

			.filtre-sidebar { 
				flex: auto;
				width: 100%;
				border: none;
				padding: 0;
				margin-bottom: 10px;
			}

			.sidebar-arama {
				margin-bottom : 1px;
			}

			/* Mobilde listeyi çok uzatmamak için max-height verip scroll yapılabilir */
			.sidebar-agac-wrap {
				max-height: 250px;
				overflow-y: auto;
				border: 1px solid #eee;
				padding: 5px;
			}
		}

		/* =========================================
		   ANASAYFA KATEGORİ SLIDER TASARIMI
		   ========================================= */

		.ana-kategori-slider-wrapper {
			position: relative;
			margin: 0 0;
		}

		/* Kartın Kendisi */
		.kat-slide-kart {
			display: flex; 
			flex-direction: column;
			background: #fff;
			border-radius: 12px;
			overflow: hidden;
			text-decoration: none;
			box-shadow: 0 4px 15px rgba(0,0,0,0.05);
			transition: transform 0.3s ease, box-shadow 0.3s ease;
			width: 350px;
			height: 350px;
			border: 1px solid #4675A1;
		}

		.kat-slide-kart:hover {
			transform: translateY(-5px);
			box-shadow: 0 10px 25px rgba(0,0,0,0.1);
		}

		/* Resim Alanı */
		.kat-slide-img {
			width: 100%;
			height: 200px;
			flex-shrink: 0; /* Resmin sıkışmasını engelle */
			overflow: hidden;
			background: #f9f9f9;
		}

		.kat-slide-img img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: transform 0.5s ease;
		}

		.kat-slide-kart:hover .kat-slide-img img {
			transform: scale(1.05);
		}

		/* Yazı ve Buton Alanı Kapsayıcısı */
		.kat-slide-content {
			display: flex;
			flex-direction: column;
			align-items: center;
			flex-grow: 1;
			padding: 20px 30px;
			text-align: center;
		}

		/* Başlık */
		.kat-slide-title {
			font-size: 1.2rem !important;
			font-weight: 700 !important;
			color: #333;
			margin: 0; 
			/* Başlık yukarıda kalsın */
		}

		/* Buton (Ürünleri İncele) */
		.kat-slide-count {
			margin-top: auto;
			display: inline-block;
			font-size: 0.85rem !important;
			color: #555;
			background: #f0f0f0;
			padding: 10px 20px;
			border-radius: 50px;
			font-weight: 600 !important;
			width: 100%;
			max-width: 200px;
			transition: all 0.3s;
		}

		/* Hover Efekti */
		.kat-slide-kart:hover .kat-slide-count {
			background: #01427E;
			color: #fff;
		}

		/* Slider Okları */
		#ana-kat-swiper .swiper-button-next,
		#ana-kat-swiper .swiper-button-prev {
			color: #01427E;
			background: rgba(255,255,255,0.9);
			width: 40px;
			height: 40px;
			border-radius: 50%;
			box-shadow: 0 2px 5px rgba(0,0,0,0.1);
		}

		#ana-kat-swiper .swiper-button-next:after,
		#ana-kat-swiper .swiper-button-prev:after {
			font-size: 18px;
			font-weight: bold;
		}

		/* Swiper Akışını Pürüzsüz (Linear) Yap */
		#statik-slider .swiper-wrapper {
			-webkit-transition-timing-function: linear !important;
			-o-transition-timing-function: linear !important;
			transition-timing-function: linear !important;
		}

		/* Dökümanlar Alanı Tasarımı */
		.urun-dokumanlari {
			margin-top: 30px;
			margin-bottom: 20px;
		}

		.urun-dokumanlari h3 {
			font-size: 1.1rem;
			color: #333;
			border-bottom: 2px solid #ccc;
			padding-bottom: 10px;
			margin-bottom: 15px;
		}

		.dokuman-grid {
			display: flex;
			flex-wrap: wrap;
			gap: 15px;
		}

		.teknik-dokuman-item {
			display: flex;
			align-items: center;
			background: #f9f9f9;
			border: 1px solid #e0e0e0;
			border-radius: 8px;
			padding: 10px 15px;
			text-decoration: none;
			transition: all 0.3s ease;
			width: 100%; /* Mobilde tam genişlik */
			max-width: 48%; /* Masaüstünde yan yana iki tane */
		}

		/* Masaüstünde yan yana dursun */
		@media(max-width: 768px){
			.teknik-dokuman-item { max-width: 100%; }
		}

		.teknik-dokuman-item:hover {
			background: #fff;
			box-shadow: 0 5px 15px rgba(0,0,0,0.08);
			transform: translateY(-2px);
			border-color: #ccc;
		}

		/* İkon Alanı */
		.doc-ikon {
			margin-right: 12px;
			display: flex;
			align-items: center;
		}

		/* PDF Özel Stili */
		.teknik-dokuman-item.doc-pdf {
			border-left: 4px solid #E74C3C;
		}

		/* Excel Özel Stili */
		.teknik-dokuman-item.doc-excel {
			border-left: 4px solid #27AE60;
		}

		/* Metin Alanı */
		.doc-bilgi {
			display: flex;
			flex-direction: column;
		}

		.doc-baslik {
			font-weight: 600;
			color: #333;
			font-size: 0.95rem;
			line-height: 1.2;
		}

		.doc-tur {
			font-size: 0.75rem;
			color: #888;
			margin-top: 3px;
			font-weight: 500;
		}

		/* --- ANA KAPLAYICI (FLEX) --- */
		.yaprak-flex-wrapper {
			display: flex;
			flex-wrap: wrap; /* Satıra sığmayan aşağı insin */
			width: 100%;     /* Full genişlik */
			gap: 30px;       /* Kartlar arası boşluk */
			padding: 20px 0; /* Üst-alt boşluk */
			overflow-x: hidden;
		}

		/* --- YATAY KART YAPISI --- */
		.yaprak-kart-yatay {
			/* Her satıra 2 tane sığsın (%50 - boşluk payı) */
			width: calc(50% - 15px); 

			display: flex; /* Resim ve Yazı YAN YANA */
			align-items: stretch; /* Yükseklikleri eşitle */
			background: #fff;
			border-radius: 12px;
			overflow: hidden;
			text-decoration: none;
			color: #333;
			box-shadow: 0 5px 20px rgba(0,0,0,0.06);
			transition: transform 0.3s ease, box-shadow 0.3s ease;
			border: 1px solid #eee;

			/* Animasyon Başlangıcı */
			opacity: 0;
			transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
		}

		.yaprak-kart-yatay:hover {
			transform: translateY(-8px) !important;
			box-shadow: 0 15px 30px rgba(0,0,0,0.15);
			border-color: #01427E;
			z-index: 2;
		}

		/* --- RESİM ALANI (SOL veya SAĞ) --- */
		.yaprak-gorsel {
			width: 45%; /* Kartın %45'i resim olsun */
			position: relative;
			overflow: hidden;
		}

		.yaprak-gorsel img {
			width: 100%;
			height: 100%;
			object-fit: cover; /* Resmi kutuya doldur */
			transition: transform 0.6s ease;
		}

		.yaprak-kart-yatay:hover .yaprak-gorsel img {
			transform: scale(1.1);
		}

		/* --- İÇERİK ALANI --- */
		.yaprak-icerik {
			width: 55%; /* Kartın %55'i yazı olsun */
			padding: 30px;
			display: flex;
			flex-direction: column;
			justify-content: center; /* Dikeyde ortala */
		}

		.yaprak-baslik {
			font-size: 1.3rem;
			font-weight: 700;
			color: #01427E;
			margin: 0 0 10px 0;
		}

		.yaprak-aciklama {
			font-size: 0.95rem;
			color: #666;
			line-height: 1.5;
			margin-bottom: 20px;
		}

		.yaprak-buton {
			font-weight: 700;
			color: #01427E;
			font-size: 0.9rem;
			text-transform: uppercase;
			letter-spacing: 0.5px;
			margin-top: auto; /* En alta it */
		}

		/* --- YÖNLENDİRME & ANİMASYON (AYNA EFEKTİ) --- */

		/* SOL SÜTUN (Sıra 1, 3, 5...) */
		/* Resim solda, Yazı sağda */
		.gelis-sol {
			flex-direction: row; 
			transform: translateX(-100px); /* Soldan gel */
		}

		/* SAĞ SÜTUN (Sıra 2, 4, 6...) */
		/* Resim sağda, Yazı solda (AYNA) */
		.gelis-sag {
			flex-direction: row-reverse; /* Tersi yön */
			transform: translateX(100px); /* Sağdan gel */
			text-align: right; /* Yazılar sağa yaslansın */
		}

		/* AKTİF OLUNCA */
		.yaprak-kart-yatay.aktif {
			opacity: 1;
			transform: translateX(0);
		}

		/* --- MOBİL UYUMLULUK --- */
		@media (max-width: 900px) {
			.yaprak-kart-yatay {
				width: 100%; /* Mobilde tam genişlik */
				flex-direction: column !important; /* Resim üste, yazı alta */
				height: auto;
				text-align: left !important;
			}

			.yaprak-gorsel {
				width: 100%;
				height: 200px;
			}

			.yaprak-icerik {
				width: 100%;
				padding: 20px;
			}

			/* Mobilde sağ-sol hareketi yerine aşağıdan yukarı */
			.gelis-sol, .gelis-sag {
				transform: translateY(50px);
			}

			.yaprak-kart-yatay.aktif {
				transform: translateY(0);
			}


		}

		/* Hero Başlık - Türkçe */
		.hero-title-tr {
		  font-size: 36px !important;
		  font-weight: bold;
		  text-align: left;
		  color: white;
		  margin: 0;
		}

		/* Hero Başlık - İngilizce */
		.hero-title-en {
		  font-size: 30px !important;
		  font-weight: bold;
		  text-align: left;
		  color: white;
		  margin: 0;
		}

		/* Hero Başlık - Fransızca */
		.hero-title-fr {
		  font-size: 30px !important;
		  font-weight: bold;
		  text-align: left;
		  color: white;
		  margin: 0;
		}

		/* Hero Başlık - Rusca */
		.hero-title-ru {
		  font-size: 30px !important;
		  font-weight: bold;
		  text-align: left;
		  color: white;
		  margin: 0;
		}

		/* Hero Başlık - Portekizce */
		.hero-title-pt {
		  font-size: 30px !important;
		  font-weight: bold;
		  text-align: left;
		  color: white;
		  margin: 0;
		}

		/* Slogan - Türkçe */
		.hero-slogan-tr {
		  font-size: 30px !important;
		  text-align: left;
		  color: white !important;
		  margin-top: 10px;
		}

		/* Slogan - İngilizce */
		.hero-slogan-en {
		  font-size: 28px !important;
		  text-align: left;
		  color: white !important;
		  margin-top: 10px;
		}

		/* Slogan - Fransızca */
		.hero-slogan-fr {
		  font-size: 28px !important;
		  text-align: left;
		  color: white !important;
		  margin-top: 10px;
		}

		/* Slogan - Rusca */
		.hero-slogan-ru {
		  font-size: 28px !important;
		  text-align: left;
		  color: white !important;
		  margin-top: 10px;
		}

		/* Slogan - Portekizce */
		.hero-slogan-pt {
		  font-size: 30px !important;
		  text-align: left;
		  color: white !important;
		  margin-top: 10px;
		}

		/* Ortak renkler */
		.hero-red {
		  color: white;
		}
		.hero-blue {
		  color: white;
		}

		/* Responsive: Küçük ekranlar (mobil) için boyutları küçültelim */
		@media (max-width: 768px) {
		  .hero-title-tr,
		  .hero-title-en,
		  .hero-title-fr,
		  .hero-title-ru,
		  .hero-title-pt{
			font-size: 22px !important;
		  }

		  .hero-slogan-tr,
		  .hero-slogan-en,
		  .hero-slogan-fr
		  .hero-slogan-ru
		  .hero-slogan-pt{
			font-size: 18px;
		  }
		}

		/* hero butonlari */
		.hero-buttons {
		  margin-top: 20px !important;
		  display: flex !important;
		  flex-wrap: wrap !important;
		  gap: 10px !important;
		}

		.hero-button {
		  display: inline-block !important;
		  padding: 12px 24px !important;
		  font-size: 16px !important;
		  border-radius: 6px !important;
		  text-decoration: none !important;
		  font-weight: 600 !important;
		  transition: background-color 0.3s ease !important;
		}

		.hero-button.primary {
		  background-color: #0073e6 !important;
		  color: white !important;
		}

		.hero-button.secondary {
		  background-color: transparent !important;
		  color: white !important;
		  border: 2px solid white !important;
		}

		.hero-button:hover {
		  opacity: 0.9 !important;
		}

		@media (max-width: 768px) {
		  .hero-buttons {
			align-items: flex-start !important;
		  }

		  .hero-button {
			width: 100% !important;
			margin-right: 0 !important;
		  }

		  .hero-button + .hero-button {
			margin-top: 10px !important;
		  }
		}


/* =========================================
   SCROLLBAR GİZLEME (KOMPLE TRANSPARAN)
   ========================================= */

		/* Tüm site genelinde (HTML ve Body) */
		html, body {
			scrollbar-width: none;
			-ms-overflow-style: none;
		}

		/* Chrome, Safari, Edge ve Opera için */
		::-webkit-scrollbar {
			width: 0px;
			height: 0px;
			background: transparent;
			display: none;
		}

/*--- SHORTCODE CSS BITIS ---*/

		/* --- 4. POLYLANG DİL DEĞİŞTİRİCİ (DROPDOWN) --- */
		/* En sondaki 'pll-parent-menu-item' bir açılır menüdür */

		/* Alt Menü Gizli Kalsın */
		ul.nav-links .sub-menu {
			display: none;             /* Gizle */
			position: absolute;        /* Bağımsız hareket etsin */
			top: 100%;                 /* Tam altına gelsin */
			right: auto;                  /* Sağa yaslansın */
			background: #fff;
			min-width: 40px;          /* Genişlik */
			box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Gölge */
			border-radius: 4px;
			padding: 10px 0;
			z-index: 999;
		}


		/* Sadece 'active' sınıfı varsa aç (JS ile eklenecek) */
		ul.nav-links li.menu-item-has-children.active .sub-menu {
			display: block;
			animation: fadeIn 0.3s ease;
		}

		/* Tıklanabilir olduğunu göstermek için imleci değiştir */
		ul.nav-links li.menu-item-has-children > a {
			cursor: pointer;
		}

		/* Alt Menü Linkleri */
		ul.nav-links .sub-menu li {
			display: block;
			padding: 0;
		}

		ul.nav-links .sub-menu li a {
			display: block;
			padding: 8px 20px;
			color: #333;
			font-size: 14px;
			text-transform: none;      /* Dil isimleri normal yazılsın */
			white-space: nowrap;
		}

		ul.nav-links .sub-menu li a:hover {
			background-color: #f5f5f5;
			color: var(--brand-red, #EE1C3C);
		}

		/* Ufak bir animasyon */
		@keyframes fadeIn {
			from { opacity: 0; transform: translateY(10px); }
			to { opacity: 1; transform: translateY(0); }
		}

 /* --- BU SAYFAYA ÖZEL STİLLER (KATEGORİ DETAY) --- */
        
        /* Layout Düzeni */
        .page-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            padding: 4rem 0;
        }

        @media (min-width: 1024px) {
            .page-layout {
                grid-template-columns: 300px 1fr; /* Sol Sidebar 300px, Sağ İçerik esnek */
            }
        }

        /* --- Sidebar (Yan Menü) --- */
        .sidebar {
            position: relative;
        }

        .sidebar-widget {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 1rem;
            padding: 1.5rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-sm);
        }

        .sidebar-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .category-list li {
            margin-bottom: 0.5rem;
        }

        .category-list a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            color: var(--text-gray);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            background: var(--bg-light);
        }

        .category-list a:hover, 
        .category-list a.active {
            background: var(--brand-blue);
            color: var(--white);
        }

        .category-list a:hover svg, 
        .category-list a.active svg {
            color: var(--white);
        }

        /* --- İndirme Widget'ı --- */
        .download-widget {
            background: var(--brand-blue);
            color: var(--white);
            text-align: center;
            border: none;
        }

        .download-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--brand-red);
        }

        /* --- Ana İçerik --- */
        .content-header {
            margin-bottom: 2rem;
        }

        .content-title {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .content-desc {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 1rem;
        }

        /* --- Ürün Modelleri Grid --- */
        .model-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }

        .model-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 1rem;
            overflow: hidden;
            transition: var(--transition);
        }

        .model-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--brand-blue);
        }

        .model-img-box {
            height: 200px;
            background: #fff;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--bg-light);
        }

        .model-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .model-card:hover .model-img {
            transform: scale(1.05);
        }

        .model-body {
            padding: 1.5rem;
        }

        .model-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        /* Teknik Tablo */
        .tech-table {
            width: 100%;
            margin-bottom: 1.5rem;
            font-size: 0.85rem;
        }

        .tech-table tr {
            border-bottom: 1px solid var(--bg-light);
        }

        .tech-table td {
            padding: 0.5rem 0;
            color: var(--text-gray);
        }

        .tech-table td:last-child {
            text-align: right;
            font-weight: 600;
            color: var(--brand-blue);
        }

        .model-btn {
            width: 100%;
            padding: 0.75rem;
            background: var(--bg-light);
            color: var(--text-dark);
            font-weight: 600;
            border-radius: 0.5rem;
            text-align: center;
            transition: var(--transition);
            display: block;
        }

        .model-card:hover .model-btn {
            background: var(--brand-red);
            color: var(--white);
        }

        /* Hero */
        .kategori-hero {
            position: relative;
            height: 40vh;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-color: var(--brand-blue);
            padding-top: 80px;
            overflow: hidden;
        }
        
        .kategori-hero-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url('https://images.unsplash.com/photo-1535295972055-1c762f4483e5?auto=format&fit=crop&q=80&w=1920');
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

        .kategori-hero-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(1, 66, 126, 0.8);
			mix-blend-mode: multiply;
            z-index: 1;
        }

		.single-urun-page-hero{
			position: relative;
            height: 60vh; /* Ana sayfadan daha kısa */
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            background-color: var(--brand-blue);
            padding-top: 80px; /* Navbar payı */
            overflow: hidden;
		}
		
		.single-urun-page-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/wp-content/uploads/2026/02/urunler_bg_photo.avif');
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

		.single-urun-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(1, 66, 126, 0.8); /* Marka mavisi ağırlıklı overlay */
            mix-blend-mode: multiply;
            z-index: 0;
        }

		.urun-grubu-hero-overlay{
			position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(1, 66, 126, 0.8); /* Marka mavisi ağırlıklı overlay */
            mix-blend-mode: multiply;
            z-index: 0;
		}

/* =========================================================
   1. AKORDİYON MENÜ (Masaüstü & Mobil)
   ========================================================= */
/* Alt menüleri başlangıçta gizle */
.filtre-sidebar .kategori-agaci-ul ul {
    display: none; 
    padding-left: 15px;
    margin-top: 5px;
    border-left: 1px dashed #cbd5e1; /* Sol tarafa ince bir şecere çizgisi */
    margin-left: 15px;
}

.filtre-sidebar .kategori-agaci-ul li {
    position: relative;
    margin-bottom: 5px;
}

/* Toggle (Aç/Kapat) İkonu */
.agac-toggle {
    cursor: pointer;
    margin-left: auto; /* İkonu en sağa it */
    padding: 5px;
    color: #64748b;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 4px;
}

.agac-toggle:hover {
    background: #e2e8f0;
    color: #01427E;
}

/* Menü açıkken ikon ters dönsün */
.agac-toggle.open {
    transform: rotate(180deg);
}

/* =========================================================
   2. MOBİL FİLTRE ÇEKMECESİ (Off-Canvas)
   ========================================================= */
.mobil-filtre-btn {
    display: none; /* Masaüstünde gizli */
}
.mobil-filtre-kapat {
    display: none; /* Masaüstünde gizli */
}

@media (max-width: 991px) {
    /* Ekrana gelen filtrele butonu */
    .mobil-filtre-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: #01427E;
        color: #fff;
        border: none;
        padding: 12px 20px;
        border-radius: 6px;
        font-weight: 600;
        cursor: pointer;
        margin-bottom: 20px;
        width: 100%;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    /* Sol Sidebar'ı ekran dışına it ve çekmeceye dönüştür */
    .filtre-sidebar {
        position: fixed;
        top: 0;
        left: -100%; /* Ekranın solunda sakla */
        width: 300px;
        max-width: 85vw; /* Ekranın %85'inden büyük olmasın */
        height: 100vh;
        background: #fff;
        z-index: 9999;
        padding: 25px 20px;
        box-shadow: 10px 0 25px rgba(0,0,0,0.2);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Yağ gibi kayma animasyonu */
        overflow-y: auto;
    }

    /* Çekmece açıldığında eklenecek class */
    .filtre-sidebar.aktif {
        left: 0; 
    }

    /* Çekmece içindeki X (Kapat) butonu */
    .mobil-filtre-kapat {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 15px;
        right: 15px;
        background: #f1f5f9;
        border: none;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
        color: #334155;
    }

    /* Arkadaki siyah yarı saydam perde */
    .filtre-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        z-index: 9998;
        display: none;
        backdrop-filter: blur(2px);
    }
}

/* Alt menüleri varsayılan olarak gizle */
.has-dropdown .sub-menu,
.pll-parent-menu-item .sub-menu {
    display: none;
    position: absolute; /* Masaüstü için aşağı sarkması adına */
    /* ... diğer stil kodlarınız ... */
}

/* Javascript 'active' class'ını eklediğinde görünür yap */
.has-dropdown.active > .sub-menu,
.pll-parent-menu-item.active > .sub-menu {
    display: block;
}

/* =========================================================
   BOŞ DURUM (EMPTY STATE) TASARIMI
   ========================================================= */

/* Ana Kapsayıcı: İçeriği ortalar ve geniş bir alan yaratır */
.empty-state-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: #f8fafc; /* Hafif grimsi beyaz arka plan */
    border: 2px dashed #e2e8f0; /* Kesik çizgili çerçeve */
    border-radius: 12px;
    max-width: 600px;
    margin: 40px auto;
}

/* İkon Tasarımı: Yuvarlak ve hafif gölgeli */
.empty-state-icon {
    color: #94a3b8; 
    margin-bottom: 20px;
    background: #ffffff;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Başlık: Vurgulu ve belirgin */
.empty-state-title {
    font-size: 24px;
    font-weight: 600;
    color: #334155;
    margin: 0 0 10px 0;
}

/* Açıklama Metni: Yumuşak renkli ve okunaklı */
.empty-state-description {
    font-size: 16px;
    color: #64748b;
    margin: 0 0 25px 0;
    line-height: 1.6;
    max-width: 400px;
}

/* Yönlendirme ve Temizleme Butonu */
.empty-state-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: #01427E; /* Markanızın ana rengi */
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
}

/* Butonun Üzerine Gelinince (Hover) */
.empty-state-btn:hover {
    background-color: #012b54; /* Biraz daha koyu lacivert */
    transform: translateY(-2px); /* Çok hafif yukarı kalkma efekti */
    color: #ffffff;
}

/* =========================================================
   İSKELET YÜKLEYİCİ (SKELETON LOADER) EFEKTLERİ
   ========================================================= */

/* İskelet Kartın Dış Yapısı (Gerçek karta benzer ama tıklanamaz) */
.skeleton-card {
    border: 1px solid #e2e8f0;
    box-shadow: none !important;
    pointer-events: none; /* Tıklanmaları engelle */
    background: #fff;
}

/* Sahte Görsel Alanı */
.skeleton-img {
    width: 100%;
    aspect-ratio: 16/10;
    border-bottom: 1px solid #f1f5f9;
}

/* Sahte Metin Satırları */
.skeleton-text {
    border-radius: 4px;
    margin-bottom: 8px;
}

/* Sahte İncele Butonu */
.skeleton-button {
    height: 40px;
    width: 100%;
    border-radius: 6px;
    margin-top: auto; /* Kartın en altına iter */
}

/* Işık Dalgalanması (Shimmer) Animasyonu */
.shimmer {
    background: #f6f7f8;
    background-image: linear-gradient(
        to right, 
        #f6f7f8 0%, 
        #edeef1 20%, 
        #f6f7f8 40%, 
        #f6f7f8 100%
    );
    background-repeat: no-repeat;
    background-size: 800px 100%; 
    animation-duration: 1.5s;
    animation-fill-mode: forwards; 
    animation-iteration-count: infinite;
    animation-name: placeholderShimmer;
    animation-timing-function: linear;
}

@keyframes placeholderShimmer {
    0% {
        background-position: -400px 0;
    }
    100% {
        background-position: 400px 0;
    }
}

/* =========================================================
   MODERN ÇEREZ KARTI TASARIMI (KESİN ÇÖZÜM - ID HEDEFLEME)
   ========================================================= */

/* Ana Taşıyıcı: Şeffaf Dış Kabuk */
body #cookie-notice {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    bottom: 24px !important;
    left: 20px !important;
    right: 20px !important;
    position: fixed !important;
    z-index: 99999 !important;
    pointer-events: none; 
}

/* Gizleme Komutu */
body #cookie-notice.cookie-notice-hidden {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Görsel Tasarım: İç Kutu */
body #cookie-notice .cookie-notice-container {
    pointer-events: auto; 
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    padding: 20px 24px !important;
    font-family: inherit !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
}

/* Çerez Metni */
body #cn-notice-text {
    color: #334155 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    text-align: left !important;
}

/* BUTON KAPSAYICISI (Artık ID ile hedefliyoruz) */
body #cn-notice-buttons {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}

/* BÜTÜN BUTONLARIN ORTAK YAPISI */
body #cn-notice-buttons .cn-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border-radius: 8px !important;
    height: 42px !important;
    border: none !important;
    width: auto !important; /* Temanın %100 yapmasını engeller */
    box-sizing: border-box !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

body #cn-notice-buttons .cn-button:hover {
    transform: translateY(-2px) !important;
}

/* 1. KABUL EDİYORUM BUTONU (ID Hedefleme) */
body #cn-accept-cookie {
    background-color: #01427E !important;
    color: #ffffff !important;
}
body #cn-accept-cookie:hover {
    background-color: #023666 !important;
}

/* 2. TÜMÜNÜ REDDET BUTONU (ID Hedefleme) */
body #cn-refuse-cookie {
    background-color: #f1f5f9 !important;
    color: #475569 !important;
}
body #cn-refuse-cookie:hover {
    background-color: #e2e8f0 !important;
    color: #1e293b !important;
}

/* 3. GİZLİLİK POLİTİKASI BUTONU (ID Hedefleme) */
body #cn-more-info {
    background-color: transparent !important;
    color: #01427E !important;
    border: 1px solid #01427E !important;
}
body #cn-more-info:hover {
    background-color: #f8fafc !important;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    body #cookie-notice {
        bottom: 12px !important;
        left: 12px !important;
        right: 12px !important;
    }
    body #cookie-notice .cookie-notice-container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 16px !important;
        padding: 16px !important;
    }
    body #cn-notice-buttons {
        width: 100% !important;
        flex-direction: column !important; /* Mobilde alt alta dizer */
        justify-content: center !important;
    }
    body #cn-notice-buttons .cn-button {
        width: 100% !important; /* Mobilde tam genişlik */
    }
}

/* =========================================
   ÖZEL 404 HERO TASARIMI
   ========================================= */

/* Hero Kapsayıcısı */
.error-hero {
    position: relative;
    padding: 120px 0 100px 0; /* İçerik boşluğunu ortalamak için */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #001a35; /* Normal lacivertten bir tık daha koyu bir zemin */
}

/* Arka Plan Görseli */
.error-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/iletisim-bg.jpg'); /* İsterseniz buraya 404'e özel bir arka plan resmi atayabilirsiniz */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax efekti için */
    opacity: 0.3; /* Resmi karanlıklaştırıyoruz ki ön plana yazılar çıksın */
}

/* Renk Geçişi (Gradient Overlay) */
.error-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 66, 126, 0.95) 0%, rgba(0, 26, 53, 0.95) 100%);
}

/* Breadcrumb (Navigasyon İzi) */
.error-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.error-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.error-breadcrumb a:hover {
    color: #60a5fa; /* Hover'da açık mavi */
}

.error-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
}

.error-breadcrumb .current {
    color: #cbd5e1;
}

/* Başlıklar ve Metinler */
.error-hero-title {
    font-size: 8rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 10px 0;
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3); /* Yazıya derinlik katar */
}

.error-hero-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.error-hero-desc {
    max-width: 600px;
    margin: 0 auto;
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* =========================================
   404 İÇERİK & BUTONLAR ALANI
   ========================================= */
.error-content-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f8fafc; /* Çok hafif grimsi beyaz zemin */
}

.error-action-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
}

.error-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Ana Buton Stili */
.btn-error-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 35px;
    background-color: #01427E;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(1, 66, 126, 0.2);
}

.btn-error-primary:hover {
    background-color: #012b54;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 66, 126, 0.3);
}

/* İkincil Buton Stili (Kenarlıklı) */
.btn-error-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 35px;
    background-color: transparent;
    color: #01427E;
    border: 2px solid #01427E;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-error-secondary:hover {
    background-color: #01427E;
    color: #fff;
    transform: translateY(-2px);
}