/* ================= ORTA ALAN (AÇIK TEMA) ================= */
        .reveal-up { opacity: 0; transform: translateY(50px); filter: blur(10px); transition: all 1s var(--easing); }
        .reveal-up.active { opacity: 1; transform: translateY(0); filter: blur(0); }

        /* HERO (Light) */
        .ultra-hero {
            margin-top: 110px; height: calc(100vh - 110px); width: 100%;
            position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center;
            background-color: #fff;
        }
        .ultra-bg-video {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover;
            opacity: 0.4; /* Video parlaklığı */
        }
        .ultra-content { z-index: 10; text-align: center; max-width: 1000px; padding: 0 2rem; }
        .hero-title {
            font-family: "Space Grotesk"; font-size: clamp(2.5rem, 10vw, 6rem); font-weight: 800; line-height: 0.9;
            color: var(--primary-color);
            margin-bottom: 1.5rem; letter-spacing: -1px; text-transform: uppercase;
            word-break: break-word;
        }
        .hero-subtitle {
            font-size: 1.3rem; color: #555;
            margin-bottom: 3rem; font-weight: 300; letter-spacing: 1px;
            max-width: 600px; margin-left: auto; margin-right: auto;
        }
       .magnetic-btn {
            display: inline-flex; align-items: center; justify-content: center;
            width: 200px; height: 60px;
            border: 1px solid var(--ti-yellow); /* Siyah yerine Sarı Çerçeve */
            border-radius: 60px;
            color: #000;
            font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
            background: rgba(0,0,0,0.02);
            backdrop-filter: blur(10px); transition: all 0.3s;
        }
        .magnetic-btn:hover { background: var(--ti-yellow); color: #000; border-color: var(--ti-yellow); }

        /* NEWS CARDS (Light) */
        .news-section { padding: 6rem 0; background: #fff; position: relative; overflow: hidden; }
        .section-head { text-align: center; margin-bottom: 4rem; max-width: 800px; margin-left: auto; margin-right: auto; padding: 0 2rem; }
       .sec-title { 
            font-family: "Space Grotesk"; 
            font-size: clamp(2rem, 6vw, 3rem); 
            margin-bottom: 1rem; 
            color: #024b5a; /* İstenen Renk */ 
            word-break: break-word;
        }
        .sec-desc { color: #666; font-size: 1.1rem; }

        .cards-scroller {
            overflow: hidden; width: 100%; padding: 2rem 0;
            mask-image: linear-gradient(to right, transparent, white 5%, white 95%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, white 5%, white 95%, transparent);
        }
        .marquee-track { display: flex; gap: 2rem; width: max-content; animation: scroll-news 40s linear infinite; }
        .marquee-track:hover { animation-play-state: paused; }
        @keyframes scroll-news { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

       .news-card {
            flex: 0 0 350px; height: 450px; position: relative; border-radius: 20px; overflow: hidden;
            background: #fff;
            border: 1px solid #eaeaea;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.4s var(--easing); cursor: pointer;
        }
      .nc-img { 
            width: 100%; height: 100%; 
            object-fit: cover; 
            transition: 0.5s; 
        }
        .news-card:hover .nc-img { 
            transform: scale(1.05); 
        }
       .news-card:hover { 
            transform: translateY(-10px); 
            border-color: var(--ti-yellow); 
            box-shadow: 0 20px 40px rgba(242, 201, 76, 0.15); 
        }
     .nc-content { 
            position: absolute; 
            bottom: 0; 
            left: 0; 
            width: 100%; 
            height: auto; /* İçerik kadar yükseklik */
            background: #fff; /* Beyaz zemin */
            padding: 1.5rem;
            padding-right: 70px; /* Ok simgesinin üzerine yazı binmesin */
            border-top: 1px solid #f0f0f0;
            z-index: 2;

            /* HAREKET MANTIĞI */
            transform: translateY(100%); /* Varsayılan: Aşağıda gizli */
            transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        }
        .news-card:hover .nc-content { 
            transform: translateY(0); 
        }
    .nc-title { 
            font-family: "Space Grotesk"; 
            font-size: 1.3rem; 
            font-weight: 700; 
            color: #024b5a; /* İstediğin renk */
            line-height: 1.2; 
            margin-bottom: 0.5rem;
            display: block; 
        }
        
        .nc-slogan { 
            font-size: 0.9rem; 
            color: #666; 
            line-height: 1.4; 
            display: block; 
        }
  .nc-arrow {
            position: absolute; 
            bottom: 20px; 
            right: 20px;
            width: 45px; 
            height: 45px; 
            border-radius: 50%;
            background: var(--ti-yellow); /* Sarı renk */
            display: flex; align-items: center; justify-content: center;
            color: #000; 
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: 0.3s;
        }
        
        /* Hover olunca ok rengi sarı olsun */
       .news-card:hover .nc-arrow {
            transform: scale(1.1);
        }

        /* --- 3. ÜRÜN GÖRSELLERİ (SWIPER FLUE EFEKTİ) --- */

        /* ================================================================= */
        /* --- CENTERED GALLERY --- */
        /* ================================================================= */
        .showcase-section {
            padding: 8rem 0;
            background: #fcfcfc;
            overflow: hidden;
            min-height: 80vh;
            display: flex; align-items: center; position: relative;
        }

        .showcase-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 2rem;
            align-items: center;
            justify-content: center;
            z-index: 2; width: 100%;
        }
        .tech-info { flex: 1 1 300px; min-width: 0; }
        .gallery-wrapper { flex: 1 1 300px; width: 100%; position: relative; min-width: 0; }

        .tech-info { position: relative; z-index: 10; padding: 20px; }

        .swiper-gallery {
            width: 100%;
            padding: 50px 0;
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        }

      .swiper-gallery .swiper-slide {
            width: 320px;
            height: 420px;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border: 1px solid #eaeaea;
            overflow: hidden;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.6s ease; /* Geçiş süresi */
            
            /* Yanlardaki Resimler İçin Ayarlar */
            opacity: 0.5;
            filter: blur(4px); /* Bulanıklık efekti */
            transform: scale(0.85); /* Küçültme */
        }

        .swiper-gallery .swiper-slide-active {
            /* Ortadaki Aktif Resim İçin Ayarlar */
            opacity: 1;
            filter: blur(0); /* Netleştirme */
            transform: scale(1.15); /* Büyütme */
            border-color: var(--ti-yellow);
            box-shadow: 0 30px 60px rgba(242, 201, 76, 0.25);
            z-index: 20;
        }

        .swiper-gallery .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        .slider-nav-btn {
            width: 50px; height: 50px;
            border-radius: 50%;
            background: #fff;
            border: 1px solid #eaeaea;
            display: flex; align-items: center; justify-content: center;
            color: #333;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .slider-nav-btn:hover {
            background: var(--ti-yellow);
            color: #000;
            border-color: var(--ti-yellow);
        }

        /* INFO GRID (Light) */
        .info-section { background: #f8f9fa; padding: 6rem 2rem; border-top: 1px solid #eaeaea; }
        .info-container { max-width: 1000px; margin: 0 auto; text-align: center; }
        .info-desc { max-width: 600px; margin: 0 auto 4rem; color: #666; }
        .info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #e5e5e5; border: 1px solid #e5e5e5; margin-top: 3rem; }
        .info-card { background: #fff; padding: 3rem 1.5rem; transition: 0.3s; position: relative; display: block; }
        .info-card:hover { background: #fcfcfc; box-shadow: inset 0 0 20px rgba(0,0,0,0.02); }
        .ic-num { font-size: 0.8rem; color: var(--ti-yellow); font-family: "Space Grotesk"; margin-bottom: 1rem; display: block; font-weight: bold; }
        .ic-title { 
            color: #024b5a; /* İstenen Renk */
            font-size: 1.2rem; 
            font-weight: 700; 
            margin-bottom: 0.5rem; 
        }
        .ic-text { color: #666; font-size: 0.9rem; line-height: 1.4; }
        .ic-arrow { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); opacity: 0; transition: 0.3s; color: var(--ti-yellow); }
        .info-card:hover .ic-arrow { opacity: 1; bottom: 2rem; }

        /* FOOTER */
        footer { background: #111; color: #999; padding: 4rem 2rem 2rem; border-top: 3px solid var(--ti-yellow); font-size: 0.85rem; position: relative; z-index: 10; }
        .f-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; margin-bottom: 3rem; }
        .f-head { color: #fff; font-weight: 600; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0.5px; font-size: 0.9rem; }
        .f-link { display: block; margin-bottom: 0.8rem; transition: color 0.2s; }
        .f-link:hover { color: var(--ti-yellow); }
        .f-bottom { max-width: var(--max-width); margin: 0 auto; border-top: 1px solid #333; padding-top: 2rem; display: flex; justify-content: space-between; align-items:center; gap: 16px; flex-wrap: wrap; }

        /* ================================================================= */
        /* --- MODAL STİLLERİ (LIGHT THEME) --- */
        /* ================================================================= */
        .news-modal-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(8px);
            z-index: 10000; display: none; opacity: 0; transition: opacity 0.3s ease;
            align-items: center; justify-content: center; padding: 20px;
        }
        .news-modal-overlay.active { display: flex; opacity: 1; }

        .news-modal {
            background: #fff;
            border: 1px solid #eaeaea;
            border-radius: 16px;
            width: 100%;
            max-width: 1000px;
            height: 80vh;
            max-height: 800px;
            display: flex; flex-direction: column; overflow: hidden;
            transform: translateY(50px); transition: transform 0.4s var(--easing);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }
        .news-modal-overlay.active .news-modal { transform: translateY(0); }

        .nm-header {
            flex-shrink: 0;
            padding: 1.2rem 2rem; border-bottom: 1px solid #f0f0f0;
            display: flex; justify-content: space-between; align-items: center;
            background: #fafafa;
        }
        .nm-title {
            font-family: "Space Grotesk"; font-size: 1.4rem; color: #111; margin: 0;
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 90%;
        }
        .nm-close {
            background: transparent; border: none; color: #999; font-size: 1.5rem;
            cursor: pointer; transition: 0.2s; display:flex; align-items:center; justify-content:center;
        }
        .nm-close:hover { color: var(--ti-yellow); transform: rotate(90deg); }

        .nm-body { flex: 1; display: flex; flex-direction: row; min-height: 0; }

        .nm-img-col {
            flex: 1; background: #f8f9fa;
            display: flex; align-items: center; justify-content: center;
            padding: 1rem; border-right: 1px solid #f0f0f0;
            overflow: hidden;
        }
        .nm-image {
            max-width: 100%; max-height: 100%; width: auto; height: auto;
            object-fit: contain; border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .nm-text-col {
            flex: 1.2; padding: 2.5rem;
            overflow-y: auto; color: #444;
            line-height: 1.8; font-size: 1rem;
            overscroll-behavior: contain;
        }
        [data-lenis-prevent] { overscroll-behavior: contain; }

        .nm-text-col::-webkit-scrollbar { width: 6px; }
        .nm-text-col::-webkit-scrollbar-track { background: #f1f1f1; }
        .nm-text-col::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
        .nm-text-col::-webkit-scrollbar-thumb:hover { background: var(--ti-yellow); }

        @media (max-width: 1024px) {
            .showcase-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
            .hero-title { font-size: 4rem; word-break: break-word; }
        }

        @media (max-width: 768px) {
            .hero-title { font-size: 3rem; }
            .info-grid { grid-template-columns: 1fr; }
            .f-grid { grid-template-columns: 1fr 1fr; }

            .news-modal { height: auto; max-height: 90vh; }
            .nm-body { flex-direction: column; overflow-y: auto; }
            .nm-img-col { flex: none; height: 250px; border-right: none; border-bottom: 1px solid #f0f0f0; }
            .nm-text-col { flex: none; padding: 1.5rem; overflow-y: visible; }
        }

        /* ================================================================= */
        /* ======================= ÇEREZ BANNER + TERCIH ==================== */
        /* ================================================================= */
        .cookie-banner{
            position: fixed;
            left: 18px;
            right: 18px;
            bottom: 18px;
            z-index: 13000;
            display: none;
            align-items: flex-end;
            justify-content: space-between;
            gap: 16px;
            padding: 16px 16px;
            border: 1px solid #eee;
            border-radius: 18px;
            background: rgba(255,255,255,.92);
            backdrop-filter: blur(12px);
            box-shadow: 0 18px 60px rgba(0,0,0,.12);
        }
        .cookie-banner.show{ display:flex; }
        .cookie-left{ min-width: 240px; max-width: 760px; }
        .cookie-title{
            font-family: "Space Grotesk";
            font-weight: 900;
            color:#111;
            margin:0 0 6px 0;
            font-size: 1rem;
        }
        .cookie-text{
            margin:0;
            color:#666;
            font-size: .88rem;
            line-height: 1.5;
        }
        .cookie-actions{
            display:flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            align-items: center;
            gap: 10px;
        }
        .cookie-btn{
            border: 1px solid #eee;
            background:#fff;
            color:#111;
            font-weight: 900;
            border-radius: 14px;
            padding: 10px 12px;
            font-size: .85rem;
            cursor: pointer;
            transition: all .2s ease;
        }
        .cookie-btn:hover{ border-color: rgba(242,201,76,.9); box-shadow: 0 10px 24px rgba(242,201,76,.15); }
        .cookie-btn.primary{
            background: var(--ti-yellow);
            border-color: var(--ti-yellow);
            color:#000;
        }
        .cookie-link{
            font-weight: 900;
            color:#111;
            border-bottom: 1px dashed rgba(0,0,0,.25);
        }
        .cookie-link:hover{
            color: var(--ti-yellow);
            border-bottom-color: rgba(242,201,76,.9);
        }

        /* Tercih Modal */
        .cookie-pref-overlay{
            position: fixed; inset: 0;
            background: rgba(255,255,255,.78);
            backdrop-filter: blur(10px);
            z-index: 13050;
            display:none;
            align-items: center;
            justify-content: center;
            padding: 18px;
        }
        .cookie-pref-overlay.open{ display:flex; }
        .cookie-pref-modal{
            width: min(980px, 100%);
            max-height: 88vh;
            background: #fff;
            border: 1px solid #eee;
            border-radius: 18px;
            box-shadow: 0 28px 80px rgba(0,0,0,.16);
            overflow: hidden;
            display:flex;
            flex-direction: column;
        }
        .cookie-pref-head{
            padding: 16px 18px;
            border-bottom: 1px solid #f2f2f2;
            background:#fafafa;
            display:flex;
            justify-content: space-between;
            align-items:flex-start;
            gap: 12px;
        }
        .cookie-pref-head h3{
            margin:0;
            font-family:"Space Grotesk";
            font-size: 1.1rem;
            font-weight: 900;
            color:#111;
        }
        .cookie-pref-head .sub{
            margin-top:4px;
            color:#666;
            font-size:.85rem;
            line-height:1.4;
        }
        .cookie-pref-close{
            border: 1px solid #eee;
            background:#fff;
            width: 42px; height: 42px;
            border-radius: 14px;
            cursor: pointer;
            flex-shrink:0;
        }
        .cookie-pref-body{
            padding: 16px 18px 8px;
            overflow:auto;
            color:#333;
            line-height:1.7;
            font-size: .95rem;
        }
        .cookie-pref-row{
            border: 1px solid #f0f0f0;
            border-radius: 14px;
            padding: 12px 12px;
            margin-bottom: 10px;
            display:flex;
            justify-content: space-between;
            gap: 12px;
            align-items: flex-start;
        }
        .cookie-pref-row .meta{
            flex:1;
            min-width: 200px;
        }
        .cookie-pref-row .name{
            font-weight: 1000;
            color:#111;
            margin-bottom: 4px;
        }
        .cookie-pref-row .desc{
            color:#666;
            font-size: .86rem;
            margin:0;
        }
        .cookie-toggle{
            display:flex;
            align-items:center;
            gap: 10px;
            flex-shrink:0;
        }
        .cookie-toggle input[type="checkbox"]{
            width: 44px;
            height: 24px;
            appearance: none;
            background: #e9e9e9;
            border-radius: 999px;
            position: relative;
            cursor: pointer;
            transition: .2s ease;
            border: 1px solid #e5e5e5;
        }
        .cookie-toggle input[type="checkbox"]:checked{
            background: rgba(242,201,76,.9);
            border-color: rgba(242,201,76,.9);
        }
        .cookie-toggle input[type="checkbox"]::after{
            content:"";
            position:absolute;
            top: 2px; left: 2px;
            width: 20px; height: 20px;
            background:#fff;
            border-radius: 50%;
            transition: .2s ease;
            box-shadow: 0 6px 14px rgba(0,0,0,.14);
        }
        .cookie-toggle input[type="checkbox"]:checked::after{ left: 22px; }
        .cookie-toggle input[type="checkbox"]:disabled{
            opacity: .6;
            cursor:not-allowed;
        }
        .cookie-pref-foot{
            padding: 14px 18px;
            border-top: 1px solid #f2f2f2;
            background:#fafafa;
            display:flex;
            justify-content: flex-end;
            gap: 10px;
            flex-wrap: wrap;
        }

        /* Küçük yönet butonu */
        .cookie-fab{
            position: fixed;
            left: 18px;
            bottom: 18px;
            z-index: 12950;
            width: 52px;
            height: 52px;
            border-radius: 18px;
            border: 1px solid #eee;
            background: rgba(255,255,255,.92);
            backdrop-filter: blur(10px);
            box-shadow: 0 18px 50px rgba(0,0,0,.10);
            display:none;
            align-items:center;
            justify-content:center;
            cursor: pointer;
            transition: .2s ease;
        }
        .cookie-fab.show{ display:flex; }
        .cookie-fab:hover{ transform: translateY(-2px); border-color: rgba(242,201,76,.9); }

        /* ================================================================= */
        /* ======================= ÇEREZ POLİTİKASI MODAL =================== */
        /* ================================================================= */
        .cookie-policy-overlay{
          position: fixed;
          inset: 0;
          background: rgba(255,255,255,.78);
          backdrop-filter: blur(10px);
          z-index: 13100;
          display: none;
          align-items: center;
          justify-content: center;
          padding: 18px;
        }
        .cookie-policy-overlay.open{ display:flex; }

        .cookie-policy-modal{
          width: min(1040px, 100%);
          max-height: 88vh;
          background:#fff;
          border: 1px solid #eee;
          border-radius: 18px;
          box-shadow: 0 28px 80px rgba(0,0,0,.16);
          overflow: hidden;
          display:flex;
          flex-direction: column;
        }
        .cookie-policy-head{
          padding: 16px 18px;
          border-bottom: 1px solid #f2f2f2;
          display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
          background:#fafafa;
        }
        .cookie-policy-head h3{
          margin:0;
          font-family:"Space Grotesk";
          font-size: 1.1rem;
          font-weight: 900;
          color:#111;
        }
        .cookie-policy-head .sub{
          margin-top:4px;
          color:#666;
          font-size:.85rem;
        }
        .cookie-policy-close{
          border: 1px solid #eee;
          background:#fff;
          width: 42px; height: 42px;
          border-radius: 14px;
          cursor: pointer;
          flex-shrink:0;
        }
        .cookie-policy-body{
          padding: 16px 18px 22px;
          overflow:auto;
          color:#333;
          line-height:1.85;
          font-size: .95rem;
        }
        .cookie-policy-body h4{
          font-family:"Space Grotesk";
          margin: 18px 0 6px;
          font-size: 1rem;
          color:#111;
        }
        .cookie-policy-body p{ margin: 0 0 10px; color:#444; }
        .cookie-policy-body ul{ padding-left: 18px; margin: 6px 0 12px; }
        .cookie-policy-body li{ margin-bottom: 6px; color:#444; }
        .cookie-inline-link{
          font-weight: 900;
          color:#111;
          border-bottom: 1px dashed rgba(0,0,0,.2);
        }
        .cookie-inline-link:hover{
          color: var(--ti-yellow);
          border-bottom-color: rgba(242,201,76,.9);
        }

        /* Cart badge */
        .cart-btn-wrap { position: relative; display: inline-block; }
        .cart-badge {
            position: absolute; top: -8px; right: -8px;
            background: #ff4d4d; color: #fff; font-size: 0.7rem; font-weight: 800;
            width: 18px; height: 18px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }