/* =========================================================
   1️⃣ RESET & GENEL AYARLAR
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #f8f6f2;
}

html, body {
  overflow-x: hidden !important;
  width: 100%;
  position: relative;
}
/*****HAKKIMIZDA***********************/
/* Hakkımızda Sayfası */

.page-container{
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-container h1{
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #2b2b2b;
}

.page-container p{
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

/* Mobil uyum */
@media (max-width: 768px){
  .page-container{
    margin: 40px auto;
  }

  .page-container h1{
    font-size: 26px;
  }

  .page-container p{
    font-size: 15px;
  }
}
/* ================================
   İade & Değişim Sayfası
   Senin Halın Senin Evin
================================ */

.page-container{
  max-width: 920px;
  margin: 70px auto;
  padding: 0 22px;
}

/* Başlık */
.page-container h1{
  font-size: 34px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 30px;
  position: relative;
}

.page-container h1::after{
  content:"";
  width: 60px;
  height: 4px;
  background: #b79d83; /* markaya yakışan premium ton */
  display: block;
  margin-top: 10px;
  border-radius: 2px;
}

/* Alt başlıklar */
.page-container h3{
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-top: 35px;
  margin-bottom: 12px;
}

/* Paragraflar */
.page-container p{
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 16px;
}

/* Liste */
.page-container ul{
  margin: 15px 0 20px 0;
  padding-left: 18px;
}

.page-container ul li{
  font-size: 15.5px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
  position: relative;
}

/* Bilgi kutusu efekti */
.page-container ul{
  background: #faf8f6;
  border-left: 4px solid #b79d83;
  padding: 18px 22px;
  border-radius: 10px;
}

/* Vurgu */
.page-container strong{
  color: #222;
}

/* Mobil */
@media (max-width: 768px){
  .page-container{
    margin: 45px auto;
  }

  .page-container h1{
    font-size: 28px;
  }

  .page-container h3{
    font-size: 18px;
  }

  .page-container p,
  .page-container ul li{
    font-size: 15px;
  }
}


/* =========================================================
   2️⃣ ANA SAYFA – KATEGORİLER
========================================================= */
.categories {
  text-align: center;
  padding: 70px 20px;
  background-color: #f8f6f2;
}

.categories h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #3e3e3e;
}

.category-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.category-card {
  position: relative;
  width: 250px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
  transition: .3s;
  cursor: pointer;
  overflow: hidden;
}

.category-card:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 12px rgba(0,0,0,.15);
}



.category-card h3 {
  padding: 15px;
  font-size: 1.1rem;
  color: #3e3e3e;
}

.discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(45deg, #b79d83, #d8c2a3);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
}

/* =========================================================
   3️⃣ ÖZEL FIRSATLAR
========================================================= */
.offers {
  background-color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.offers h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #3e3e3e;
}

.offer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.offer-card {
  width: 280px;
  background-color: #f8f6f2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
  transition: .3s;
  position: relative;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0,0,0,.15);
}



.offer-card .discount-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(45deg, #b79d83, #d8c2a3);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .9rem;
}

.offer-info { padding: 20px; }

.old-price {
  text-decoration: line-through;
  color: #888;
}

.new-price {
  font-size: 1.2rem;
  color: #b79d83;
  font-weight: 600;
}

/* =========================================================
   4️⃣ GÜVEN ALANI
========================================================= */
.trust {
  background-color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.trust-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.trust-card {
  width: 250px;
  background-color: #f8f6f2;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: .3s;
}

.trust-card:hover {
  transform: translateY(-5px);
}

.trust-card i {
  font-size: 2rem;
  color: #b79d83;
}

/* =========================================================
   5️⃣ ÜRÜN KARTLARI – GENEL
========================================================= */
.category-card img,
.offer-card img,
.slide img {
  width: 100%;
  aspect-ratio: 1 / 1;   /* kare ürün */
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  image-rendering: auto;
}
.trust-iyzico img{
  margin-top:10px;
  height:28px;
  object-fit:contain;
  filter: grayscale(10%);
}
.trust-card:hover img{
  opacity:1;
  transform:scale(1.05);
  transition:.2s;
}

.trust-image-only{
  display:flex;
  align-items:center;
  justify-content:center;
}

.trust-image-only img{
  max-width:100%;
  height:75px;
  object-fit:contain;
}



.category-card a,
.offer-card a,
.slide a {
  text-decoration: none;
  color: inherit;
}
@media (max-width: 768px) {

  .trust {
    padding: 36px 14px;
    text-align: center;
  }

  .trust h2 {
    font-size: 20px;
    margin-bottom: 22px;
  }

  /* 🔥 ASIL DÜZELTEN KISIM */
  .trust-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;

    max-width: 420px;      /* 👈 SAYFA ORTASI */
    margin: 0 auto;        /* 👈 SOLA YAPIŞMA BİTER */
  }

  .trust-card {
    width: 100%;           /* 👈 KUTU TAM OTURUR */
    padding: 18px 14px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .trust-card i {
    font-size: 26px;
  }

  .trust-card h3 {
    font-size: 15px;
    margin: 0;
    font-weight: 600;
    text-align: center;
  }

  .trust-card p {
    font-size: 13px;
    margin: 0;
    color: #666;
    text-align: center;
  }

  /* 🛡️ IYZICO SADECE RESİM */
  .trust-image-only {
    padding: 22px 10px;
  }

  .trust-image-only img {
    height: 34px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }
}



/* =========================================================
   6️⃣ TÜM ÜRÜNLER MOBİL
========================================================= */
@media (max-width: 768px) {

  .urunler-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 6px;
  }

  .urun img {
    height: 190px;
    object-fit: cover;
  }

  .urun h3 {
    font-size: 13px;
  }

}

