html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

/* No-hero sayfalarında navbar için üstten boşluk */
body.no-hero {
  padding-top: 100px;
}

body.no-scroll {
  overflow: hidden !important;
}

body,
button,
input,
textarea,
select {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

/* Old Navbar - Disabled
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  position: fixed;
  top: 2rem;
  left: 0;
  width: 100vw;
  height: 110px;
  background: transparent;
  z-index: 100;
  box-sizing: border-box;
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
  opacity: 1;
}

.navbar.scrolled-bg {
  background: rgba(0, 0, 0, 0.5) !important;
  top: 0 !important;
  backdrop-filter: blur(8px);
  transition: background 0.3s, top 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    backdrop-filter 0.3s;
}

.navbar.scrolled-bg .navbar-brand img,
.navbar.scrolled-bg .header-logo svg {
  height: 80px !important;
  max-height: 80px !important;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.hide-navbar {
  top: -120px;
  opacity: 0;
  pointer-events: none;
}

.navbar.show-navbar {
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
}
*/

.navbar-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.navbar-nav {
  display: flex;
  gap: 3vw;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  position: relative;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.flag-list {
  list-style-type: none;
  padding-left: 20px;
}
.nav-link::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #b89b8c 0%, #6d4c3d 100%);
  border-radius: 2px;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover,
.nav-link:focus {
  color: #b89b8c;
}

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

.contact-btn {
  background: #b89b8c;
  color: #fff;
  border: none;
  padding: 0.8em 1em;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-left: auto;
  cursor: pointer;
  font-size: 0.8rem;
  transition: background 0.2s;
}

.contact-btn:hover {
  background: #a07d68;
}

/* Hamburger ikon */
.navbar-toggler {
  display: none;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
}

/* Dropdown menü */
.nav-item.dropdown {
  position: relative;
}
.navbar-nav,
.dropdown-menu {
  list-style: none;
}

.dropdown-menu {
  list-style: none;
  position: absolute;
  top: 105%; /* Navlinke daha yakın, hover gap azalır */
  left: 50%; /* Navlinke ortala */
  transform: translate(-50%, 10px); /* Hafif aşağıda ama boşluk bırakmaz */
  background: #f7f3f0;
  width: 220px;
  box-shadow: 0 12px 32px 0 rgba(184, 155, 140, 0.1),
    0 1.5px 8px 0 rgba(184, 155, 140, 0.08);
  border-radius: 18px;
  z-index: 100;
  padding: 0.7em 0;
  backdrop-filter: blur(6px);
  border: 1.5px solid #e0d3c3;
  text-align: left;
  padding-top: 10px;
  /* display ve opacity kaldırıldı */
}

.nav-item.dropdown > .dropdown-menu {
  display: none;
  opacity: 0;
  pointer-events: none;
}
.nav-item.dropdown:hover > .dropdown-menu,
.nav-item.dropdown:focus-within > .dropdown-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

/* Alt linklere ikon ve hover efekti */
.dropdown-menu li a {
  color: #6d4c3d;
  padding: 0.8em 1em 0.8em 2.2em;
  display: block;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  position: relative;
  background: none;
  transition: background 0.18s, color 0.18s, padding-left 0.18s,
    box-shadow 0.18s;
}

.dropdown-menu li a::before {
  content: "›";
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
  color: #b89b8c;
  font-size: 1.1em;
  opacity: 0.7;
  transition: color 0.2s;
}

.dropdown-menu li a:hover,
.dropdown-menu li a:focus {
  background: linear-gradient(90deg, #f5ede7 60%, #ede0d4 100%);
  color: #b89b8c;
  padding-left: 2.8em;
  box-shadow: 0 2px 12px 0 rgba(184, 155, 140, 0.08);
}

.dropdown-menu li a:hover::before,
.dropdown-menu li a:focus::before {
  color: #a07d68;
  opacity: 1;
}

/* Mobil menü */
.fullscreen-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; /* Menü ortada, ikonlar altta */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #6d4c3d;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.fullscreen-menu .mobile-contact-icons {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
}
.fullscreen-menu .mobile-contact-icons a {
  color: #fff;
  opacity: 0.85;
  font-size: 2rem;
  transition: color 0.2s, opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullscreen-menu .mobile-contact-icons a:hover,
.fullscreen-menu .mobile-contact-icons a:focus {
  color: #b89b8c;
  opacity: 1;
}
.mobile-contact-title {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.08em;
  position: relative;
  width: 100%;
  text-transform: uppercase;
}

.fullscreen-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  margin-top: 80px; /* Üstten biraz boşluk */
  margin-bottom: 40px; /* Alttan biraz boşluk */
}

.fullscreen-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.fullscreen-menu .navbar-nav {
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}

.fullscreen-menu .nav-link {
  font-size: 1.5rem;
  color: #fff;
  position: relative;
  transition: color 0.2s;
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  width: auto;
}
.fullscreen-menu .nav-link:hover,
.fullscreen-menu {
  color: #b89b8c;
}
.fullscreen-menu .nav-link:hover::after,
.fullscreen-menu .nav-link:focus::after {
  width: 100%;
}
.fullscreen-menu .nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #b89b8c;
  transition: width 0.3s;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  margin: 0 auto;
}
.fullscreen-menu .contact-btn {
  margin-top: 2.5rem;
  font-size: 1.2rem;
}

.close-menu-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 6rem;
  color: #fff;
  cursor: pointer;
  z-index: 2100;
}
/* no-scroll */
.no-scroll {
  overflow: hidden;
}

