.top-bar {
    background-color: #444;
    color: white;
    text-align: center;
    font-size: 0.9rem;
    padding: 6px 0;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: 'Roboto', sans-serif;
}

.hero-banner {
   width: 100%;
    height: calc(100vh - 34px);
    background-image: url('images/zoho.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0;

}
.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.overlay {
    background-color: rgba(0, 0, 0, 0);
    color: white;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: background-color 0.3s ease;
    z-index: 2;
}

.overlay h1,
.menu a {
    pointer-events: auto;
}

.overlay h1 {
    font-size: 4rem;
    margin-bottom: 0.3rem;
    color: #ffffff;
    transform: translateY(-20px);
    transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    line-height: 1;
}

.sub-title{
    display: block;
    font-size: 1rem;
    letter-spacing: 4px;
    margin-top: 10px;
}
.menu a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 20px;
    font-size: 1.5rem;
    font-weight: 500;
    position: relative;
    transform: translateY(-10px);
    transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    z-index: 3;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background-color: black;
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

/* Hover efektleri */
/* Hover efekti sadece overlay alanında aktif olsun */
.overlay:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.overlay:hover h1 {
    color: #ffffff;
    transform: translateY(-15px);
    opacity: 1;
}

.overlay:hover .menu a {
    color: #ffffff;
    transform: translateY(-10px);
    opacity: 1;
}

.title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: -10px;
    position: static;
}

.social-icons {
    position: absolute;
    right: 120px;
    top: 70px;
    transform: translateY(-50%);
    display: flex;
    gap: 14px;
}

.social-icons .icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.social-icons .icon:hover {
    transform: scale(1.15);
    filter: brightness(0) invert(0.8);
    opacity: 1;
}
body {
    overflow-x: hidden;
}

.left-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.left-icon img:hover {
    transform: scale(1.15);
    filter: brightness(0) invert(0.8);
}

.left-icon {
    position: absolute;
    left: 120px;
    top: 70px;
    transform: translateY(-50%);
}

.left-icon::after {
    content: "Ara";
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.left-icon:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Arama paneli */
.search-panel {
    position: fixed;
    top: 0;
    left: -100%;
    width: 350px;
    height: 100vh;
    background: #fff;
    color: #333;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    transition: left 0.4s ease;
    z-index: 9999;
    display: flex;
    overflow-y: hidden !important;
    flex-direction: column;
    padding: 20px 30px;
}

.search-panel.active {
    left: 0;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-header h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

.close-icon {
    width: 22px;
    height: 22px;
    cursor: pointer;
    filter: brightness(0) invert(0.4);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.close-icon:hover {
    transform: scale(1.2);
    filter: brightness(0) invert(0.2);
}

.search-content {
    margin-top: 20px;
        height: calc(100vh - 120px);   /* üst başlık + input’u çıkarıyoruz */
    overflow-y: auto;  
    overflow-x: hidden !important;            /* içerik aşağı kayabilir */
    padding-right: 10px;
}

.search-content input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
}

.search-content input:focus {
    border-color: #999;
}
#searchResults {
    margin-top: 20px;
     height: calc(100vh - 180px);
    overflow-y: auto;   /* AŞAĞIYA KAYDIRMA EKLENİR */
    padding-right: 5px; /* Scroll bar içeriği kapatmasın */
overflow-x:  hidden !important;
}

.arama-kutu {
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    padding: 10px;
    margin-bottom: 15px;
    align-items: center;
}

.arama-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.arama-bilgi {
    flex: 1;
}

.arama-adi {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
}

.arama-fiyat {
    margin-top: 5px;
    font-weight: 500;
    color: #333;
}

.arama-buton {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 12px;
    background: #222;
    color: white;
    border-radius: 6px;
    font-size: 0.9rem;
    text-decoration: none;
}

.info-section{
    display: flex;
   
    justify-content: center;
    align-items: center;
    gap: 120px;
    padding: 75px 0px;
    overflow-x: visible;
white-space: normal;
scroll-snap-type: none;
}
.info-section::-webkit-scrollbar{display: none;
}

.info-item{
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    scroll-snap-align: center;
    flex: 0 0 auto;
    flex-shrink: 0;

}
.info-item img{
    width: 65px;
    height: 65px;

}
.info-item p{
    font-size: 1.1rem;
    margin: 0;
    text-align: center;
    font-weight: 500;
    color: #555;
}
.categories-title{
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #333;
    letter-spacing: 1px;
    margin-left: 100px;
    margin-top: 40px;
    margin-bottom: 15px;
}
.category-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    scrollbar-width: none; /* Firefox */
}