/* =========================================================
   7️⃣ FİLTRE MOBİL
========================================================= */
@media (max-width: 768px){

  .mobil-filtre-btn{
    width: 100%;
    background: #3c2a1e;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
  }

  .filtre-sidebar{ display: none; }
  .filtre-sidebar.active{ display: block; }

}

/* =========================================================
   8️⃣ FOOTER YASAL
========================================================= */
.footer-legal {
  border-top: 1px solid rgba(0,0,0,.08);
  margin-top: 40px;
  padding-top: 18px;
  text-align: center;
  font-size: .9rem;
  color: #6b6b6b;
}

.footer-legal-links {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-legal-links a {
  color: #b79d83;
  text-decoration: none;
  font-weight: 500;
}
/*---------------__________________________-------------__________________NAVBAR--------------ZZZZZZZZZZZZZZZZZZ-zzzzzzzzzzzzzz*/
/* =========================================
   ✅ NAVBAR ANA GÖVDE
========================================= */

.navbar {
  width: 100%;
  
  border-bottom: 2px solid #b79d83;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 9999;

  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.96);


}

/* =========================================
   ✅ SOL TARAF (LOGO)
========================================= */

/* =========================================
   ✅ FİNAL – PREMİUM SOL LOGO & MARKA ALANI
   ✅ FARKLI + HOVER’LI + PREMİUM SOL LOGO
========================================= */

.nav-left {
  display: flex;
  align-items: center;
}

.logo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.95),
    rgba(243,236,228,0.95)
  );
  border: 1px solid rgba(183,157,131,0.45);
  box-shadow:
    0 10px 25px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.6);
  text-decoration: none;
  overflow: hidden;
  transition: all .35s ease;
}

.logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(183,157,131,0.35),
    transparent
  );
  transform: skewX(-20deg);
  transition: left .6s ease;
}

.logo:hover::before { left: 120%; }

.logo:hover {
  transform: translateY(-1px) scale(1.015);
  box-shadow:
    0 14px 30px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.logo img {
  height: 42px;
  object-fit: contain;
  transition: transform .35s ease;
}

.logo:hover img {
  transform: rotate(-3deg) scale(1.05);
}

.logo span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #3c2a1e;
  transition: color .35s ease;
}

.logo:hover span {
  color: #b79d83;
}

/* =========================================
   ✅ AĞIR – KURUMSAL – LÜKS NAVBAR MENÜ
========================================= */

/* =========================================
   ✅ FİNAL PREMIUM NAV-RIGHT (SADECE SAĞ MENÜ)
   ✅ AĞIR – KURUMSAL – DENGELİ
========================================= */


/* ✅ HER BİR MENÜ BLOĞU */
.menu li {
  position: relative;
}

/* ✅ İKON ÜSTTE – YAZI ALTTA (TAM ORTALI) */
.menu li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;

  text-decoration: none;
  font-size: 17.8px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #3c2a1e;

  padding: 6px 4px;
  transition: color .25s ease;
}

/* ✅ TÜM İKONLAR – GENEL BOYUT */
.menu li a i {
  font-size: 26px;
  transition: transform .25s ease;
}

/* ✅ HOVER’DA MİNİK GÜÇLÜ HAREKET */
.menu li a:hover i {
  transform: translateY(-1px) scale(1.05);
}

/* ✅ ALT ÇİZGİ SADECE YAZI GENİŞLİĞİ KADAR */
.menu li a {
  position: relative;
}

.menu li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #b79d83, #e6d3b5);
  transform: translateX(-50%);
  transition: .3s ease;
}

.menu li:hover a::after {
  width: 70%;   /* ✅ Tam değil, butik değil – dengeli */
}

