:root {
    --primary:#1e88e5;
    --bg:#f0f4fa;
    --dark-bg:#232f44;
    --radius:8px;
    --shadow:0 10px 30px -10px rgba(0,0,0,0.15);
    --max:1200px;
    --transition:.25s cubic-bezier(.4,.2,.2,1);
    font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  }
  *{box-sizing:border-box;margin:0;padding:0;}
  body {background: #fff; color:#1f2630; line-height:1.4; min-height:100vh;}
  a{text-decoration:none; color:inherit;}
  .container {width:90%; max-width:var(--max); margin:0 auto;}
  header {border-bottom:1px solid #e6eaf2;}
/* Top Bar Genel Stilleri */
.top-bar {
  background: #fff; /* beyaz arka plan */
  color: #555; /* yazılar gri */
  font-size: 13px;
  padding: 12px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 7px solid #22d3ee; /* üstte turkuaz şerit */
  border-bottom: 3px solid #e5e5e5; /* altta gri çizgi */
}

/* Container İçeriği */
.top-bar .container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 10px;
}

/* Bilgi Alanı Stilleri */
.top-bar .info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 15px;
  color: #555;
}

/* Link Stilleri */
.top-bar a {
  color: #555;
  text-decoration: none;
  display: flex;
  gap: 6px;
  align-items: center;
}

/* İkon Stilleri */
.top-bar svg {
  color: #777; /* ikon gri tonu */
}

/* Dikey Ayırıcı Çizgiler */
.top-bar .info > div:not(:last-child),
.top-bar .top-links a:not(:last-child) {
  position: relative;
  padding-right: 15px;
  margin-right: 15px;
}

.top-bar .info > div:not(:last-child)::after,
.top-bar .top-links a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 22px;
  width: 1px;
  background-color: #e5e5e5; /* ince gri çizgi */
}
/* Döviz Kuru Çubuğu Stilleri (Küçük ve Minimal) */
.onelycm-currency-bar {
  padding: 0; /* üst çubuk daha ince */
  display: flex;
  justify-content: center;
}