.category-scroll::-webkit-scrollbar {
    display: none; /* Chrome */
}

.cat-item {
    flex: 0 0 35%; /* büyük ekranda 3 tane görünsün */
    text-align: center;
}

.cat-item img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}
.cat-item p {
    position: relative;
    display:inline-block;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;  /* önce 1rem civarıydı → biraz büyüttük */
    font-weight: 500;
    margin-top: 8px;
    letter-spacing: 0.4px;
    color: #111;
}
.cat-item p::after{
      content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background-color: #000;
    transition: width 0.3s ease;
} 
.cat-item p:hover::after {
    width: 100%;
}
/* INFO ICON SCROLLBAR — masaüstünde tamamen gizle */

/* Altındaki scrollbar tasarımı info-section ile aynı */
.category-controls {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
}

.category-left-btn,
.category-right-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #eee;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.category-left-btn::before {
    content: "<";
    color: #444;
    font-weight: 600;
}

.category-right-btn::before {
    content: ">";
    color: #444;
    font-weight: 600;
}

.category-scrollbar {
    width: 70px;
    height: 8px;
    background: #e5e5e5;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

/* Hareketli siyah parça (thumb) info ile aynı) */
.category-scrollbar-thumb {
    width: 32px;
    height: 6px;
    background: #555;
    border-radius: 6px;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.15s linear;
}

.motion-title{
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: #333;
    margin-top: 120px;
    margin-bottom: 15px;
    letter-spacing: 0.8px;
}
.motion-wrapper{
    width: 100%;
    max-width: 1600px;
    margin:40px auto;
    display: flex;
    justify-content: flex-start;
    padding: 0 40px;
}
.motion-image{
    width: 41%;
    height: 620px;
    background-color: #f3f3f3;
     overflow: hidden;
     border-radius: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 60px
    ;
}
/* Foto yokken görünecek kutu */
.placeholder-box {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        #e9e9e9,
        #e9e9e9 10px,
        #f5f5f5 10px,
        #f5f5f5 20px
    );
    color: #777;
    font-size: 1.4rem;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}
.motion-box{
    width: 41%;
    height: 620px;
    background-color: #fff;
    border-radius: 30px;
    margin-left: 50px;
    margin-right: 60px;
    display: flex;
    justify-content: flex-start; /* ortadan alıp yukarı taşımayı bırakıyoruz */
    align-items: flex-start;     /* sola yasla */
        /* yazıyı aşağı kaydır */
    padding-left: 40px;    
}
.motion-box-inner{

  display: flex;
  flex-direction: column;
  gap: 36px;
  margin: 0;
  padding: 0;
  margin-top: 200px;
  margin-left: 25px;
}
.motion-item{
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    position: relative;
    flex-wrap: wrap;
}
.motion-number{
    font-size: 1.45rem;
    font-weight: 500;
    color: #9d9d9d;
    min-width: 50px;
    display: inline-block;
}
.motion-title-text{
    font-size: 2.5rem;
    font-weight: 600;
    color: #9d9d9d;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.3s ease;

}
.motion-title-text:hover{
    color: #000;
    transition: 0.25s ease;
}
.motion-item:hover .motion-number{
    color: #000;
}