/* ✅ İÇERİK BAZLI RENKLER */
.menu li a .fa-house        { color: #3c2a1e; }
.menu li a .fa-rug          { color: #b79d83; }
.menu li a .fa-envelope    { color: #4a6fa5; }
.menu li a .fa-user,
.menu li a .fa-right-from-bracket { color: #3c2a1e; }


/* =========================================
   ✅ SOSYAL ALANI (SADECE INSTAGRAM + WHATSAPP)
========================================= */

.social-desktop a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;

  font-size: 15px;
  color: #3c2a1e;
  transition: .25s ease;
}

/* ✅ INSTAGRAM – GRADIENT HATASIZ */
.social-desktop .fa-instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285AEB 90%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ✅ WHATSAPP */
.social-desktop .fa-whatsapp {
  color: #25d366;
}



/* =========================================
   ✅ SEPET – KIRMIZIYI KÖKTEN SİL / PREMIUM ALTIN
========================================= */

.fa-cart-shopping {
  color: #b79d83 !important;   /* ✅ ALTIN */
  filter: none !important;
  transform: none !important;
}

/* Hover */
a:hover .fa-cart-shopping {
  color: #3c2a1e !important;   /* ✅ Koyu kahve */
  transform: translateY(-2px) scale(1.1) !important;
  filter: drop-shadow(0 4px 8px rgba(60,42,30,.35)) !important;
}


.cart-link {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;

  background: linear-gradient(135deg, #3c2a1e, #6b4a34); /* premium koyu kahve-altın */
  color: #fff;

  font-size: 11px;
  font-weight: 700;

  min-width: 18px;
  height: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);

  transition: transform .2s ease, box-shadow .2s ease;
}

/* Hover'da hafif premium tepki */
/* ✅ SAYAÇ HOVER'DA ALTIN PARLASIN */
.menu li a:hover .cart-count {
  background: linear-gradient(135deg, #b79d83, #e6d3b5);
  color: #3c2a1e;
  transform: scale(1.12);
  box-shadow: 0 4px 12px rgba(183,157,131,0.45);
}




/* =========================================
   ✅ ARAMA ÇUBUĞU
========================================= */
/* =========================================
   ✅ PREMIUM NAVBAR ARAMA ÇUBUĞU
========================================= */

.nav-search {
  position: relative;
  flex: 1;
  max-width: 480px;
  display: flex;
  align-items: center;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.98),
    rgba(245,238,232,0.98)
  );

  border: 1px solid rgba(183,157,131,0.45);
  border-radius: 16px;

  box-shadow:
    0 8px 22px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.6);

  padding: 6px;
  transition: box-shadow .3s ease, border-color .3s ease;
}

/* ✅ FOCUS OLUNCA PREMIUM VURGU */
.nav-search:focus-within {
  border-color: #b79d83;
  box-shadow:
    0 10px 26px rgba(0,0,0,0.18),
    0 0 0 2px rgba(183,157,131,0.25);
}

/* ✅ INPUT */
.nav-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;

  padding: 10px 12px;
  font-size: 14px;
  color: #3c2a1e;
}

.nav-search input::placeholder {
  color: #9c8f83;
}

/* ✅ ARAMA BUTONU */
.nav-search button {
  width: 44px;
  height: 34px;

  border: none;
  border-radius: 12px;

  background: linear-gradient(135deg, #b79d83, #e6d3b5);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: .25s ease;
}

/* ✅ BUTON HOVER */
.nav-search button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* ✅ MOBİL UYUMLU */
@media (max-width: 768px) {
  .nav-search {
    max-width: 100%;
    margin: 10px 0;
    border-radius: 14px;
  }
}

.oneri-listesi {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;

  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);

  max-height: 420px;
  overflow-y: auto;
  overflow-x: hidden;

  display: none;
  z-index: 999999;
}

/* ✅ KATEGORİLER / ÜRÜNLER BAŞLIĞI */
.oneri-baslik {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #b79d83;
  background: #f7f3ef;
}

/* ✅ GENEL LİSTE ELEMANI */
.oneri-listesi li {
  list-style: none;
}

/* ✅ ÜRÜN + KATEGORİ SATIRI */
.oneri-listesi li:not(.oneri-baslik):not(.oneri-bos):not(.oneri-gecmis) {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 10px 16px;
  cursor: pointer;
  transition: background .2s ease;
}

.oneri-listesi li:not(.oneri-baslik):hover {
  background: #f4eee8;
}

/* ✅ RESİMLER */
.oneri-listesi img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

/* ✅ METİN ALANI */
.oneri-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
}

.oneri-text strong {
  color: #3c2a1e;
  font-weight: 600;
}

.oneri-text span {
  color: #2f7d32;
  font-weight: 600;
  font-size: 12.5px;
}

/* ✅ KATEGORİ SATIRI (ÖZEL) */
.oneri-kategori {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background .2s ease;
}

.oneri-kategori:hover {
  background: #f4eee8;
}

.kategori-kapak {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 8px;
}

/* ✅ ARAMA GEÇMİŞİ */
.oneri-gecmis {
  padding: 10px 16px;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  transition: background .2s ease;
}

.oneri-gecmis:hover {
  background: #f4eee8;
}

/* ✅ BOŞ SONUÇ */
.oneri-bos {
  padding: 18px;
  text-align: center;
  color: #999;
}

.bos-ikon {
  font-size: 22px;
  margin-bottom: 6px;
}

.bos-yazi {
  font-size: 13px;
}

/* ✅ MOBİL DÜZEN */
@media (max-width: 768px) {
  .oneri-listesi {
    left: 10px;
    right: 10px;
  }

  .oneri-text strong {
    font-size: 13px;
  }

  .oneri-text span {
    font-size: 12px;
  }
}


/* =========================================
   ✅ MASAÜSTÜ MENÜ NAV RİGHT
========================================= */
/* =========================================
   ✅ AĞIR – KURUMSAL – LÜKS NAVBAR MENÜ
   ✅ İKONLAR YAZININ ÜSTÜNDE
   ✅ OYNAKLIK YOK – CİDDİ MARKA DURUŞU
========================================= */