.onelycm-currency-card {
  display: inline-flex;
  align-items: center;
  gap: 4px; /* iç boşluk azaltıldı */
  padding: 0px 10px; /* kart daha küçük */
  border-radius: 8px;
  background: #fff;
  color: #222;
  font-family: 'Inter', sans-serif;
  font-size: 12px; /* daha küçük yazı */
  font-weight: 600;
  letter-spacing: 0.1px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.onelycm-currency-card:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

.onelycm-currency-flag {
  width: 18px; /* bayrak boyutu küçültüldü */
  height: 12px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid #ddd;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.onelycm-currency-text {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  display: flex;
  align-items: center;
}

#onelycm-exchange-rate {
  margin-left: 3px;
  font-size: 14px;
  font-weight: 700;
  color: #00aaa5; /* gri renk */
  background: none; /* degrade kaldırıldı */
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #00aaa5;
}
  .nav {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
    position:relative;
  }
  .logo {font-weight:700; font-size:1.5rem; letter-spacing:-1px; display:flex; align-items:center; gap:4px;}
  .logo span {color: var(--primary);}
  .menu {display:flex; gap:25px; align-items:center; font-size:14px; position:relative;}
  .actions {display:flex; gap:15px; align-items:center;}
  .btn {padding:8px 15px; border-radius:6px; cursor:pointer; font-weight:600; border:none; transition: var(--transition);}
  .btn-primary {background: var(--primary); color:#fff;}
  .btn-outline {background:transparent; border:1px solid var(--primary); color: var(--primary);}
/* Giriş Yap - turuncu dolu buton, beyaz yazı + ikon */
.btn-login {
  background: #f15a24;
  border: 1px solid #f15a24;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: filter .2s;
  text-decoration: none;
}
.btn-login:hover {
  filter: brightness(1.05);
}

/* Sepet - turkuazımsı dolu buton, beyaz yazı + ikon */
.btn-cart {
  background: #1abc9c;
  border: 1px solid #1abc9c;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: filter .2s;
  text-decoration: none;
}
.btn-cart:hover {
  filter: brightness(1.05);
}
  .cart {position:relative; font-size:14px; padding:6px 8px; border:1px solid #d1d8e6; border-radius:6px;}
  .hamburger {display:none; background:none; border:none; cursor:pointer; padding:8px;}
  .hamburger div {width:24px; height:2px; background:#1f2630; margin:4px 0; transition: all .3s;}
  
  /* Dropdown / Mega */
  .dropdown {
    position: relative;
    font-size:17px;
  }
  .drop-btn {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap:4px;
    font-weight:500;
    color:#3d485c;
    position: relative;
  }
  .drop-btn.active {color:#ff5f00;} /* aktif link rengi örnek */
  .drop-btn:after {
    content: '▾';
    font-size:0.6em;
    margin-left:4px;
    transition: transform .2s;
  }
  
/* Yanıp sönen rozetler */
@keyframes pulseGlow {
  0% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 6px rgba(255,255,255,0.3);
  }
  50% {
    transform: translateX(-50%) scale(1.08);
    box-shadow: 0 0 24px rgba(255,255,255,0.8);
  }
  100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 6px rgba(255,255,255,0.3);
  }
}
.badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height:1;
  white-space: nowrap;
  animation: pulseGlow 1.5s infinite ease-in-out;
  pointer-events: none;
  z-index: 5;
}

.badge-discount {
  background: #16a34a;
  color: #fff;
}

.badge-ddos {
  background: #f97316;
  color: #fff;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 8px;
  padding: 20px 30px;
  display: none;
  z-index: 60;
  box-shadow: 0 30px 60px -10px rgba(0,0,0,0.2);
  font-size: 14px;
  min-width: 600px; /* geniş ama viewport’u aşmayacak */
  max-width: calc(100vw - 40px); /* kenarlardan boşluk bırak */
}
.mega-grid {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap; /* alt alta değil yan yana */
  overflow-x: auto;  /* taşarsa yatay kaydır */
  padding-bottom:4px;
}
.mega-grid::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.03);
  border-radius: 3px;
}
.mega-grid::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 3px;
}
  .mega-item {
    display: flex;
    gap:12px;
    flex:1;
	min-width: 220px;
	max-width: 260px;
    padding:12px 14px;
    border-radius:8px;
    transition: background .2s;
    align-items:flex-start;
  }
  .mega-item:hover {
    background: rgba(30,136,229,0.07);
  }
  .mega-item .icon {
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    background: rgba(30,136,229,0.1);
    border-radius:50%;
  }
	.mega-item .icon img {
	  width: 24px;
	  height: 24px;
	  object-fit: contain;
	  display: block;
	}
  .mega-item .text .title {
    font-weight:600;
    font-size:14px;
    margin-bottom:4px;
    color:#1f2630;
  }
  .mega-item .text .desc {
    font-size:12px;
    color:#6b7280;
  }
  .dropdown:hover .dropdown-content {display:block;}
  .dropdown:hover .drop-btn:after {transform: rotate(180deg);}

  /* Hero */
  .hero {
    padding:22px 0 5px;
    background: linear-gradient(180deg,#f5f8fc 0%,#fff 60%);
    text-align:center;
  }
  .hero h1 {
    font-size:2.5rem;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.1;
  }
  .search-box {
    max-width:760px;
    margin:0 auto;
    position:relative;
  }
  .search-box input {
    width:100%;
    padding:16px 20px;
    border-radius:12px;
    border:1px solid #dfe4ed;
    font-size:1rem;
    outline:none;
    box-shadow:0 10px 30px -10px rgba(30,136,229,0.2);
  }
  .search-box button {
    position:absolute;
    right:6px;
    top:50%;
    transform:translateY(-50%);
    background: var(--primary);
    border:none;
    color:#fff;
    padding:12px 18px;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
  }
  .subtext {
    font-size:12px;
    margin-top:6px;
    color:#6b7280;
  }
  /* Alan Adı Fiyat Kısmı */

.domain-prices {
  padding: 20px 0;
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.domain-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  position: relative;
  transition: 0.2s ease;
}

.domain-card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.domain-card img {
  width: 100px;       /* sabit genişlik */
  height: 22px;       /* sabit yükseklik */
  object-fit: contain; /* logoyu kırpmadan sığdırır */
  margin-bottom: 10px;
}

.old-price {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.new-price {
  font-size: 18px;
  font-weight: 700;
  color: #1e3a8a; /* Mavi */
}

.arrow {
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-size: 20px;
  color: #9ca3af;
}

  /* Alan Adı Fiyat Kısmı */  
  /* Features */

.features {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #f9fafb 0%, #fff 100%);
  text-align: center;
}

.features h2 {
    font-size:2.5rem;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.1;
}

.feature-list {
  margin: 20px auto 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 9999px; /* Tam yuvarlak badge */
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.feature-icon {
  background: #a060ea;
  color: #fff;
  font-size: 12px;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
}

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

.card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 30px auto 0;
  background: #f9fafb;
  border-radius: 50%;
  padding: 15px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);
}

.card-body {
  padding: 22px 20px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111827;
}

.card-sub {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 14px;
}

.card-links {
  margin-top: auto;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-links a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.card-links a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.card-footer-link {
  margin-top: 14px;
}

.card-footer-link a {
  font-size: 12px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-footer-link a:hover {
  color: #374151;
}
  
/* Help banner */
.help-banner {
  margin: 5px 0 0;
  background: linear-gradient(to right, #004e92, #0072bc, #00c6d7);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.help-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.help-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  padding: 0 10px;
  position: relative;
  z-index: 2;
}

.help-text {
  font-size: 1.8rem;
  font-weight: 600;
  flex: 1;
  min-width: 260px;
  animation: fadeInLeft 1s ease forwards;
}

.help-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Button styles */
.help-actions .btn {
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 999px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-weight: 500;
}

.help-actions .btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.help-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.help-actions .btn-primary {
  background: #25d366; /* WhatsApp yeşili */
  border: none;
  color: #fff;
}

.help-actions .btn-primary:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* Text animation */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
  /* Footer */
  footer {
    background: var(--dark-bg);
    color:#c5cddf;
    padding:60px 0 30px;
    font-size:13px;
  }
  .footer-inner {
    max-width:var(--max);
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
    gap:30px;
    padding:0 10px;
  }
  .footer-col h4 {
    color:#fff;
    margin-bottom:10px;
    font-size:14px;
    font-weight:600;
  }
  .footer-col a {
    display:block;
    margin-bottom:6px;
    color:#c5cddf;
	transition: color 0.3s ease;
    font-size:12px;
  }
.footer-col a:hover {
  color: orange;
  text-decoration: none;
}
  .footer-bottom {
    margin-top:30px;
    border-top:1px solid rgba(255,255,255,0.08);
    padding-top:18px;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    font-size:11px;
    gap:10px;
  }
.footer-bottom a {
  text-decoration: none;
  color: #c5cddf;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: orange;
  text-decoration: none;
}
  .logo-footer {font-weight:700; font-size:1.3rem; display:flex; gap:4px; align-items:center;}
  .socials {display:flex; gap:10px; margin-top:4px;}
  .socials a {font-size:14px; color:#c5cddf;}


  #cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 350px;
    font-family: "Arial", sans-serif;
    z-index: 9999;
    display: none;
    animation: slideUp 0.4s ease;
  }

  #cookie-consent h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: bold;
    color: #222;
  }

  #cookie-consent p {
    font-size: 14px;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .cookie-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .cookie-buttons a.info-btn {
    color: #0066ff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 10px;
  }

  .cookie-buttons .reject-btn {
    background: #e53935;
    border: none;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
  }

  .cookie-buttons .accept-btn {
    background: #1a3faa;
    border: none;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
  }

  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }  
  
/* WhatsApp-Telefon Buton container */
    .icon-bar {
      position: fixed;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 999;
    }

    /* Ortak stil */
    .icon-link {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      width: 50px;   /* Başlangıç dar */
      height: 50px;
      border-radius: 50px;
      color: #fff;
      text-decoration: none;
      overflow: hidden;
      transition: all 0.4s ease;
      font-size: 16px;
      padding: 0 10px;
    }

    /* Hover olunca genişlesin */
    .icon-link:hover {
      width: 210px;   /* Daha büyük açılıyor */
      border-radius: 50px;
    }

    /* İkon resim */
    .icon-link img {
      width: 28px;
      height: 28px;
      margin-right: 10px;
      flex-shrink: 0;
    }

    /* Yazı kısmı */
    .icon-link span {
      opacity: 0;
      white-space: nowrap;
      transition: opacity 0.3s ease;
      font-weight: 500;
    }

    /* Hover olunca yazı gözüksün */
    .icon-link:hover span {
      opacity: 1;
    }

    /* Gradient stiller */
    .phone {
      background: linear-gradient(to right, #00c6d7, #004e92);
    }

    .whatsapp {
      background: linear-gradient(to right, #ff9966, #ff5e62);
    }
    
/* WhatsApp-Telefon Buton container */
  
  /* BANNER */
  
.premium-slider {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 80px 10%;
  min-height: 350px;
  margin-top: -1px;
}

/* Slaytlar üst üste */
.slides {
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.slide-text {
  max-width: 50%;
}

.slide-text h4 {
  font-size: 1.2rem;
  opacity: 0.8;
}

.slide-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 10px 0;
}

.slide-text p {
  font-size: 1.1rem;
}

.slide-img img {
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transform: translateX(60px); /* 30px sağa kaydırır */
}

.slide-imgb img {
  width: 95%;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transform: translateX(120px); /* 30px sağa kaydırır */
}


/* Navigasyon noktaları */
.slider-nav {
  position: absolute;
  bottom: 25px;
  left: 50px;
  display: flex;
  gap: 15px;
  z-index: 3;
}

.nav-dot {
  width: 40px;
  height: 6px;
  background: rgba(255,255,255,0.3);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.nav-dot.active {
  background: #fff;
}
  
  /* BANNER */
  
  
  /* Responsive */
  @media (max-width:1024px){
    .cards {grid-template-columns:repeat(2,1fr);}
  }
  
/* Mobil uyum için eklemeler */
@media (max-width: 992px) {
  .premium-slider {
    padding: 60px 5%;
    min-height: 450px; /* tablet için daha yüksek */
  }
  
  .slide {
    flex-direction: column; /* Yazı üstte, resim altta */
    text-align: center;
    gap: 20px;
  }

  .slide-text {
    max-width: 100%;
  }

  .slide-text h2 {
    font-size: 2rem; /* başlık küçülür */
  }

  .slide-text p {
    font-size: 1rem;
  }

  .slide-img img {
    max-width: 100%; /* ekran genişliği kadar olsun */
    transform: translateX(0); /* kaydırmayı mobilde kaldır */
  }
  
  .slide-imgb img {
    max-width: 100%; /* ekran genişliği kadar olsun */
    transform: translateX(0); /* kaydırmayı mobilde kaldır */
  }

  .slider-nav {
    left: 50%;
    transform: translateX(-50%); /* Noktalar ortalansın */
  }
}
  
  @media (max-width:900px){
    .feature-list {flex-direction:column; align-items:center;}
  }
  @media (max-width:768px){
    .nav {flex-wrap:wrap;}
    .menu {display:none; flex-direction:column; background:#fff; position:absolute; top:100%; right:10px; left:10px; border-radius:8px; padding:15px; box-shadow:0 20px 40px -10px rgba(0,0,0,0.15);}
    .menu.show {display:flex;}
    .hamburger {display:block;}
    .cards {grid-template-columns:1fr;}
    .hero h1 {font-size:2rem;}
    .help-inner {flex-direction:column; text-align:center;}
    .help-text {font-size:1.4rem;}
    .actions {margin-top:12px; flex-wrap:wrap; justify-content:flex-start;}
    .dropdown {width:100%;}
    .dropdown + .dropdown {margin-top:6px;}
    .dropdown-content {position: static; box-shadow:none; padding:10px 0;}
    .mega-grid {flex-direction:column; gap:8px;}
    .drop-btn:after {transform: none;}
    .dropdown.open .dropdown-content {display:block;}
    .dropdown:hover .dropdown-content {display: none;}
  }
  /* Yeni mobil panel / akordiyon */
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 55;
  }
  .mobile-overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 90%;
    height: 100vh;
    background: #fff;
    box-shadow: -8px 0 40px -5px rgba(0,0,0,0.15);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap:16px;
    transition: right .35s cubic-bezier(.3,.1,.25,1);
    z-index: 60;
  }
  .mobile-panel.show {
    right: 0;
  }
  .mobile-panel .drop-btn:after {
    display: none;
    content: none;
  }
  .hamburger.active div:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active div:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .mobile-menu {
    flex:1;
    overflow-y:auto;
  }
  .mobile-menu .dropdown {
    border-bottom:1px solid #f0f2f8;
  }
  .mobile-menu .drop-btn {
    width:100%;
    background:none;
    border:none;
    padding:12px 8px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    position:relative;
  }
  .mobile-menu .drop-btn .arrow {
    transition: transform .25s ease;
    font-size:0.8em;
  }
  .mobile-menu .drop-content {
    max-height:0;
    overflow:hidden;
    transition: max-height .35s ease;
    padding-left:8px;
  }
  .mobile-menu .drop-content a {
    display:block;
    padding:10px 8px;
    font-size:14px;
    color:#374151;
    text-decoration:none;
    border-radius:6px;
    margin-bottom:4px;
  }
  .mobile-menu .drop-content.show {
    max-height: 1000px;
  }
@media (max-width: 768px) {
  .top-bar .info {
    gap: 5px; /* Çizgiler arası boşluğu azalt */
  }
  
  .top-bar .info > div:not(:last-child),
  .top-bar .top-links a:not(:last-child) {
    padding-right: 10px; /* Sağ padding'i küçült */
    margin-right: 10px; /* Sağ margin'i küçült */
  }
  
  .top-bar .info > div:not(:last-child)::after,
  .top-bar .top-links a:not(:last-child)::after {
    height: 16px; /* Çizgi yüksekliğini küçült */
  }
  
  .top-bar a {
    font-size: 14px; /* Yazı boyutunu küçült (isteğe bağlı) */
  }
}

/* Mobilde Gizleme */
@media (max-width: 768px) {
  .onelycm-currency-bar {
    display: none;
  }
}

/* WhatsApp-Telefon Buton container */
@media (max-width: 768px) {
  .icon-bar {
    top: 80%;   /* %50 yerine daha aşağıya */
    transform: translateY(-50%);
  }
  
/* WhatsApp-Telefon Buton container */

@media (max-width: 576px) {
  .premium-slider {
    padding: 40px 5%;
    min-height: 370px; /* telefon için boy artırıldı */
  }

  .slide-text h2 {
    font-size: 1.6rem;
  }

  .slide-text p {
    font-size: 1rem;
  }

  .slide-img img {
    max-width: 95%;
  }

  .slide-imgb img {
    max-width: 95%;
  }
}