/* hide-navbar */
.hide-navbar {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

/* scrolled-bg */
.scrolled-bg {
  background-color: rgba(0, 0, 0, 0.85); /* örnek */
  transition: background-color 0.3s ease;
}

/* Hero Section */
.hero-bg {
  position: relative;
  background: #b89b8c; /* h1.jpeg'e yakın bir renk */
  width: 100vw;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  max-width: 100vw;
  overflow-x: hidden;
}

.hero-bg .hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  z-index: 2;
  text-align: center;
  color: #fff;
  width: 100%;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.scroll-bar {
  content: "";
  width: 2px;
  height: 100px;
  background: #b79e90;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  animation-name: scrollBarAnimReverse;
  animation-duration: 6s;
  animation-iteration-count: infinite;
}

@keyframes scrollBarAnimReverse {
  0% {
    height: 50px;
  }
  30% {
    height: 90px;
  }
  100% {
    height: 50px;
  }
}

.scroll-text {
  color: #d2bfae;
  letter-spacing: 0.5em;
  font-size: 1rem;
  font-family: inherit;
}

/* Container */
.container {
  width: 80vw;
  margin: 0 auto;
  padding: 100px 0 32px 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.container h2 {
  margin-top: 0;
  color: #6d4c3d;
  font-size: 2rem;
  font-weight: bold;
}

.container ul {
  padding-left: 1.2rem;
}

.container .list-group-item {
  background: #f7f3f0;
  border: none;
  margin-bottom: 6px;
  border-radius: 6px;
  color: #333;
}

/* Product Card */
.product-list {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.product-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem 1rem;
  width: 240px;
  text-align: center;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s,
    border 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #f7f3f0;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 12px 32px rgba(109, 76, 61, 0.15);
  border-color: #b89b8c;
}

.product-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 5%;
  margin-bottom: 1rem;
  margin-top: -10px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover img {
  transform: scale(1.07);
  filter: brightness(1.08) saturate(1.1);
}

.product-card h3 {
  margin: 0.7rem 0 0.4rem 0;
  color: #6d4c3d;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.product-card p {
  color: #7a5c4b;
  font-size: 1rem;
  margin-bottom: 0;
  min-height: 48px;
}

.product-card::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: linear-gradient(90deg, #b89b8c 0%, #d2bfae 100%);
  border-radius: 2px;
  margin: 1.2rem auto 0 auto;
  transition: width 0.3s;
}
.product-card:hover::after {
  width: 60px;
}

/* === Product Card Slider Responsive & Kare Kartlar === */
.product-list {
  gap: 1rem;
}
.product-card {
  aspect-ratio: 1/1;
  width: 32vw;
  min-width: 32vw;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}
.product-card img {
  width: 100%;
  height: 60%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  flex: 0 0 60%;
}
.product-card h3, .product-card p {
  margin: 0;
  padding: 0 0.5rem;
  text-align: center;
}
.product-card h3 {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.2rem;
  flex: 0 0 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card p {
  font-size: 0.95rem;
  flex: 0 0 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ürünlerimiz */
.urunlerimiz-title {
  font-size: 1.9rem;
  color: #6d4c3d;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.urunlerimiz-desc {
  text-align: center;
  color: #a07d68;
  font-size: 1.08rem;
  margin-bottom: 1.5rem;
  margin-top: 0.2rem;
  font-weight: 500;
}

/* Promo Block */
.promo-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.promo-img-stack {
  position: relative;
  width: 100%;
  max-width: 800px;
  min-width: 260px;
  margin: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 375px;
}

.promo-img-back {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 92%;
  height: 92%;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(109, 76, 61, 0.1);
  z-index: 1;
  filter: brightness(0.92) blur(1px);
}

.promo-img-main {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(109, 76, 61, 0.13);
  z-index: 2;
}

.promo-content {
  position: relative;
  padding: 1.5rem 1.2rem;
  margin: 0 0.5rem;
  max-width: 300px;
  min-width: 220px;
  width: 100%;
  box-sizing: border-box;
  display: block; /* flex yerine block kullanın */
}

.promo-title {
  font-size: 2.2rem;
  color: #6d4c3d;
  font-weight: 800;
  margin-bottom: 1.1rem;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.promo-desc {
  width: 100%;
  box-sizing: border-box;
  color: #7a5c4b;
  font-size: 1.18rem;
  line-height: 1.7;
  margin-bottom: 0;
  display: block;
  text-align: justify;
  text-justify: inter-word;
  /* Taşmayı önlemek için overflow ekleyin */
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Footer - Yeni Tasarım */
.footer {
  background: linear-gradient(344deg, #f7f3f0 0%, #f5f6fa 100%);
  width: 100%;
  padding: 0;
  border-top: 4px solid;
  border-image: linear-gradient(90deg, #b89b8c, #e7d6c1, #b89b8c) 1;
}

.footer-container {
  width: 80vw;
  margin: 0 auto;
  padding: 48px 0 24px 0;
  box-sizing: border-box;
}

/* Ana footer içeriği */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

/* Logo ve marka */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  align-items: center;
}

.footer-logo svg {
  color: #232323;
  transition: color 0.3s ease;
  height: 80px;
  width: auto;
}

.footer-brand-text {
  text-align: center;
}

.footer-brand-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #232323;
  margin: 0 0 8px 0;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

.footer-brand-text p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  opacity: 0.85;
  line-height: 1.5;
  text-align: center;
}

/* Link kolonları */
.footer-links-wrapper {
  display: contents;
}

.footer-links-column {
  text-align: left;
}

.footer-links-column h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #232323;
  margin: 0 0 20px 0;
  font-family: 'Roboto', sans-serif;
}

.footer-links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-column ul li {
  margin-bottom: 12px;
}

.footer-links-column a {
  font-size: 0.95rem;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.footer-links-column a:hover {
  color: #b89b8c;
}

.footer-links-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #b89b8c;
  transition: width 0.3s ease;
}

.footer-links-column a:hover::after {
  width: 100%;
}

/* Sosyal medya bölümü */
.footer-social-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #232323;
  margin: 0 0 20px 0;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  color: #666;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  background: #b89b8c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(184, 155, 140, 0.3);
}

/* Döviz kurları */
.footer-currency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 28px 0;
  border-top: 1px solid rgba(184, 155, 140, 0.2);
  border-bottom: 1px solid rgba(184, 155, 140, 0.2);
  margin: 0 calc(-50vw + 50%) 24px calc(-50vw + 50%);
  width: 100vw;
  position: relative;
}

.currency-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.6);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.currency-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.currency-label {
  font-weight: 600;
  font-size: 1rem;
  color: #232323;
}

.currency-value {
  font-weight: 500;
  font-size: 1rem;
  color: #666;
}

.currency-value i {
  margin-left: 4px;
  font-size: 0.8rem;
  color: #b89b8c;
}

.currency-divider {
  width: 1px;
  height: 36px;
  background: rgba(184, 155, 140, 0.3);
}

/* Alt bilgi */
.footer-bottom {
  text-align: center;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #666;
  opacity: 0.8;
}

/* Promo Slider */
.promo-block-slider {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(109, 76, 61, 0.13);
  padding: 2.5rem 2rem;
  margin: 4rem 0 3.5rem 0;
  /* Diğer mevcut kurallarınız burada kalabilir */
}
.promo-slider {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.promo-slide {
  display: none;
  align-items: center;
  gap: 2rem;
  width: 100%;
  justify-content: center;
}
.promo-slide.active {
  display: flex;
}
.promo-indicators {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 10;
  width: auto;
  pointer-events: auto;
}
.promo-indicator {
  width: 32px;
  height: 8px;
  border-radius: 4px;
  background: #ddd;
  transition: background 0.3s;
  cursor: pointer;
  opacity: 0.85;
}
.promo-indicator.active {
  background: #6d4c3d;
  opacity: 1;
}

/* Slider okları - görselin kenarında */
.promo-img-stack {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  border-radius: 0;
  width: 56px;
  height: 56px;
  display: none;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  outline: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.promo-arrow svg {
  width: 48px;
  height: 48px;
  display: block;
  margin: auto;
  transition: stroke 0.2s;
}
.promo-arrow svg polyline {
  stroke: #444;
  transition: stroke 0.2s;
}
.promo-arrow-left { left: 0; }
.promo-arrow-right { right: 0; }
.promo-img-stack:hover .promo-arrow {
  display: flex;
}
.promo-arrow:hover svg polyline {
  stroke: #b89b8c;
}
/* Responsive: 1200px ve altı */

/* Responsive: 991px ve altı */

/* Responsive: 746px ve altı */

/* Responsive: 480px ve altı */

/* Live Search Results - Responsive Tables */
#search-results {
    position: relative;
    z-index: 100;
    margin-top: 8px;
}

#search-results table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    box-shadow: 0 4px 24px rgba(184, 155, 140, 0.2);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    animation: fadeIn 0.4s ease;
}

#search-results th {
    background: #b89b8c;
    color: #fff;
    font-size: 1.08rem;
    padding: 14px 18px;
    font-weight: 600;
    text-align: left;
    border: none;
}

#search-results td {
    padding: 14px 18px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
    color: #6d4c3d;
    transition: background-color 0.2s ease;
}