.nav-right {
  display: flex;
  align-items: center;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;   /* Daha geniş = daha ağır duruş */
}

.menu li {
  position: relative;
}

/* ✅ LİNKLER DİKEY DİZİLİR (İKON ÜSTTE, YAZI ALTTA) */
.menu li a {
  font-size: 14.5px;
  font-weight: 600;
  color: #3c2a1e;
  text-decoration: none;
  letter-spacing: 0.4px;

  display: flex;
  flex-direction: column;   /* 🔥 İKON ÜSTTE */
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 6px 2px;
  transition: color .25s ease;
}

/* ✅ İKONLAR – AĞIR VE NET */
.menu li a i {
 font-size: 25px;
 
  transition: .25s ease;
}
/* ✅ ÇİZGİYİ SADECE YAZI GENİŞLİĞİNE KİTLE */
.menu li a {
  position: relative;
}

.menu li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #b79d83, #e6d3b5);
  transition: .3s ease;
  transform: translateX(-50%);
}

.menu li:hover a::after {
  width: 100%;
}
/* =========================================
   ✅ NAVBAR MENÜ – İÇERİK BAZLI RENKLER
========================================= */

/* ANA SAYFA */
.menu li a .fa-house {
  color: #3c2a1e;
}

/* HALI ÇEŞİTLERİ */
.menu li a .fa-rug {
  color: #b79d83; /* altın ton */
}

/* İLETİŞİM */
.menu li a .fa-envelope {
  color: #4a6fa5; /* yumuşak mavi */
}

/* KULLANICI */
.menu li a .fa-user,
.menu li a .fa-right-from-bracket {
  color: #3c2a1e;
}



/* ✅ INSTAGRAM – HATASIZ GRADIENT İKON */
.social-desktop .fa-instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285AEB 90%
  );
  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;

  display: inline-block;
}


/* WHATSAPP */
.social-desktop .fa-whatsapp {
  color: #25d366;
}


/* ✅ SOSYAL İKONLAR – AYNI STİLDE AĞIR */
.social-desktop a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;

  font-size: 15px;
  color: #3c2a1e;
  transition: .25s ease;
}

.social-desktop a:hover {
  color: #b79d83;
}

/* =========================================
   ✅ SEPET
========================================= */


/* =========================================
   ✅ SADECE EV – HALI – İLETİŞİM İKONLARINI KÜÇÜLT
========================================= */

/* Ana Sayfa (Ev) */
.menu li a .fa-house {
  font-size: 18px;
}

/* Halı Çeşitleri */
.menu li a .fa-rug {
  font-size: 18px;
}

/* İletişim */
.menu li a .fa-envelope {
  font-size: 18px;
}

/* =========================================
   ✅ MOBİL ICON BAR
========================================= */

.nav-mobile-icons {
  display: none;
  align-items: center;
  gap: 12px;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0,0,0,.2);
  transition: .3s;
  z-index: 999999;
}

.mobile-menu.acik {
  right: 0;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 999998;
}

.menu-overlay.acik {
  opacity: 1;
  visibility: visible;
}

/* =========================================
   ✅ MOBİL RESPONSIVE
========================================= */

@media (max-width: 768px) {

  .nav-search {
    width: 100%;
    margin: 10px 0;
  }

  .nav-right {
    display: none;
  }

  .nav-mobile-icons {
    display: flex;
  }

}
/*DROPDOWN MENU TEK BLOK YÖNETİM----------------------------------><<<<>>>><<><<<<<<<><<><<<><<>*/
/* =========================================
   ✅ FİNAL ULTRA PREMIUM MEGA DROPDOWN
   ✅ 2 KOLON + CAM EFEKT + TAŞMA YOK
   ✅ SÜREKLİ ALT ÇİZGİ
========================================= */