.motion-description {
    flex-basis: 100%;
    margin-top: 10px;
    margin-left: 75px;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    
    padding-bottom: 6px;
    position: relative;
    width: fit-content;
    display: none; /* başlangıçta görünmesin */
    letter-spacing: 0.3px;
      flex-basis: auto !important;       /* flex bütün satırı dolduramasın */
    width: auto !important;
    
}

.motion-description::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;               /* padding-bottom sayesinde biraz içeride duracak */
    width: 100%;             /* açıklama genişliği kadar */
    height: 2px;
    background-color: #000;
}
.motion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* foto kutuya tam oturur */
    border-radius: 30px; /* kutu ile aynı köşe yumuşaklığı */
    display: block;
}
.motion-progress {
    position: absolute;
    left: 75px;   /* <-- işte hizalamayı çözen satır */
    bottom: -6px;
    width: 0%;
    height: 2px;
    background-color: #000;
    border-radius: 2px;
    transition: width 7s linear;}
    
    .diy-title {
    text-align: center;
    
    font-size: 1.6rem;
    font-weight: 400;
    color: #222;
    margin-top: 200px;   /* motion bölümünden boşluk */
    margin-bottom: 10px;
    letter-spacing: 0.8px;
}
.diy-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;        /* Daha koyu gri */
    font-weight: 500;   /* Hafif kalın */
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
} 
.three-photos {
    display: flex;
    justify-content: center;
    gap: 36px;            /* araları biraz daha açık */
    margin: 50px auto;
    max-width: 1280px;    /* toplam genişliği hafif daralttım, sayfa ortasında güzel durur */
    padding: 0 20px;
}

/* Her foto için kutu (rounded) */
.photo-box {
    width: 100%;
    max-width: 460px;     /* kutuyu biraz daha büyüttük */
    height: 520px;        /* daha yüksek, tüm kutular eşit */
    background-color: transparent;
    border-radius: 28px;  /* oval köşeler */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;   /* overlay için gerekli */
    transition: transform .35s ease, box-shadow .35s ease;
}

/* Resim kendine gölge / karartma uygulansın */
.photo-box::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.30)); /* tüm yüzeye hafif koyuluk */
    pointer-events: none;
    transition: background 0.25s ease;
    z-index: 2;
}

/* Resim elementine güçlü gölge (daha koyu) ve köşe radianı */
.photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 28px;
    position: relative;
    z-index: 1; /* overlay üstünde gözüksün */
    box-shadow: 0 18px 48px rgba(0,0,0,0.42); /* koyu gölge */
    transition: transform .35s ease, box-shadow .35s ease;
}

/* Hover: hafif yükselme ve gölge koyulaşsın */
.photo-box:hover {
    transform: translateY(-8px);
}
.photo-box:hover::before {
    background: linear-gradient(rgba(0,0,0,0.36), rgba(0,0,0,0.36));
}
.photo-box:hover img {
    box-shadow: 0 26px 64px rgba(0,0,0,0.5);
    transform: translateY(-2px) scale(1.01);
}
.photo-text {
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 100%;
    padding: 22px;
    text-align: left;
    color: white;
  
    
z-index: 5;
font-family: 'Poppins',sans-serif;
}

.photo-text h3 {
    margin: 0 ;
    font-size: 16px;
    font-weight: 350;
   
    font-family: 'Poppins',sans-serif;

}

.photo-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
line-height: 1.;
    max-width: 95%;
}





/* Tüm Ürünler sayfasında arka planı beyaz yap */
.ürünler-banner {
    background: white !important;
    height: 150px; /* fotoğraf yüksekliği gitmiş olacak */
}

.ürünler-banner .overlay {
    background: none !important;
}

/* Tüm ürünler kutusu */
.urunler-container {
    width: 90%;
    margin: 40px auto;
}