#search-results tr:hover td {
    background-color: #f8f5f2;
}

#search-results tr.selected td {
    background-color: #f8f5f2;
    font-weight: bold;
}

#search-results .close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 18px;
    cursor: pointer;
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

#search-results .close-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

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

/* Responsive: 768px ve altı - Tablet ve Mobil */

/* Responsive: 480px ve altı - Küçük Mobil */

/* Responsive: 320px ve altı - Çok Küçük Mobil */

/* İş Ortaklarımız / Clients Section */
/* Modern Clients/Partners Bölümü - Kartlı Grid ve Temiz Tasarım (Önceki stabil haliyle) */
.clients-section {
  background: #fff;
  border-radius: 24px;
  padding: 56px 0 48px 0;
  margin-top: 56px;
  box-shadow: 0 2px 24px 0 rgba(0,0,0,0.04);
}
.clients-header {
  text-align: center;
  margin-bottom: 40px;
}
.clients-pretitle {
  font-size: 0.95rem;
  color: #888;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.clients-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}
.clients-desc {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 18px;
}
.clients-divider {
  width: 80px;
  border: none;
  border-top: 2px solid #eee;
  margin: 0 auto 32px auto;
}
.clients-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* Her satırda 6 logo */
  gap: 32px;
  max-width: 100%; /* Slider ile aynı genişlikte */
  margin: 0 auto;
}
.clients-logos-item {
  background: #f7f8fa;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  height: 100%;
  box-shadow: none;
  transition: box-shadow 0.3s;
}
.clients-logos-item:hover {
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
}
.clients-logos img {
  max-width: 95%; /* Logoları büyüttük */
  max-height: 80px; /* Yüksekliği artırdık */
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.6);
  transition: filter 0.3s;
  display: block;
}
.clients-logos-item:hover img {
  filter: grayscale(0%) brightness(1);
}

/* Mobil ve tablette otomatik kayan partners slider */

/* 991px - 1400px arası slider düzeltmesi */

/* Masaüstü için slider ve container genişliği */