@media (min-width: 769px) {

  .dropdown {
    position: relative;
  }

  .submenu {
    position: absolute;
    top: 54px;
    left: 50%;
    transform: translateX(-50%) translateY(14px) scale(0.98);

    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    row-gap: 6px;

    min-width: 420px;
    max-width: calc(100vw - 60px);
    padding: 20px 24px;
    list-style: none;
    box-sizing: border-box;

    background: linear-gradient(
      135deg,
      rgba(255,255,255,0.96),
      rgba(245,238,232,0.96)
    );
    backdrop-filter: blur(10px);

    border-radius: 16px;
    border: 1px solid rgba(183,157,131,0.35);

    box-shadow:
      0 18px 45px rgba(0,0,0,0.18),
      inset 0 1px 0 rgba(255,255,255,0.6);

    opacity: 0;
    visibility: hidden;

    transition: opacity .25s ease, transform .25s ease;
    z-index: 99999;
  }

  .submenu.acik,
  .dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
  }

  .submenu li {
    width: 100%;
  }

  .submenu li a {
    position: relative;
    display: block;
    padding: 10px 14px 14px 22px;
    font-size: 14.5px;
    font-weight: 500;
    color: #3c2a1e;
    text-decoration: none;
    letter-spacing: 0.2px;
    border-radius: 10px;
    transition: .25s ease;
  }

  /* ✅ SOL ALTIN IŞIK ŞERİDİ */
  .submenu li a::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 70%;
    background: linear-gradient(180deg, #b79d83, #e6d3b5);
    border-radius: 6px;
    transition: .25s;
  }

  .submenu li a:hover::before {
    width: 4px;
  }

  .submenu li a:hover {
    padding-left: 30px;
    background: rgba(183,157,131,0.12);
    color: #b79d83;
  }

  /* ✅ SÜREKLİ ALT ÇİZGİ */
  .submenu li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 75%;
    height: 1.8px;
    background: linear-gradient(
      90deg,
      transparent,
      #b79d83,
      #e6d3b5,
      #b79d83,
      transparent
    );
    transform: translateX(-50%);
    opacity: 0.85;
  }

  /* ✅ DROPDOWN BAŞLIK ALT ÇİZGİ */
  .dropdown > a {
    position: relative;
    padding-bottom: 4px;
  }

  .dropdown > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #b79d83, #e6d3b5);
    transition: .35s ease;
    transform: translateX(-50%);
  }

  .dropdown:hover > a::after {
    width: 100%;
  }

}
/*-----------------------------------MOBİLE NAVBAR DUZENİ--------------------------------------*/
/* ✅ MOBİL NAVBAR TEMEL */
@media (max-width: 768px) {

  .navbar {
    flex-wrap: wrap;
    padding: 10px 14px;
    gap: 10px;
  }

  .nav-left {
    flex: 1;
  }

  .logo {
    padding: 6px 14px;
  }

  .logo img {
    height: 34px;
  }

  .logo span {
    font-size: 16px;
  }

  /* ✅ Arama tam genişlik alta düşsün */
  .nav-search {
    order: 3;
    width: 100%;
    margin-top: 8px;
  }

  /* ✅ Sağ menü gizle */
  .nav-right {
    display: none;
  }

  /* ✅ Mobil ikon bar aç */
  .nav-mobile-icons {
    display: flex;
    gap: 14px;
    font-size: 20px;
  }
}
/*MOBİLMENU*/
/* ✅ MOBİL MENÜ PANELİ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  box-shadow: -6px 0 25px rgba(0,0,0,.25);
  transition: .35s ease;
  z-index: 999999;
  padding: 18px;
  overflow-y: auto;
}

.mobile-menu.acik {
  right: 0;
}

/* ✅ ÜST BAŞLIK */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  color: #3c2a1e;
  margin-bottom: 20px;
}

.mobile-menu-header i {
  font-size: 22px;
  cursor: pointer;
}

/* ✅ LİSTE */
.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-list li a {
  text-decoration: none;
  font-size: 15px;
  color: #3c2a1e;
  display: block;
  padding: 10px 8px;
  border-radius: 10px;
  transition: .25s ease;
}

.mobile-menu-list li a:hover {
  background: rgba(183,157,131,0.12);
  color: #b79d83;
}

/* ✅ AKORDEON BAŞLIK */
.m-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 8px;
  font-size: 15px;
  font-weight: 600;
  color: #3c2a1e;
  cursor: pointer;
  border-radius: 10px;
  transition: .25s ease;
}

.m-title:hover {
  background: rgba(183,157,131,0.12);
  color: #b79d83;
}

.m-title i {
  transition: transform .25s ease;
}

/* ✅ ALT KATEGORİLER */
.m-submenu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding-left: 10px;
}

.m-submenu li a {
  font-size: 14px;
  padding: 8px 8px;
  color: #555;
}

/* ✅ AKTİF AKORDEON */
.m-dropdown.active .m-submenu {
  max-height: 500px;
}

.m-dropdown.active .m-title i {
  transform: rotate(180deg);
}

/* ✅ SOSYAL ALAN */
.mobile-socials {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.mobile-socials a {
  font-size: 22px;
  color: #3c2a1e;
  transition: .25s ease;
}

.mobile-socials a:hover {
  color: #b79d83;
}

/* ✅ KARARTMA */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 999998;
}

.menu-overlay.acik {
  opacity: 1;
  visibility: visible;
}
/*-----MOBİL NAVBAR*/
/* =========================
   📱 MOBİL NAVBAR FİNAL AYAR (TEMİZ & TEK BLOK)
========================= */
@media (max-width: 768px) {

  .nav-mobile-icons {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 18px; /* ikon boşluğu */
  }

  /* Instagram logoyu logodan uzaklaştırma */
  .nav-mobile-icons a:first-child {
    margin-left: 12px;
  }

  /* Tüm ikonlar */
  .nav-mobile-icons a i {
    font-size: 20px;
    color: #3c2a1e; /* premium kahve */
  }

  /* Sepet sayacı */
  .cart-link {
    position: relative;
  }

  .cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #613b16;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 50%;
    line-height: 1;
  }

  /* Hamburger menü */
  .mobile-hamburger {
    margin-left: auto;
    cursor: pointer;
  }

  .mobile-hamburger i {
    font-size: 22px;
    color: #3c2a1e;
  }

  /* Instagram gradient */