.urunler-title {
         margin-left: 50px;   /* breadcrumb ile aynı hizaya alır */
    margin-top: 35px;
    font-size: 20px;
    font-weight: 100;
    font-family: 'Poppins',sans-serif;
}

.filters-box {
    margin-top: 30px;
    margin-left: 50px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.filter-group label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
    display: block;
}

.filter-group select {
    width: 230px;
    padding: 10px 12px;
    margin-top: 8px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.price-inputs {
    display: flex;
    gap: 12px;
}

.price-inputs input {
    width: 110px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}



 
.urun-sayisi{
     margin-left: 350px;   /* filtrelerle aynı hiza */
    margin-top: -180px;
    font-size: 17px;
    font-weight: 400;
    color: #222;
    font-family: 'Poppins', sans-serif;
}

/* ÜRÜNLER LİSTESİ GRID */
.urun-listesi {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 4 tane küçük kart */
    gap: 26px;
    padding: 30px 50px;
}

/* ÜRÜN KUTULARININ GRID YAPISI */
/* ÜRÜN GRIDİ */
/* ÜRÜN GRIDİ */
/* ÜRÜN GRIDİ */
.urun-kutu-grid {
    width: 70%;
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr)); /* kare kartları büyüttük */
    gap: 80px;
    margin-top: 30px;
    margin-left: 320px;
}

/* ÜRÜN KARTI (ESKİ DUMMY KUTU BOYU) */
.urun-card {
    width: 100%;
  
    background: transparent;
    overflow: hidden;
    border-radius: 0;
}

/* FOTOĞRAF */
.urun-image img {
    width: 100%;
    overflow: hidden;
   aspect-ratio: 1 /1;
 
    /* Foto tam doldurur */
}


/* ALT BİLGİ */
.urun-info {
    margin-top: 15px;
    text-align: center;
}

.urun-adi {

    font-size: 1.10rem;
    font-weight: 545;
    color: #111;
    line-height: 1.3;
    margin: 8px 0 4px;
}

.urun-fiyat {
    margin-top: 6px;
    font-size:1.250rem;
    font-weight: 500;
}

.urun-buton {
    width: 220px;
    margin-top: 10px;
    display: inline-block;
    background:white;
    color: black;
    padding: 14px 0px;
    border-radius: 20px;
    border: 1.5px solid #888;
    text-decoration: none;
     font-size: 17px; /* ← yazı boyutunu buradan ayarlayabilirsin */
    font-weight: 500; /* istersen yazıyı biraz kalınlaştırır */
}

.breadcrumb a {
    color: #555;
    text-decoration: none;
}.slider {
    position: relative;
    width: 100%;
}

.slide-left, .slide-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    font-size: 22px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.slide-left {
    left: 8px;
}