/* Footer - Mobil Responsive */

  .footer-social {
    text-align: center;
  }

  .social-link {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin: 0 5px 0 0;
    line-height: 32px;
  }

  .social-link:last-child {
    margin-right: 0;
  }

  .social-link svg {
    width: 16px;
    height: 16px;
  }

  /* Çok küçük ekranlarda döviz kurları daha kompakt */
  .footer-currency {
    padding: 16px 0;
    gap: 16px;
    margin: 0 calc(-50vw + 50%) 24px calc(-50vw + 50%);
    width: 100vw;
    background: transparent;
    border-top: 1px solid rgba(184, 155, 140, 0.2);
    border-bottom: 1px solid rgba(184, 155, 140, 0.2);
    border-radius: 0;
    box-shadow: none;
  }

  .currency-divider {
    height: 20px;
    width: 1px;
  }

  .currency-item {
    padding: 0;
    gap: 6px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    flex-direction: row;
  }

  .currency-icon {
    width: 18px;
    height: 18px;
  }

  .currency-label,
  .currency-value {
    font-size: 0.8rem;
  }

  .currency-value i {
    font-size: 0.7rem;
  }

  .footer-copyright {
    font-size: 0.75rem;
    line-height: 1.3;
  }

/* iPhone özel modeller için footer responsive kurallar */
/* iPhone SE (375px) ve küçük ekranlar */

  .footer-contact {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 16px 8px;
    margin: 8px 0;
    box-shadow: none;
  }

  .footer-contact h4 {
    font-size: 0.9rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(184, 155, 140, 0.3);
    color: #232323;
    text-align: center;
    font-weight: 600;
  }

  .contact-info {
    gap: 8px;
  }

  .contact-item {
    font-size: 0.7rem;
    gap: 6px;
    padding: 4px 0;
    min-height: 28px;
    display: flex;
    align-items: center;
  }

  .contact-item i {
    font-size: 0.75rem;
    width: 16px;
  }

  .footer-social {
    text-align: center;
    margin-top: 12px;
  }

  .footer-social h4 {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .social-links {
    justify-content: center;
    gap: 8px;
  }

  .social-link {
    width: 32px;
    height: 32px;
    margin: 0 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
    -webkit-tap-highlight-color: rgba(184, 155, 140, 0.2);
  }

  .social-link svg {
    width: 16px;
    height: 16px;
  }

  .footer-currency {
    padding: 10px 0;
    gap: 8px;
    margin: 0 calc(-47.5vw + 50%) 12px calc(-47.5vw + 50%);
    width: 95vw;
       background: transparent;
    border-top: 1px solid rgba(184, 155, 140, 0.2);
    border-bottom: 1px solid rgba(184, 155, 140, 0.2);
    border-radius: 0;
    box-shadow: none;
  }

  .currency-item {
    padding: 0;
    gap: 3px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    flex-direction: row;
  }

  .currency-icon {
    width: 14px;
    height: 14px;
  }

  .currency-label,
  .currency-value {
    font-size: 0.85rem;
  }

  .currency-value i {
    font-size: 0.6rem;
  }

  .footer-copyright {
    font-size: 0.65rem;
    text-align: center;
    padding: 0 5px;
  }

/* iPhone 12 Mini ve benzeri (360px civarı) */

/* Çok küçük ekranlar (320px ve altı) */

/* İletişim bölümü */
.footer-contact-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #232323;
  margin: 0 0 20px 0;
  font-family: 'Roboto', sans-serif;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-item i {
  color: #b89b8c;
  font-size: 1.1rem;
  margin-top: 2px;
  min-width: 16px;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #232323;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.contact-value a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value a:hover {
  color: #b89b8c;
}

/* Küçük ekranlar için iletişim bilgileri */

@media (max-width: 480px) {
/* No-hero sayfalarında küçük mobil için navbar padding */
  body.no-hero {
    padding-top: 70px;
  }
  
  .promo-indicator {
    width: 14px;
    height: 5px;
    border-radius: 2.5px;
  }

#search-results table {
        font-size: 0.8rem;
        border-radius: 6px;
    }
    
    #search-results th {
        font-size: 0.85rem;
        padding: 10px 8px;
    }
    
    #search-results td {
        padding: 10px 8px;
    }
    
    /* Çok küçük ekranlarda text wrap */
    #search-results td {
        word-break: break-word;
        hyphens: auto;
    }
    
    /* Gramaj kolunu daha da daralt */
    #search-results th:nth-child(3),
    #search-results td:nth-child(3) { /* Gramaj */
        width: 15%;
        font-size: 0.75rem;
    }
    
    #search-results th:nth-child(1),
    #search-results td:nth-child(1) { /* Ebat */
        width: 30%;
    }
    
    #search-results th:nth-child(2),
    #search-results td:nth-child(2) { /* Cinsi */
        width: 35%;
    }
    
    #search-results th:nth-child(4),
    #search-results td:nth-child(4) { /* Fiyat */
        width: 20%;
    }