.nav-mobile-icons a i.fa-instagram {
  color: #E1306C; /* Instagram pembe */
}


  /* WhatsApp yeşili */
  .nav-mobile-icons a i.fa-whatsapp {
    color: #25D366;
  }

}
/* =====================================
   📱 MOBİL ICON BAR – LOGO TEMA UYUMLU
   Cam + Altın Premium Arka Plan
===================================== */
@media (max-width: 768px) {

  .nav-mobile-icons {
    background: linear-gradient(
      135deg,
      rgba(255,255,255,0.92),
      rgba(243,236,228,0.92)
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(183,157,131,0.35);
    border-radius: 18px;

    padding: 8px 12px;
    margin-left: 10px;

    box-shadow:
      0 8px 20px rgba(0,0,0,0.15),
      inset 0 1px 0 rgba(255,255,255,0.6);
  }

}
/* ================================
   📱 PREMIUM MOBILE MENU – V6
================================ */

/* Açılış animasyonu */
@keyframes menuSlide {
  0%   { transform: translateX(100%) scale(0.95); opacity: 0; }
  60%  { transform: translateX(-6%) scale(1.02); opacity: 1; }
  100% { transform: translateX(0) scale(1); }
}

/* Menü kapama animasyonu */
@keyframes menuHide {
  0% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

/* =====================================
   📱 FULL PREMIUM MOBILE MENU – FINAL
   Bölümlü Menü + Alt İletişim Bar
===================================== */
@media (max-width: 768px) {

  /* MENÜ GENEL */
  body #mobileMenu.mobile-menu {
    background: linear-gradient(
      135deg,
      rgba(255, 250, 244, 0.96),
      rgba(236, 224, 209, 0.96)
    ) !important;

    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;

    border-left: 1px solid rgba(183,157,131,0.45) !important;
    box-shadow: -6px 0 30px rgba(0,0,0,0.25) !important;

    display: flex;
    flex-direction: column;
  }

  /* ÜST BAŞLIK */
  .mobile-menu-header {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(183,157,131,0.25);
  }

  /* ANA MENÜ BLOĞU */
  .mobile-menu-list {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .mobile-menu-list > li {
    margin-bottom: 4px;
  }

  /* MENÜ LİNKLERİ */
  .mobile-menu-list li a {
    font-size: 16px;
    font-weight: 600;
    padding: 12px 14px;
    border-radius: 14px;
    display: block;
    color: #3c2a1e;
    transition: .25s;
  }

  .mobile-menu-list li a:hover {
    background: rgba(183,157,131,0.18);
    color: #b79d83;
    box-shadow: inset 0 0 10px rgba(183,157,131,0.25);
  }

  /* KATEGORİ BLOĞU */
  .m-title {
    font-weight: 700;
    border-radius: 14px;
    padding: 12px 14px;
  }

  .m-dropdown {
    margin: 10px 0;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(183,157,131,0.35);
  }

  .m-submenu li a {
    padding-left: 22px;
    font-size: 14px;
  }

  /* ALT İLETİŞİM BAR */
  .mobile-contact-bar {
    margin-top: auto;
    padding: 14px 10px 6px;
    border-top: 1px solid rgba(183,157,131,0.35);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: linear-gradient(135deg, #b79d83, #e6d3b5);
    color: #3c2a1e;

    font-weight: 700;
    font-size: 15px;

    padding: 12px;
    border-radius: 16px;

    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    transition: .25s;
  }

  .mobile-contact-bar a:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 22px rgba(0,0,0,0.25);
  }

  .mobile-contact-bar a i {
    font-size: 18px;
  }

}



/* ================================
   NAVBAR – HESABIM DROPDOWN (FINAL)
================================ */

.account-dropdown {
  position: relative;
}

.account-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #3c2a1e;
  text-decoration: none;
  cursor: pointer;
}

/* Menü */
.account-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);

  background: #fff;
  min-width: 220px;
  padding: 8px 0;
  list-style: none;

  border-radius: 14px;
  box-shadow:
    0 10px 20px rgba(0,0,0,0.08),
    0 25px 50px rgba(0,0,0,0.12);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .2s ease, transform .2s ease;
  z-index: 9999;
}

/* Caret */
.account-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 8px 8px 8px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.05));
}

/* Hover alanı */
.account-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

/* Açılma */
.account-dropdown:hover .account-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Menü linkleri */
.account-menu li a {
  display: block;
  padding: 11px 18px;
  font-size: 14px;
  color: #3c2a1e;
  text-decoration: none;
  transition: background .2s, padding-left .2s;
}

.account-menu li a:hover {
  background: #f6f2ee;
  padding-left: 22px;
}

.account-menu li:first-child a {
  font-weight: 600;
}

/* Divider */
.account-menu .divider {
  height: 1px;
  background: #eee;
  margin: 6px 0;
}

/* Navbar güvenliği */
.navbar {
  overflow: visible;
  position: relative;
  z-index: 1000;
}


.blog-preview {
  padding: 80px 6%;
  background: #f8f6f2;
}

.blog-preview h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #3c2a1e;
}

.blog-subtitle {
  text-align: center;
  color: #7a6a5a;
  margin: 10px 0 50px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: .35s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

.blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 22px;
}