.slide-right {
    right: 8px;
}
/* Başta oklar gizli */
.slide-left,
.slide-right {
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

/* Slider üzerine gelince oklar görünsün */
.slider:hover .slide-left,
.slider:hover .slide-right {
    opacity: 1;
    pointer-events: auto;
}
/* SLIDER IMAGES */
.slide-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.dots-container {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.active-dot {
    background: #333;
}

.ürünler-banner h1,
.ürünler-banner .menu a {
    color: #000 !important; /* yazılar siyah */
}

/* Menü hover alt çizgi siyah */
.ürünler-banner .menu a::after {
    background-color: #000 !important;
}

/* arama ikonu ve instagram – sepet ikonları siyah */
.ürünler-banner .icon,
.ürünler-banner .left-icon img {
    filter: brightness(0) invert(0) !important;  /* siyah ikon */
}

/* Hover olunca da siyah kalsın */
.ürünler-banner .icon:hover,
.ürünler-banner .left-icon img:hover {
    filter: brightness(0) invert(0.2) !important;
}

/* overlay siyahlaşma efektini kapat */
.ürünler-banner .overlay:hover {
    background-color: transparent !important;
}

.breadcrumb {

    font-size: 18px;
    color: #777;
    margin-bottom: 15px;
    left: 50px;
    margin-top: 10px;
    position: relative;
}


.breadcrumb a:hover {
    text-decoration: underline;
}

/* --- KOLEKSİYON GRID ALANI --- */
.koleksiyonlar-grid {
    width: 100%;
    max-width: 1500px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px; 
   
}

/* --- HER KUTU --- */
.koleksiyon-kutu {
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease;
    text-decoration: none !important;
    color: #000 !important;
}

.koleksiyon-kutu:hover {
    transform: scale(1.02);
}

/* --- FOTOĞRAFLAR --- */
.koleksiyon-kutu img {
    width: 100%;
   height: 450px; /* görüntüdeki büyüklük */
    object-fit: cover;
       aspect-ratio: 1 / 1.2;
       object-position: center;
    display: block;
}

/* --- ALT YAZI --- */
.koleksiyon-kutu p {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 500;
 color: #000 !important;
}
.koleksiyon-kutu p:hover {
     text-decoration: underline !important;
    text-decoration-color: #000 !important;
    cursor: pointer;
}
footer {
    width: 100%;
}


.footer-container {
    display: flex;
    justify-content: space-between; /* kolonları eşit aralıkla yan yana */
    align-items: flex-start;
    flex-wrap: nowrap !important; /* alt satıra düşmesini engeller */
    gap: 40px; /* kolonlar arası boşluk */
    padding: 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: -50px;
}
/* HER KOLON */
.footer-col {
     flex: 1;         /* kolonlar eşit genişlikte */
    min-width: 200px; /* çok daralmasın */
    margin: 0 !important; /* margin-left / margin-right kaldırıldı */
    display: flex;
    flex-direction: column;
    gap: 10px;
margin: 0 !important;
}

/* Başlık */
.footer-col h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #ddd;
    font-family: 'Poppins', sans-serif;
}

/* İçerik */
.footer-col p {
    margin: 0;
    font-size: 17px;
    color: #ddd;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.footer-col p:hover {
    color: white;
}



 .footer-bg{
    width:100%;
    min-height:350px;
    height:auto;
    background-color:#2f3b42;
    margin-top:200px;
    padding:60px 0;
}



.footer-bottom {
    width: 100%;
    background-color: #2e3b44; /* üst bölümle uyumlu koyu gri */
    padding: 18px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);

}

.footer-bottom p {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
.footer-link {
    color: #ffffff;            /* Footer yazı rengiyle aynı */
    text-decoration: underline; /* Altı çizili */
    cursor: pointer;
}

.footer-link:hover {
    opacity: 0.7;               /* Hover efekti */
}

.footer-col-iki {
     flex: 1;         /* kolonlar eşit genişlikte */
    min-width: 200px; /* çok daralmasın */
    margin: 0 !important; /* margin-left / margin-right kaldırıldı */
    display: flex;
    flex-direction: column;
    gap: 10px;
   

}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: -6px;
}

.footer-social .icons {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
    cursor: pointer;
    transition: .3s ease;
}

.footer-social .icons:hover {
    transform: scale(1.12);
    opacity: 0.8;
}
.footer-col-iki h3{
     font-size: 20px;
    font-weight: 500;
    color: #ddd;
}
/* 3. KOLON – İLETİŞİM */
.footer-col-uc {
     flex: 1;         /* kolonlar eşit genişlikte */
    min-width: 200px; /* çok daralmasın */
    margin: 0 !important; /* margin-left / margin-right kaldırıldı */
    display: flex;
    flex-direction: column;
    gap: 10px;

   
}

/* Başlık düzeni */
.footer-col-uc h3 {
    font-size: 20px;
    font-weight: 500;
    color: #ddd;
    margin-bottom: 10px;
}