/* iPhone ve mobil cihazlar için footer özel düzenlemeler */
  .footer-container {
    padding: 20px 8px 12px;
    width: 95%;
    max-width: 95%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .footer-main {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
  }

  .footer-brand {
    text-align: center;
    order: 1;
    margin-bottom: 16px;
  }

  .footer-brand-text h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
  }

  .footer-brand-text p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .footer-logo svg {
    height: 60px;
  }

  .footer-links-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    order: 2;
  }

  .footer-links-column {
    padding: 16px 12px;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(184, 155, 140, 0.15);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
  }

  .footer-links-column h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
    text-align: center;
    border-bottom: 1px solid rgba(184, 155, 140, 0.2);
    color: #232323;
  }

  .footer-links-column ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-links-column ul li {
    margin-bottom: 0;
  }

  .footer-links-column a {
    font-size: 0.85rem;
    padding: 6px 0;
    color: #666;
    text-decoration: none;
    display: block;
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  .footer-links-column a:hover {
    background: rgba(184, 155, 140, 0.1);
    color: #b89b8c;
  }

  .footer-social-section {
    order: 3;
    text-align: center;
    margin-top: 20px;
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(184, 155, 140, 0.15);
    border-radius: 12px;
    padding: 16px;
  }

  .footer-social-section h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    text-align: center;
    color: #232323;
  }

  .footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .social-link {
    width: 44px;
    height: 44px;
    line-height: 44px;
    margin: 0;
  }

  /* Currency adjustments */
  .footer-currency {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    flex-wrap: wrap;
  }

  .currency-item {
    padding: 12px 16px;
    min-width: auto;
    flex: 0 0 auto;
  }

  .currency-label {
    font-size: 1rem;
    font-weight: 600;
  }

  .currency-value {
    font-size: 1rem;
    font-weight: 500;
  }

  .currency-icon {
    width: 26px;
    height: 26px;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
#search-results table {
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    #search-results th {
        font-size: 0.95rem;
        padding: 12px 12px;
    }
    
    #search-results td {
        padding: 12px 12px;
    }
    
    /* Mobilde kolun genişliğini ayarla */
    #search-results th:nth-child(1),
    #search-results td:nth-child(1) { /* Ebat */
        width: 25%;
    }
    
    #search-results th:nth-child(2),
    #search-results td:nth-child(2) { /* Cinsi */
        width: 35%;
    }
    
    #search-results th:nth-child(3),
    #search-results td:nth-child(3) { /* Gramaj */
        width: 20%;
    }
    
    #search-results th:nth-child(4),
    #search-results td:nth-child(4) { /* Fiyat */
        width: 20%;
    }
}

@media (max-width: 320px) {
#search-results table {
        font-size: 0.75rem;
    }
    
    #search-results th {
        font-size: 0.8rem;
        padding: 8px 6px;
    }
    
    #search-results td {
        padding: 8px 6px;
    }
    
    /* En küçük ekranlarda kolları yeniden ayarla */
    #search-results th:nth-child(1),
    #search-results td:nth-child(1) { /* Ebat */
        width: 28%;
    }
    
    #search-results th:nth-child(2),
    #search-results td:nth-child(2) { /* Cinsi */
        width: 37%;
    }
    
    #search-results th:nth-child(3),
    #search-results td:nth-child(3) { /* Gramaj */
        width: 12%;
        font-size: 0.7rem;
    }
    
    #search-results th:nth-child(4),
    #search-results td:nth-child(4) { /* Fiyat */
        width: 23%;
    }
}