.blog-tag {
  display: inline-block;
  background: #a08467;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: 18px;
  color: #3c2a1e;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: #6d5e4f;
  line-height: 1.5;
}

.blog-more {
  text-align: center;
  margin-top: 40px;
}

.blog-more a {
  font-weight: 600;
  color: #a08467;
  border-bottom: 2px solid transparent;
  transition: .2s;
}

.blog-more a:hover {
  border-color: #a08467;
}


.submenu li a{ white-space: normal; line-height:1.4; }
.category-card img,
.offer-card img,
.slide img {
  height: auto !important;
}
/****tum urunler ucretsizkarho*/
.collection-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  /* BOŞLUK SIFIR */
  margin: 0;
  padding: 14px 22px;

  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;

  font-size: 15px;
  font-weight: 500;
  color: #111827;
  letter-spacing: 0.3px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  position: relative;
}

/* Ücretsiz kargo & kapıda ödeme vurgusu */
.collection-trust span:not(.slogan):not(.dot) {
  font-weight: 600;
  color: #000000;
}

/* Nokta ayırıcı */
.collection-trust .dot {
  color: #c7c7c7;
  font-size: 14px;
}

/* Slogan – premium yumuşaklık */
.collection-trust .slogan {
  margin-left: 6px;
  font-style: italic;
  font-weight: 400;
  color: #6b7280;
  white-space: nowrap;
}

/* Altın premium çizgi */
.collection-trust::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, #d6b46a, #f5e6b3);
  border-radius: 2px;
}

/* Hover = çok hafif prestij hareketi */
.collection-trust:hover {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

/* Mobil uyum */
@media (max-width: 768px) {
  .collection-trust {
    flex-wrap: wrap;
    text-align: center;
    font-size: 14px;
    padding: 12px 16px;
  }

  .collection-trust .dot {
    display: none;
  }

  .collection-trust .slogan {
    margin-left: 0;
    width: 100%;
    font-size: 13px;
  }
}

/* =============================
   🎬 BRAND VIDEO GENEL
============================= */

.brand-video {
  padding: 60px 20px;
  background: #faf9f7;
}

.brand-video-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

/* =============================
   📝 METİN ALANI
============================= */

.brand-video-text h2 {
  font-size: 32px;
  color: #3c2a1e;
  margin-bottom: 10px;
  font-weight: 700;
}

.brand-video-text p {
  font-size: 16px;
  color: #7a6a58;
  line-height: 1.6;
}

/* =============================
   🎥 VİDEO + POSTER KUTUSU
============================= */

.brand-video-box {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 14px 32px rgba(0,0,0,0.14);
}

/* Video & poster */
.brand-video-box video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}

/* Poster hafif canlı + premium */
.brand-video-box video[poster] {
  filter: brightness(0.95) contrast(1.05);
}

/* Poster üstü yumuşak karartı */
.brand-video-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.35)
  );
  pointer-events: none;
  z-index: 1;
}

/* =============================
   ▶️ PLAY BUTONU (PREMIUM)
============================= */

.video-play-btn {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border: none;
  cursor: pointer;

  color: #ffffff;
  font-size: 42px;
}

/* Cam efektli daire */
.video-play-btn::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;

  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
  transition: 0.25s ease;
}

/* Hover prestij efekti */
.video-play-btn:hover::before {
  transform: scale(1.08);
  background: rgba(255,255,255,0.26);
}

/* =============================
   📱 MOBİL
============================= */

@media (max-width: 768px) {
  .brand-video-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-video {
    padding: 40px 16px;
  }

  .brand-video-text h2 {
    font-size: 24px;
  }

  .video-play-btn {
    font-size: 34px;
  }

  .video-play-btn::before {
    width: 70px;
    height: 70px;
  }
}
.brand-video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
}

.brand-video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {

  /* Mobilde oranı kaldır */
  .brand-video-box {
    aspect-ratio: auto;
    height: 70vh;          /* 🔥 mobilde büyük görünür */
    border-radius: 14px;
  }

  /* Video ekrana göre büyüsün */
  .brand-video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;    /* dik video kırpılır ama büyük durur */
  }

}


.ilk-fiyat-blok{
  margin:10px 0 14px;
}

.ilk-fiyat-label{
  font-size:13px;
  color:#7a6a58;
}

.ilk-fiyat-deger{
  font-size:26px;
  font-weight:700;
  color:#2d2a26;
}