/* İçerik yazıları */
.footer-col-uc p {
    font-size: 16px;
    color: #ddd;
    margin: 2px 0;
}

/* Ara başlıklar (Adres, Email, Telefon) */
.footer-col-uc .footer-title {
    font-size: 20px;
    color: #ccc;
    margin-top: 12px;
    font-weight: 500;
}
.footer-text-link {
    color: #ddd;
    text-decoration: underline;   /* HER ZAMAN altı çizili */
    font-size: 17px;
}

.footer-text-link:hover {
    color: #ddd;         /* hover’da renk değişmesin */
    text-decoration: underline; /* çizgi aynı kalsın */
}

 .item {
    position: relative;
    padding-left: 18px;   /* Yazının solunda boşluk */
    color: #ddd;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.item::before {
    content: "•";         /* nokta işareti */
    position: absolute;
    left: 0;
    top: 0;
    color: #ddd;
    font-size: 20px;      /* nokta boyutu */
    line-height: 18px;    /* dikey hizalama */
}
html {
    scroll-behavior: smooth;
}

.hakkimizda-text {
    margin-left: 50px;   /* Başlıkla aynı hizaya gelsin */
   font-size: 17px;
    line-height: 1.7;
}


/*------------------- RESPONSIVE -------------------- */

@media (min-width: 1201px) {
    .icon-controls {
        display: none !important;
    }
}