@media only screen and (max-width: 320px) {
/* Footer özel düzenlemeler */
  .footer-container {
    width: 100vw;
    padding: 10px 0;
    margin: 0;
  }

  .footer-main {
    padding: 0 10px;
    gap: 12px;
  }

  .footer-brand .logo {
    width: 90px;
  }

  .footer-brand-info {
    font-size: 0.65rem;
    margin-top: 6px;
  }

  .footer-links-wrapper {
    padding: 0 5px;
    gap: 8px;
  }

  .links-column {
    padding: 8px;
    border-radius: 4px;
  }

  .links-column h4 {
    font-size: 0.7rem;
    margin-bottom: 4px;
  }

  .links-column ul li {
    margin-bottom: 4px;
  }

  .links-column ul li a {
    font-size: 0.6rem;
    padding: 4px 0;
    min-height: 28px;
    display: block;
    line-height: 1.2;
    -webkit-tap-highlight-color: rgba(184, 155, 140, 0.2);
  }

  .footer-contact {
    padding: 12px 8px;
    margin: 6px 5px;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .footer-contact h4 {
    font-size: 0.8rem;
    margin-bottom: 8px;
    text-align: center;
    color: #232323;
    font-weight: 600;
    border-bottom: 1px solid rgba(184, 155, 140, 0.3);
    padding-bottom: 6px;
  }

  .contact-info {
    gap: 6px;
  }

  .contact-item {
    font-size: 0.6rem;
    gap: 3px;
    padding: 2px 0;
    min-height: 24px;
    display: flex;
    align-items: center;
  }

  .contact-item i {
    font-size: 0.65rem;
    width: 12px;
  }

  .social-link {
    width: 26px;
    height: 26px;
    margin: 0 1px;
    min-height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: rgba(184, 155, 140, 0.2);
  }

  .social-link svg {
    width: 12px;
    height: 12px;
  }

  .footer-currency {
    margin: 0 0 8px 0;
    width: 100vw;
    padding: 6px 0;
    gap: 6px;
  }

  .currency-item {
    gap: 2px;
  }

  .currency-label,
  .currency-value {
    font-size: 0.85rem;
  }

  .currency-value i {
    font-size: 0.5rem;
  }

  .currency-icon {
    width: 10px;
    height: 10px;
  }

  .footer-copyright {
    font-size: 0.55rem;
    padding: 0 10px;
    line-height: 1.1;
  }
}

@media only screen and (max-width: 360px) {
/* Footer özel düzenlemeler */
  .footer-container {
    width: 98vw;
    padding: 12px 1vw;
  }

  .footer-brand .logo {
    width: 100px;
  }

  .footer-brand-info {
    font-size: 0.7rem;
  }

  .links-column {
    padding: 10px;
    border-radius: 6px;
  }

  .links-column h4 {
    font-size: 0.75rem;
    margin-bottom: 6px;
  }

  .links-column ul li a {
    font-size: 0.65rem;
    padding: 6px 0;
    min-height: 30px;
    display: block;
    line-height: 1.2;
    -webkit-tap-highlight-color: rgba(184, 155, 140, 0.2);
  }

  .footer-contact {
    padding: 14px 8px;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .footer-contact h4 {
    font-size: 0.8rem;
    text-align: center;
    color: #232323;
    font-weight: 600;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(184, 155, 140, 0.3);
    padding-bottom: 6px;
  }

  .contact-item {
    font-size: 0.65rem;
    gap: 4px;
    padding: 3px 0;
    min-height: 26px;
    display: flex;
    align-items: center;
  }

  .contact-item i {
    font-size: 0.7rem;
    width: 14px;
  }

  .social-link {
    width: 28px;
    height: 28px;
    min-height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: rgba(184, 155, 140, 0.2);
  }

  .social-link svg {
    width: 14px;
    height: 14px;
  }

  .footer-currency {
    margin: 0 calc(-49vw + 50%) 10px calc(-49vw + 50%);
    width: 98vw;
    padding: 8px 0;
  }

  .currency-label,
  .currency-value {
    font-size: 0.75rem;
  }

  .currency-value i {
    font-size: 0.55rem;
  }

  .currency-icon {
    width: 12px;
    height: 12px;
  }

  .footer-copyright {
    font-size: 0.6rem;
  }
}

@media only screen and (max-width: 375px) {
/* Footer özel düzenlemeler */
  .footer-container {
    width: 95vw;
    padding: 20px 2.5vw;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .footer-main {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .footer-brand {
    text-align: center;
    margin-bottom: 16px;
    order: 1;
  }

  .footer-logo svg {
    height: 60px;
    width: auto;
  }

  .footer-brand-text h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
  }

  .footer-brand-text p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-top: 8px;
  }

  .footer-links-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    order: 2;
  }

  .footer-links-column {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(184, 155, 140, 0.15);
    border-radius: 12px;
    padding: 16px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
  }

  .footer-links-column h4 {
    font-size: 0.9rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(184, 155, 140, 0.2);
    text-align: center;
    color: #232323;
  }

  .footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links-column ul li {
    margin-bottom: 8px;
    text-align: center;
  }

  .footer-links-column ul li a {
    font-size: 0.8rem;
    padding: 6px 0;
    display: block;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  .footer-links-column ul li a:hover {
    background: rgba(184, 155, 140, 0.1);
    color: #b89b8c;
  }

  .footer-social-section {
    order: 3;
    text-align: center;
    margin-top: 16px;
    grid-column: 1 / -1;
  }

  .footer-social-section h4 {
    font-size: 0.9rem;
    margin-bottom: 12px;
    text-align: center;
  }

  .footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0;
  }

  /* Currency section adjustments */
  .footer-currency {
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
    margin: 16px calc(-50vw + 50%) 20px calc(-50vw + 50%);
  }

  .currency-item {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .currency-icon {
    width: 20px;
    height: 20px;
  }

  .currency-divider {
    display: none;
  }
}

@media (max-width: 1200px) {
/* Old navbar styles disabled
    .navbar-menu {
    display: none;
  }
  .navbar-toggler {
    display: block;
    font-size: 2.5rem;
  }
    .navbar {
    top: 0;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(8px) !important;
    opacity: 1 !important;
    transition: none !important;
    box-shadow: none !important;
    height: 100px;
  }
    .navbar.hide-navbar {
    display: flex !important;
    top: 0 !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(8px);
  }
  .header-logo svg {
    height: 70px !important;
    max-height: 70px !important;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
      max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fullscreen-menu {
    display: flex;
  }
  .fullscreen-menu .has-dropdown > .dropdown-menu {
    position: static !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-shadow: none !important;
    background: none !important;
    border-radius: 0 !important;
    padding-left: 1.5em !important;
    align-items: flex-start !important;
  }
  .mobile-contact-icons a {
    text-decoration: none !important;
  }
  */
}

@media (max-width: 500px) {
.clients-logos {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .clients-logos-item {
    min-height: 70px;
    border-radius: 6px;
  }
  .clients-logos img {
    max-width: 60%;
    max-height: 32px;
  }

.clients-logos-item {
    min-width: 140px;
    min-height: 60px;
    padding: 8px 0;
  }
  .clients-logos-item.center-highlight {
    transform: scale(1.18);
  }
}

@media (max-width: 600px) {
.product-list {
    gap: 0.3rem;
  }
  .product-card {
    width: 32vw;
    min-width: 32vw;
    max-width: none;
    aspect-ratio: 1/1;
  }
  .product-card img {
    height: 60%;
    flex-basis: 60%;
  }
  .product-card h3, .product-card p {
    font-size: 0.95rem;
    padding: 0 0.2rem;
  }
}

@media (max-width: 746px) {
.promo-slide,
  .promo-slide.active {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .promo-img-stack {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    height: 50vw;
  }
  .promo-content {
    max-width: 100%;
  }
  .promo-indicators {
    width: 6rem;
  }
  .promo-indicator {
    width: 22px;
    height: 6px;
    border-radius: 3px;
  }

.footer-container {
    padding: 32px 8px 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 16px;
    margin-bottom: 24px;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    order: 0;
  }

  .footer-logo svg {
    height: 50px;
  }

  .footer-brand-text {
    text-align: center;
  }

  .footer-brand-text h3 {
    text-align: center;
    font-size: 1.2rem;
  }

  .footer-brand-text p {
    text-align: center;
  }

  .footer-links-wrapper {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    order: 1;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-links-column {
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
    padding: 16px 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
  }

  .footer-links-column h4 {
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-bottom: 4px;
    color: #232323;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid rgba(184, 155, 140, 0.3);
  }

  .footer-links-column ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-links-column ul li {
    margin-bottom: 0;
  }

  .footer-links-column a {
    font-size: 0.9rem;
    display: block;
    padding: 6px 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
    color: #666;
    text-decoration: none;
  }

  .footer-links-column a:hover {
    background: rgba(184, 155, 140, 0.1);
    color: #b89b8c;
    transform: translateX(2px);
  }

  .footer-contact-section {
    grid-column: 1;
    grid-row: 3;
    order: 2;
    background: rgba(255, 255, 255, 0.4);
    padding: 16px 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
  }

  .footer-social-section {
    grid-column: 2;
    grid-row: 3;
    order: 3;
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
    padding: 16px 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
  }

  /* Döviz kurları mobilde */
  .footer-currency {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    padding: 20px 0;
    background: transparent;
    margin: 0 calc(-50vw + 50%) 24px calc(-50vw + 50%);
    border-radius: 0;
    box-shadow: none;
    width: 100vw;
    border-top: 1px solid rgba(184, 155, 140, 0.2);
    border-bottom: 1px solid rgba(184, 155, 140, 0.2);
    box-sizing: border-box;
  }

  .currency-divider {
    width: 1px;
    height: 24px;
    background: rgba(184, 155, 140, 0.4);
    border-radius: 0;
  }

  .currency-item {
    flex-direction: row;
    align-items: center;
    text-align: center;
    padding: 0;
    gap: 8px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    min-width: auto;
    box-sizing: border-box;
  }

  .currency-label {
    font-size: 0.8rem;
    font-weight: 600;
  }

  .currency-value {
    font-size: 0.8rem;
  }

  .currency-icon {
    width: 20px;
    height: 20px;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }

.footer-contact-section h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #232323;
    font-weight: 600;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(184, 155, 140, 0.3);
  }

  .footer-contact {
    gap: 12px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .contact-item {
    gap: 10px;
  }

  .contact-item i {
    font-size: 1rem;
  }

  .contact-label {
    font-size: 0.8rem;
  }

  .contact-value {
    font-size: 0.85rem;
  }

  .footer-social-section h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #232323;
    font-weight: 600;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(184, 155, 140, 0.3);
  }

  .footer-social {
    display: block;
    text-align: center;
    white-space: nowrap;
    line-height: 0;
  }

  .social-link {
    display: inline-flex;
    width: 36px;
    height: 36px;
    margin: 0 6px;
    vertical-align: top;
    line-height: 36px;
    text-align: center;
  }

  .social-link svg {
    vertical-align: middle;
    line-height: normal;
    display: inline-block;
  }
  .currency-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.6);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
}

@media (max-width: 800px) {
.clients-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .clients-section {
    padding: 32px 0 24px 0;
    border-radius: 12px;
  }
  .clients-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 900px) {
.product-card {
    width: 32vw;
    min-width: 32vw;
    max-width: none;
  }
  .product-list {
    gap: 0.5rem;
  }

.clients-logos.slider-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 8px; /* mesafe azaltıldı */
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .clients-logos.slider-wrapper::-webkit-scrollbar {
    display: none;
  }
  .clients-logos-item {
    min-width: 200px; /* biraz büyütüldü */
    flex: 0 0 auto;
    min-height: 90px; /* biraz büyütüldü */
    border-radius: 12px;
    padding: 16px 0;
    margin: 0;
    transition: transform 0.3s, box-shadow 0.3s;
    transform: scale(1.08); /* biraz büyütüldü */
    box-shadow: none;
    z-index: 1;
  }
  .clients-logos-item.center-highlight {
    transform: scale(1.32); /* ortadaki daha büyük */
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
    z-index: 2;
    background: #fff;
  }
}

@media (max-width: 991px) {
/* No-hero sayfalarında mobil için navbar padding */
  body.no-hero {
    padding-top: 80px;
  }

  .container {
    width: 96vw;
    padding: 90px 0 12px 0;
  }
  .product-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    align-items: stretch;
    justify-items: center;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .product-card {
    width: 100%;
    min-width: 0;
    padding: 1rem 0.5rem;
    box-sizing: border-box;
    position: relative;
  }
  .product-card img {
    padding: 7px 3px;
    box-sizing: border-box;
    border-radius: 20px;
  }
  .product-card h3 {
    font-size: 1.05rem;
  }
  .product-card p {
    font-size: 0.92rem;
    min-height: 36px;
  }
  .promo-content {
    max-width: 98vw;
    padding: 1.2rem 0.7rem;
    margin: 0;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 150px; /* Yükseklik artırıldı */
    min-height: 150px;
    max-height: 150px;
    background: linear-gradient(135deg, #f7f3f0 80%, #ede0d4 100%);
    border: 1.5px solid #e0d3c3;
    box-sizing: border-box;
    overflow-y: auto;
  }
  .promo-title {
    font-size: 1.1rem;
    color: #6d4c3d;
    font-weight: 900;
    margin-bottom: 0.15rem;
    letter-spacing: 0.04em;
    line-height: 1.15;
    text-align: center;
    background: linear-gradient(90deg, #b89b8c 30%, #6d4c3d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .promo-title::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, #b89b8c 0%, #d2bfae 100%);
    border-radius: 2px;
    margin: 0.15rem auto 0.2rem auto;
  }
  .promo-desc {
    color: #7a5c4b;
    font-size: 0.92rem;
    line-height: 1.4;
    text-align: justify;
    font-weight: 500;
    letter-spacing: 0.01em;
  }
  .promo-slide,
  .promo-slide.active {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    justify-content: flex-start;
  }

  .promo-content {
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    height: 200px;
    min-height: 120px;
    max-height: 120px;
  }
  .promo-content {
    background: linear-gradient(135deg, #f7f3f0 80%, #ede0d4 100%);
    border: 1.5px solid #e0d3c3;
    padding: 1.2rem 1rem;
    box-sizing: border-box;
    overflow-y: auto;
    max-width: 98vw;
    margin: 0;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* Footer - Tablet Responsive */
  .footer-container {
    padding: 40px 20px 20px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
  }

  .footer-brand-text h3 {
    font-size: 1.3rem;
  }

  .footer-links-wrapper {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-links-column {
    background: rgba(255, 255, 255, 0.3);
    padding: 20px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
  }

  .footer-links-column h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    text-align: center;
    border-bottom: 2px solid rgba(184, 155, 140, 0.3);
    padding-bottom: 8px;
  }

  .footer-links-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links-column ul li {
    margin-bottom: 0;
  }

  .footer-links-column a {
    font-size: 0.9rem;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
    color: #666;
    text-decoration: none;
  }

  .footer-links-column a:hover {
    background: rgba(184, 155, 140, 0.1);
    color: #b89b8c;
    transform: translateX(2px);
  }

  .footer-contact-section {
    grid-column: 1;
    grid-row: 3;
    background: rgba(255, 255, 255, 0.3);
    padding: 20px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .footer-contact-section h4 {
    font-size: 1rem;
    text-align: center;
    border-bottom: 2px solid rgba(184, 155, 140, 0.3);
    padding-bottom: 8px;
    margin-bottom: 16px;
  }

  .footer-social-section {
    grid-column: 2;
    grid-row: 3;
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    padding: 20px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .footer-social-section h4 {
    font-size: 1rem;
    text-align: center;
    border-bottom: 2px solid rgba(184, 155, 140, 0.3);
    padding-bottom: 8px;
    margin-bottom: 16px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-currency {
    padding: 20px 16px;
  }
  .promo-block-slider {
    padding: 1rem 1rem;
  }
  .promo-img-stack {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    height: 50vw;
  }
  .promo-content {
    max-width: 100%;
  }
  .promo-indicators {
    width: 6rem;
  }
  .promo-indicator {
    width: 22px;
    height: 6px;
    border-radius: 3px;
  }
  .urunlerimiz-desc {
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
  }
  .container h2 {
    font-size: 1rem;
    margin-top: 2rem;
  }
  .mobile-contact-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 12px;
    width: 100%;
  }
  .mobile-contact-icons a {
    color: #232323;
    opacity: 0.85;
    font-size: 2rem;
    transition: color 0.2s, opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
  }
  .mobile-contact-icons a:hover,
  .mobile-contact-icons a:active {
    color: #b89b8c;
    opacity: 1;
  }
}

@media (max-width: 1100px) {
.clients-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (min-width: 992px) and (max-width: 1400px) {
.promo-block-slider {
    padding: 1.5rem 1rem;
    max-width: 98vw;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }
  .promo-slider {
    max-width: 100vw;
    overflow-x: hidden;
  }
  .promo-slide,
  .promo-slide.active {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.2rem;
    justify-content: center;
    align-items: stretch;
  }
  .promo-img-stack {
    width: 58%;
    max-width: 58%;
    min-width: 220px;
    height: 28vw;
    min-height: 240px;
    max-height: 380px;
  }
  .promo-content {
    width: 40%;
    max-width: 400px;
    min-width: 220px;
    height: 28vw;
    min-height: 240px;
    max-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 0.5rem;

    /* Tema özellikleri buraya taşındı */
    background: linear-gradient(135deg, #f7f3f0 80%, #ede0d4 100%);
    border: 1.5px solid #e0d3c3;
    padding: 1.2rem 1rem;
    box-sizing: border-box;
    overflow-y: auto;
  }
  .promo-title {
    font-size: 1.5rem;
    color: #6d4c3d;
    font-weight: 900;
    margin-bottom: 0.7rem;
    letter-spacing: 0.04em;
    line-height: 1.15;
    text-align: left;
    background: linear-gradient(90deg, #b89b8c 30%, #6d4c3d 100%);
    -webkit-background-clip: text;
    background-clip: text; /* Standart özellik eklendi */
    -webkit-text-fill-color: transparent;
  }
  .promo-title::after {
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, #b89b8c 0%, #d2bfae 100%);
    border-radius: 2px;
    margin: 0.7rem 0 0.8rem 0;
  }
  .promo-desc {
    color: #7a5c4b;
    font-size: 0.98rem;
    line-height: 1.5;
    text-align: justify;
    font-weight: 500;
    letter-spacing: 0.01em;
  }
}

@media (min-width: 746px) {
.currency-item {
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.6);
        padding: 12px 16px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
}

@media (min-width: 1401px) {
.container {
    width: 92vw;
    max-width: 1400px;
  }
  .promo-block-slider {
    max-width: 92vw;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .promo-slider {
    max-width: 100%;
    width: 100%;
  }
  .promo-slide.active {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 2.5rem;
    justify-content: center;
  }

  .promo-img-stack {
    width: 65%;
    max-width: 65%;
    min-width: 0;
    height: 32vw;
    min-height: 250px;
    max-height: 450px;
    /* İstersen burada da margin-left ekleyebilirsin */
    /* margin-left: 1vw; */
  }
  .promo-content {
    width: 35%;
    max-width: 400px;
    min-width: 220px;
    height: 32vw;
    min-height: 250px;
    max-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 0.5rem;

    /* Tema özellikleri buraya taşındı */
    background: linear-gradient(135deg, #f7f3f0 80%, #ede0d4 100%);
    border: 1.5px solid #e0d3c3;
    border-radius: 18px;
    padding: 1.5rem 1.2rem;
    box-sizing: border-box;
    overflow-y: auto;
  }
  .promo-title {
    font-size: 1.7rem;
    color: #6d4c3d;
    font-weight: 900;
    margin-bottom: 0.9rem;
    letter-spacing: 0.04em;
    line-height: 1.15;
    text-align: left;
    background: linear-gradient(90deg, #b89b8c 30%, #6d4c3d 100%);
    -webkit-background-clip: text;
    background-clip: text; /* Standart özellik eklendi */
    -webkit-text-fill-color: transparent;
  }
  .promo-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #b89b8c 0%, #d2bfae 100%);
    border-radius: 2px;
    margin: 0.8rem 0 1rem 0;
  }
  .promo-desc {
    color: #7a5c4b;
    font-size: 1.08rem;
    line-height: 1.6;
    text-align: justify;
    font-weight: 500;
    letter-spacing: 0.01em;
  }
}