.ilk-fiyat-alt{
  font-size:12px;
  color:#8c7a66;
}
/* ===============================
   TRUST PREMIUM BAR — BEJ
=============================== */
.trust-premium-bar{
  position:sticky;
  top:0;
  z-index:999;

  background:linear-gradient(90deg,#e8dccb,#dfcfb8);
  color:#2b2b2b;

  padding:16px 20px;

  display:flex;
  justify-content:center;
  align-items:center;
  gap:30px;

  font-family:Poppins, sans-serif;
  font-size:15px;
  letter-spacing:.3px;

  border-bottom:1px solid rgba(0,0,0,.05);
}


/* Yazı */
.trust-main{
  font-weight:500;
}

.trust-main strong{
  font-weight:700;
}

.trust-slogan{
  font-size:14px;
  font-style:italic;
  opacity:.85;
}


/* İnce premium ayraç */
.trust-divider{
  width:1px;
  height:18px;
  background:rgba(0,0,0,.15);
}


/* Hover'da hafif koyulaşsın */
.trust-premium-bar:hover{
  background:linear-gradient(90deg,#e2d4c1,#d8c7ae);
  transition:.3s ease;
}


/* Mobil */
@media(max-width:768px){

  .trust-premium-bar{
    flex-direction:column;
    gap:6px;
    text-align:center;
    padding:14px 10px;
  }

  .trust-main{
    font-size:14px;
  }

  .trust-slogan{
    font-size:13px;
  }

}
/* ===============================
   MINI CANVAS HERO — ULTRA PREMIUM
=============================== */
.mini-canvas-hero{
  padding:50px 20px;
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(223,207,184,.55), rgba(245,245,245,0) 60%),
    radial-gradient(800px 420px at 80% 10%, rgba(232,220,203,.60), rgba(245,245,245,0) 55%),
    linear-gradient(180deg, #faf7f2 0%, #f1eee8 100%);
  display:flex;
  justify-content:center;
}

.mini-left{
  max-width:1120px;
  width:100%;
  text-align:center;
  position:relative;
}


/* ===============================
   HEADLINE / SUBTITLE
=============================== */
.mini-left h2{
  font-family:Poppins, sans-serif;
  font-size:30px;
  font-weight:650;
  letter-spacing:.2px;
  color:#141414;
  margin:0 0 10px;
}

.mini-left p{
  font-family:Poppins, sans-serif;
  font-size:15px;
  color:#5f5a53;
  margin:0 0 34px;
}


/* ===============================
   CANVAS SHOWROOM FRAME
=============================== */
#miniCanvas{
  width:100%;
  max-width:820px;
  height:auto;
  display:block;
  margin:0 auto 26px;

  background:rgba(255,255,255,.72);
  border-radius:22px;

  /* Cam + premium çerçeve */
  border:1px solid rgba(10,10,10,.08);
  box-shadow:
    0 18px 60px rgba(0,0,0,.10),
    0 2px 0 rgba(255,255,255,.55) inset;

  /* Hafif cam efekti */
  backdrop-filter: blur(10px);
}

/* Canvas üstünde premium ışık hissi (fake reflection) */
#miniCanvas{
  position:relative;
}
.mini-left::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  top:140px;
  width:min(980px, 96%);
  height:260px;
  pointer-events:none;
  background:linear-gradient(120deg,
    rgba(255,255,255,.55),
    rgba(255,255,255,.18),
    rgba(255,255,255,0)
  );
  border-radius:24px;
  opacity:.38;
  filter:blur(1px);
}


/* ===============================
   CONTROLS — TECH PANEL
=============================== */
.mini-controls{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  margin:18px 0 34px;
}

.mini-controls label{
  display:flex;
  align-items:center;
  gap:12px;

  padding:12px 16px;
  border-radius:16px;

  background:rgba(255,255,255,.65);
  border:1px solid rgba(0,0,0,.07);
  box-shadow:0 10px 26px rgba(0,0,0,.08);

  font-family:Poppins, sans-serif;
  font-size:14px;
  font-weight:550;
  color:#2a2a2a;

  backdrop-filter: blur(10px);
}

/* renk inputu premium */
.mini-controls input[type="color"]{
  width:44px;
  height:44px;
  padding:0;
  border:none;
  border-radius:12px;
  cursor:pointer;
  background:transparent;
  box-shadow:
    0 8px 18px rgba(0,0,0,.14),
    0 1px 0 rgba(255,255,255,.55) inset;
}

.mini-controls input[type="color"]::-webkit-color-swatch-wrapper{
  padding:0;
  border-radius:12px;
}
.mini-controls input[type="color"]::-webkit-color-swatch{
  border:none;
  border-radius:12px;
}


/* ===============================
   CTA BUTTON — BEJ LUX
=============================== */
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding:16px 34px;
  border-radius:999px;

  text-decoration:none;
  font-family:Poppins, sans-serif;
  font-weight:700;
  letter-spacing:.2px;

  color:#1a1a1a;
  background:linear-gradient(90deg, #e8dccb, #dfcfb8);
  border:1px solid rgba(0,0,0,.10);

  box-shadow:
    0 14px 34px rgba(0,0,0,.16),
    0 2px 0 rgba(255,255,255,.55) inset;

  transition:transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:
    0 18px 46px rgba(0,0,0,.20),
    0 2px 0 rgba(255,255,255,.55) inset;
  filter:saturate(1.05);
}

.btn-primary:active{
  transform:translateY(0px);
  box-shadow:
    0 12px 28px rgba(0,0,0,.16),
    0 2px 0 rgba(255,255,255,.55) inset;
}


/* ===============================
   RESPONSIVE
=============================== */
@media(max-width:768px){
  .mini-canvas-hero{ padding:56px 14px; }

  .mini-left h2{ font-size:28px; }
  .mini-left p{ font-size:15px; margin-bottom:22px; }

  .mini-left::after{ display:none; } /* mobilde reflection kapat */
}