@media (max-width:1024px) {

  .urunler-container {
        display: flex;
        flex-direction: column; /* filtre üstte, ürünler altta */
    }

    .filters-box {
        width: 100%;
        margin-bottom: 20px;
        position: sticky;
        top: 0;
        background: white;
        z-index: 999;
        padding: 15px 20px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
.urun-sayisi {
        margin-left: 60px;  /* sol boşluk biraz bırak */
        margin-top: 10px;   /* filtre altına biraz boşluk */
        font-size: 16px;    /* biraz küçült */
        position: relative; /* sticky ile çakışmayı önle */
        z-index: 998;
    }
    .urun-kutu-grid {
        width: 100%;
        grid-template-columns: repeat(2, 1fr); /* 2 sütun */
        gap: 20px;
        margin-left: 0;
        margin-top: 0px;
    }
     .footer-container {
        max-width: 100%;
        padding: 0 20px;
        gap: 30px;
    }

    .footer-col,
    .footer-col-iki,
    .footer-col-uc {
        flex: 1;
        min-width: 220px;
    }
    .item {
        padding-left: 0;
    }

    .item::before {
        display: none;
    }



    .motion-wrapper {
    display: flex;
    flex-wrap: nowrap;          /* yan yana kalsın, satır yere aktarılmasın */
    overflow-x: auto;          /* gerekiyorsa yatay kaydırma gelsin */
    -webkit-overflow-scrolling: touch;
    gap: 24px;
    padding: 0px;
    padding-left: 0;
    padding-right: 40px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 40px;
  }

  /* Fotoğraf kutusu sabit minimum genişlikte, küçülürken ölçeklenmesin */
  .motion-image {
    flex: 0 0 auto;
    min-width: 420px;          /* isteğe göre 360/480 yapabilirsin */
    width: 420px;
   height: auto !important;
        min-height: 460px;
    border-radius: 16px;
    margin-left: 0 !important;
  }
  .motion-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    border-radius: 16px;
  }

  /* Sağdaki açıklama kutusu da sabit genişlikli olsun */
  .motion-box {
    flex: 0 0 auto;
    min-width: 420px;
    width: 420px;
   height: auto !important;
        min-height: 460px !important;
    margin-left: 0;
    margin-right: 0;
    padding: 30px;
    background-color: #fff; /* senin istediğin renk */
    border-radius: 16px;
    position: relative;      /* progress absolute içinde doğru konumlanır */
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .motion-box-inner {
    margin-top: 40px;        /* kutunun üstüne çok boşluk koyma */
    margin-left: 0;
    width: 100%;
    gap: 20px;
  }

  .motion-item {
    gap: 12px;
    align-items: flex-start;
  }

  .motion-number {
    min-width: 40px;
    font-size: 1.1rem;
  }

  .motion-title-text {
    font-size: 1.35rem;
    line-height: 1.2;
  }

  .motion-description {
    margin-left: 0;          /* açıklamayı kutu içinde sola al */
    display: block;          /* istersen hover ile gizle/göster düzeni ekleyebilirsin */
  }

  /* progress bar kutunun içinde konumlu olacak ve açıklamaya göre hizalanacak */
.motion-progress {
    position: absolute;
    left: 20px;
    bottom: 18px;
    width: calc(100%-40px);
    height: 4px;
    background: transparent !important;  /* griyi kaldırdık */
    border-radius: 2px;
    transition: width 7s linear;
}
.motion-progress {
    position: absolute;
    left: 75px;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: transparent !important;  /* griyi kaldırdık */
    border-radius: 2px;
    transition: width 7s linear;
}
  /* küçük ekranlar için horizontal scroll çubuğunu gizleyebilirsin */
  .motion-wrapper::-webkit-scrollbar { height: 8px; }
/* ----------- SAG KUTU (YAZILAR + SÜRE ÇİZGİSİ) DÜZELTME ----------- */



     .categories-title {
        margin-left: 20px;
        margin-top: 40px;
        font-size: 1.3rem;
    }

    /* --- KATEGORİLER SCROLL --- */
    .category-scroll {
        gap: 20px;
        padding: 20px 15px;
    }

    .cat-item {
        flex: 0 0 55%;     /* 1 foto büyük görünsün */
    }

    .cat-item img {
        border-radius: 16px;
    }

    /* --- MOTION BAŞLIĞI --- */

    

    .info-section {
        /* ikonlar yatay kaydırılabilir olsun */
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        gap: 60px; /* daralan alana göre boşluk azaltılabilir */
        padding: 40px 20px;
        scroll-snap-type: x mandatory;
        justify-content: flex-start !important;
        padding-left: 0px;
        margin-top: 37px;
        position: relative;
        
  
   
    }

.info-section::-webkit-scrollbar {
    height: 8px;
}

    .info-item {
        min-width: 140px;  /* sabit boyutta kalmasını sağlar */
        flex-basis: 140px;

    }
    .info-item img {
        width: 65px;  /* aynı boyutta kalsın */
        height: 65px;
    }
    .info-item p {
        font-size: 1.1rem;
    }
  
      .icon-controls {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px; /* oklar arası boşluk */
    margin-top: 18px;
    position: relative;
}

/* Sol ve sağ ok */
.icon-left-btn,
.icon-right-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #efefef;
    border: 1px solid #dcdcdc;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #444;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s ease;
}

.icon-left-btn:hover,
.icon-right-btn:hover {
    background: #e0e0e0;
}

.icon-left-btn::before {
    content: "<";
    font-weight: 600;
}

.icon-right-btn::before {
    content: ">";
    font-weight: 600;
}

/* ÇİZGİ (OKLAR ARASINDA) */
.icon-scrollbar {
    width: 70px;         /* çizgi uzunluğu */
    height: 8px;
    background: #e5e5e5;
    border-radius: 5px;
    overflow: hidden;

    /* OKLAR ARASINDA DÜZ HİZALAMA */
    position: relative;
}

/* Küçük hareket eden top */
.icon-scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px; 
    height: 6px;
    background: #555;
    border-radius: 6px;
    transition: transform 0.15s linear;
}
    

}



@media (max-width: 768px) {
      html, body {
    overflow-x: hidden;
  }
    .urunler-banner{
    height: 220px !important;
}

.breadcrumb{
    margin-top: 35px !important;
    left: 0 !important;
    padding-left: 15px;
}
      .urun-kutu-grid {
        width: 100%;           /* tüm ekranı kullan */
        grid-template-columns: 1fr;  /* tek kolon */
        gap: 20px;
        margin-left: 0;        /* filtre üstte olursa sol boşluk kaldır */
     margin-top: 20px;
    }

    .filters-box {
         position: sticky;
        top: 0;               /* sayfa kaydırıldığında hep üstte */
        background: white;    /* üstüne kayarken arka plan beyaz */
        padding: 15px 20px;   /* biraz boşluk */
        z-index: 999;         /* diğer içeriklerin üstünde olsun */
        box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* hafif gölge */
        width: 100%;           /* filtre üstte tam genişlik */
        margin-left: 0;
        margin-bottom: 20px;
    }

    .urun-sayisi {
        margin-left: 0;        /* ürün sayısı üstte görünür */
        margin-top: 20px;
    }
    .overlay h1 {
        font-size: 2.5rem;
    }
    .menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .menu a {
        font-size: 1rem;
        margin: 6px 10px;
    }
    .title-row{
    position: relative;
    width: 100%;
}

.left-icon{
    position: absolute;
    left: 5px !important;
    top: 20px !important;
    transform: none !important;
}

.social-icons{
    position: absolute;
    right: 5px !important;
    top: 20px !important;
    transform: none !important;
}
     .info-section {
        gap: 40px;
        padding: 35px 20px;
    }
    .three-photos{
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.photo-box{
    width: 100%;
    max-width: 500px;
    height: 420px;
}
    
.footer-container{
    flex-direction:column;
    align-items:flex-start;
    gap:35px;
}

.footer-col,
.footer-col-iki,
.footer-col-uc{
    width:100%;
}
  .koleksiyonlar-grid{
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
}

.koleksiyon-kutu img{
    height: auto;
    aspect-ratio: 1 / 1.2;
}

.koleksiyon-kutu p{
    font-size: 18px;
}
.search-panel{
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.search-header{
    position: relative;
    width: 100%;
}

.close-icon{
    position: absolute;
    right: 15px !important;
    top: 5px !important;
    width: 28px;
    height: 28px;
    z-index: 99999;
}
.motion-wrapper{
    display: flex;
    flex-direction: column;
    overflow: visible;
    gap: 20px;
}

.motion-image{
    width: 100%;
    min-width: unset;
    height: 350px !important;
}

.motion-box{
    width: 100%;
    min-width: unset;
    min-height: auto !important;
    padding: 0 20px;
    margin: 0;
}

.motion-box-inner{
    margin-top: 0;
    gap: 25px;
}

.motion-item{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.motion-description{
    display: block !important;
    margin-left: 0;
    margin-top: 8px;
}

.motion-progress{
    display: none;
}
}

@media (max-width: 480px) {
       .overlay h1{
        font-size: 1.8rem;
        text-align: center;
    }

    .menu a {
        font-size: 0.9rem;
        margin: 4px 8px;
    }
.title-row{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-icon{
    position: absolute !important;
    left: 10px !important;
    top: 15px !important;
    transform: none !important;
    margin: 0 !important;
}

.social-icons{
    position: absolute !important;
    right: 10px !important;
    top: 15px !important;
    transform: none !important;
    margin: 0 !important;
    display: flex;
    gap: 10px;
}

.overlay h1{
    margin-top: 40px;
}
        .search-panel {
        width: 100vw;
        height: 100vh;
        left: 0;
        top: 100%;
        transition: top 0.4s ease;
        border-radius: 0;
        padding: 20px;
    }

    .search-panel.active {
        top: 0;
    }

    .search-header {
        justify-content: space-between;
    }

    .search-header h2 {
        font-size: 1.2rem;
    }

    .search-content input {
        width: 100%;
        font-size: 1rem;
        padding: 10px;
    }

    .close-icon {
    
        filter: brightness(0) invert(0.5);
    }


}