:root {
  --primary-color: var(--primary-color);
  --primary-light: #f8bbd0;
  --primary-dark: var(--primary-dark);
  --secondary-color: #2e7d32;
  --accent-color: #fbc02d;
  --text-main: #333333;
  --text-muted: #666666;
  --bg-light: #fff5f8;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.8);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--site-font, 'Outfit'), sans-serif;
}

body {
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Base Layout */
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease forwards;
}

/* ==============================
   PREMIUM HEADER (CICEKMARKET STYLE)
============================== */
:root {
  --header-magenta: var(--primary-color);
  /* O meşhur mor/pembe tonu */
  --header-gray: #777;
  --search-border: #ddd;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
}

/* Üst Segment */
.header-top-bar {
  background: #fff;
  padding: 15px 0 10px;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  max-height: 55px;
  width: auto;
}

/* Arama Alanı */
.header-search {
  flex: 0 1 500px;
  margin: 0 40px;
}

.search-input-group,
.search-box-wrap {
  display: flex;
  position: relative;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.header-search-input {
  flex: 1;
  border: none;
  padding: 10px 15px;
  font-size: 13px;
  color: #333;
}

.header-search-input:focus {
  outline: none;
}

.header-search-btn {
  background: #e0e0e0;
  border: none;
  border-left: 1px solid #ddd;
  padding: 0 15px;
  color: #888;
  cursor: pointer;
  transition: background 0.2s;
}

.header-search-btn:hover {
  background: #d0d0d0;
}

.header-search-hints {
  font-size: 11px;
  color: #999;
  margin-top: 5px;
}

.header-search-hints span {
  font-weight: bold;
  color: #444;
}

.header-search-hints a {
  color: #0088cc;
  text-decoration: none;
  margin-left: 3px;
}

.header-search-hints a:hover {
  text-decoration: underline;
}

/* Sağ Butonlar */
.header-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hdr-action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.hdr-action-btn i {
  font-size: 22px;
}

.hdr-action-btn:hover {
  color: var(--header-magenta);
}

.hdr-icon-wrap {
  font-size: 22px;
  color: #444;
  position: relative;
  display: inline-block;
  line-height: 1;
}

.cart-badge {
  background: var(--header-magenta);
  color: #fff;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 10px;
  position: absolute;
  top: -5px;
  right: -10px;
}

/* Alt Segment (Menü Barı) */
.header-mega-bar {
  background: var(--primary-color, var(--header-magenta, #db2777));
  box-shadow: 0 4px 10px rgba(219, 39, 119, 0.15);
  width: 100%;
}

.mega-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}

.mega-item {
  position: relative;
  flex: 1 1 auto;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.mega-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.mega-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.mega-top-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: all 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.mega-top-link i {
  font-size: 15px;
  opacity: 0.95;
}

.mega-item:hover .mega-top-link,
.mega-item.active .mega-top-link {
  background: rgba(0, 0, 0, 0.18);
  color: #ffffff;
}

.mega-arrow {
  font-size: 10px;
  margin-left: 3px;
  opacity: 0.85;
}

/* Dropdown */
.mega-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 250px;
  max-width: 320px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  padding: 8px 6px;
  border-top: 3px solid var(--primary-color, #db2777);
  border-radius: 0 0 12px 12px;
  z-index: 1005;
  flex-direction: column;
  gap: 2px;
}

.mega-item {
  position: relative;
}

.mega-item:hover > .mega-dropdown {
  display: flex !important;
}

.mega-link {
  display: flex !important;
  align-items: center;
  padding: 9px 14px;
  color: #334155 !important;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.mega-link:hover {
  background: #fdf2f8 !important;
  color: var(--primary-color, #db2777) !important;
  padding-left: 18px !important;
}

/* Hero ve Sayfa İteleme */
body {
  padding-top: 135px; /* Fixed header compensation */
}

@media (max-width: 992px) {
  .header-search {
    display: none;
  }

  .header-actions {
    gap: 15px;
  }

  body {
    padding-top: 120px;
  }
}

@media (max-width: 768px) {
  .header-mega-bar {
    display: none;
  }

  .header-mega-bar.open {
    display: block;
    position: absolute;
    width: 100%;
    top: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
  }

  .header-mega-bar.open .mega-top-link {
    color: #333;
    border-bottom: 1px solid #eee;
  }

  .header-mega-bar.open .mega-dropdown {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border: none;
    padding: 10px 20px;
  }
}



/* ==============================
   Kategori Bölümleri
============================== */

/* Öne Çıkan Kategoriler (4 Büyük Kart) */
.featured-cats-section {
  padding: 30px 0 10px;
}

.featured-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.featured-cat-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  text-decoration: none;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

.featured-cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.featured-cat-card:hover img {
  transform: scale(1.06);
}

.featured-cat-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fce7f3, #f9a8d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary-color);
}

.featured-cat-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 15px 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.featured-cat-badge {
  background: var(--primary-color);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.featured-cat-overlay h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Story Kategoriler (Yuvarlak İkonlar) */
.story-cats-section {
  padding: 0;
  margin-top: 30px;
  margin-bottom: 35px;
  position: relative;
}

.story-cats-box {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 22px 25px;
  position: relative;
}

.story-cats-wrapper {
  overflow: hidden;
  margin: 0 35px;
}

.story-cats-scroll {
  display: flex;
  gap: 28px;
  justify-content: center;
  overflow-x: auto;
  padding: 4px 5px;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.story-cats-scroll::-webkit-scrollbar {
  display: none;
}

.story-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}

.story-nav:hover {
  background: var(--primary-color, #d63384);
  border-color: var(--primary-color, #d63384);
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
}

.prev-story {
  left: 10px;
}

.next-story {
  right: 10px;
}

.story-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.story-cat-item:hover {
  transform: translateY(-4px);
}

.story-cat-circle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  padding: 2.5px;
  background: linear-gradient(135deg, #f43f5e 0%, #ec4899 50%, #d946ef 100%);
  box-shadow: 0 4px 12px rgba(214, 51, 132, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-cat-item:hover .story-cat-circle {
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(214, 51, 132, 0.3);
}

.story-cat-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #fff;
}

.story-cat-icon {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #fdf2f8 100%);
  border-radius: 50%;
  border: 2.5px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color, #d63384);
  transition: all 0.3s ease;
}

.story-cat-item:hover .story-cat-icon {
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
  color: var(--primary-dark, #be185d);
}

.story-cat-item span {
  font-size: 12.5px;
  color: #334155;
  font-weight: 600;
  text-align: center;
  max-width: 90px;
  line-height: 1.25;
  transition: color 0.2s ease;
}

.story-cat-item:hover span {
  color: var(--primary-color, #d63384);
}

@media (max-width: 768px) {
  .featured-cats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .featured-cat-overlay h3 {
    font-size: 0.85rem;
  }
}

/* Hero Section */
/* Premium Hero Layout */

.premium-hero {
  padding-top: 15px;
  background: #f8f9fa;
  padding-bottom: 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: stretch;
  /* Nesnelerin boylarını eşitler */
}

/* Slider (Left Side) */
.slider-container {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(214, 51, 132, 0.15);
  /* Hafif pembe gölge */
  height: 100%;
  min-height: 450px;
  position: relative;
  padding: 4px;
  /* Glow efekti için alan */
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-color));
  background-size: 200% auto;
  animation: borderFlow 4s linear infinite;
}

@keyframes borderFlow {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.slider-wrapper {
  height: 100%;
  position: relative;
  background: #fff;
  border-radius: 8px;
  /* İçteki beyaz alanı yumuşat */
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
  background: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/* Split Layout (Yazı Sol / Resim Sağ) */
.slide.split-slide img {
  width: 45%;
  /* %50'den %45'e düşürüldü */
  height: 90%;
  /* Tam boy yerine %90 yapılarak üstten-alttan boşluk verildi */
  object-fit: contain;
  position: absolute;
  right: 2%;
  /* Sağ kenardan az bir boşluk */
  top: 50%;
  /* Ortalamak için */
  transform: translateY(-50%);
  z-index: 1;
}

.slide.split-slide .slide-content {
  position: absolute;
  /* Göreceli yerine mutlak konuma geri çektik */
  left: 6%;
  /* Sol köşeye sabitlendi */
  bottom: 15%;
  /* Alt köşeye sabitlendi */
  z-index: 10;
  max-width: 45%;
  background: transparent;
  backdrop-filter: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Tüm içeriği sola hizalar */
}

/* Full Layout (Tam Boy Hazır Afiş) */
.slide.full-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Resmi kutuyu tam dolduracak şekilde büyütür ve kesmez */
}

.slide.full-slide .slide-content {
  position: absolute;
  left: 6%;
  bottom: 15%;
  background: rgba(255, 255, 255, 0.7);
  padding: 20px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  z-index: 10;
}

.slide-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ff3e3e;
  /* Parlak Kırmızı */
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
}

.slide-btn {
  display: inline-block;
  padding: 8px 18px;
  /* Daha küçük buton */
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  font-size: 0.95rem;
  /* Font küçültüldü */
  margin-top: 15px;
  /* Üstteki yazıdan boşluk */
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(214, 51, 132, 0.2);
}

.slide-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(214, 51, 132, 0.3);
}

.slide-info {
  font-size: 1rem;
  font-weight: 500;
  color: #555;
  /* Biraz daha yumuşak renk */
  line-height: 1.4;
}

.slide-info span {
  border-bottom: none;
  /* Altındaki çizgiyi kaldırdık */
  display: block;
}

/* Sidebar (Right Side) */
.hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-box {
  background: #fff;
  padding: 4px;
  /* Glow/Border alanı */
  border-radius: 12px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-color));
  background-size: 200% auto;
  animation: borderFlow 6s linear infinite;
  /* Biraz daha yavaş aksın */
  box-shadow: 0 0 20px rgba(214, 51, 132, 0.2), 0 0 10px rgba(214, 51, 132, 0.1);
  overflow: hidden;
}

.sidebar-box-inner {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  height: 100%;
}

.sidebar-box-inner h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.sidebar-box-inner p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.custom-select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Features Grid (Reverted to clean style) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature-item {
  background: #fff;
  padding: 15px 12px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  border: 1px solid rgba(214, 51, 132, 0.1);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(214, 51, 132, 0.15);
  border-color: var(--primary-color);
}

.feature-item i {
  font-size: 1.6rem;
  color: var(--primary-color);
  min-width: 35px;
  text-align: center;
}

.feature-item div {
  display: flex;
  flex-direction: column;
}

.feature-item strong {
  font-size: 0.85rem;
  color: #333;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
}

.feature-item span {
  font-size: 0.8rem;
  color: #888;
}

.feature-item div {
  display: flex;
  flex-direction: column;
}

.feature-item strong {
  font-size: 0.85rem;
  color: #333;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
}

.feature-item span {
  font-size: 0.8rem;
  color: #888;
}

@media (max-width: 1200px) {
  .slide-title {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .slider-container {
    height: 350px;
    min-height: 350px;
  }
}

.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-inline: auto;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(214, 51, 132, 0.4);
}

.btn:hover {
  transform: translateY(-3px);
  background: var(--primary-dark);
  box-shadow: 0 8px 25px rgba(214, 51, 132, 0.6);
}

/* Features/Products Section */
.section {
  padding: 40px 0 100px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

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

.card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

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

.card-img,
.product-card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  height: auto;
  overflow: hidden;
  background: #ffffff;
}

.card-img img,
.product-card-img img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  max-width: none !important;
  max-height: none !important;
  transition: var(--transition);
}

.card:hover .card-img img,
.product-card:hover .product-card-img img {
  transform: scale(1.06);
}

.card-body {
  padding: 25px;
}

.card-body h3 {
  margin-bottom: 10px;
  color: var(--primary-dark);
}

/* Old footer rules removed in favor of .orkide-footer */

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 40px 0;
}

.social-btn {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-btn:hover {
  transform: translateY(-5px) scale(1.1);
  color: #fff;
}

.social-btn.facebook:hover {
  background: #1877F2;
  box-shadow: 0 8px 15px rgba(24, 119, 242, 0.4);
}

.social-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 8px 15px rgba(220, 39, 67, 0.4);
}

.social-btn.youtube:hover {
  background: #FF0000;
  box-shadow: 0 8px 15px rgba(255, 0, 0, 0.4);
}

.social-btn.x-twitter:hover {
  background: #000;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.social-btn.whatsapp:hover {
  background: #25D366;
  box-shadow: 0 8px 15px rgba(37, 211, 102, 0.4);
}

.social-btn.phone:hover {
  background: #3498db;
  box-shadow: 0 8px 15px rgba(52, 152, 219, 0.4);
}

.social-btn.email:hover {
  background: #555;
  box-shadow: 0 8px 15px rgba(85, 85, 85, 0.4);
}

/* Floating Contact Group (Mobile Friendly) */
.sticky-social-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column-reverse;
  /* Buton en altta, diğerleri yukarı açılsın */
  gap: 12px;
  z-index: 9999;
  padding: 12px;
}

.sticky-social-bar .social-btn {
  width: 50px;
  height: 0;
  overflow: hidden;
  background: #fff;
  color: #333;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: none;
  font-size: 1.4rem;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-social-bar.active .social-btn:not(.social-trigger) {
  height: 50px;
}

/* Ana Tetikleyici Buton (+) */
.social-trigger {
  width: 60px;
  height: 60px !important;
  overflow: visible !important;
  background: var(--primary-color) !important;
  color: #fff !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(214, 51, 132, 0.4) !important;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.4s ease;
  font-size: 1.8rem;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.sticky-social-bar.active .social-trigger {
  transform: rotate(135deg);
  /* Artıdan Çarpıya */
  background: #333 !important;
}

.sticky-social-bar.active .social-btn:not(.social-trigger) {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Sıralı Gecikme (Staggered Animation) */
.sticky-social-bar.active .social-btn:nth-child(2) {
  transition-delay: 0.05s;
}

.sticky-social-bar.active .social-btn:nth-child(3) {
  transition-delay: 0.1s;
}

.sticky-social-bar.active .social-btn:nth-child(4) {
  transition-delay: 0.15s;
}

.sticky-social-bar.active .social-btn:nth-child(5) {
  transition-delay: 0.2s;
}

.sticky-social-bar.active .social-btn:nth-child(6) {
  transition-delay: 0.25s;
}

.sticky-social-bar.active .social-btn:nth-child(7) {
  transition-delay: 0.3s;
}

.sticky-social-bar.active .social-btn:nth-child(8) {
  transition-delay: 0.35s;
}

.sticky-social-bar .social-btn:hover {
  color: #fff;
  transform: scale(1.1);
}


/* Obsolete footer-bottom and footer-links removed */

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1001;
  transition: transform 0.3s ease;
}

@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: block;
  }

  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 100px 40px;
    gap: 30px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  nav ul.active {
    right: 0;
  }

  nav ul li a {
    font-size: 1.2rem;
    font-weight: 600;
  }

  header .btn {
    display: none;
    /* Mobilde butonu menü içine alabiliriz veya direkt gizleyebiliriz */
  }
}

/* ==========================================================================
   BÖLGELER (HANGİ BÖLGEDE ÇİÇEK ARIYORSUNUZ?) SECTION
   ========================================================================== */
.regions-section {
  background: #ffffff;
  padding: 60px 0 50px;
  border-top: 1px solid #f1f5f9;
  text-align: center;
}

.regions-header h2 {
  font-size: 26px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.regions-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto 25px;
}

.region-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: #ffffff;
  color: #334155;
  border: 1.5px solid #e2e8f0;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.region-pill i {
  color: var(--primary-color, #d63384);
  font-size: 13px;
  transition: transform 0.2s;
}

.region-pill:hover {
  background: #fdf2f8;
  border-color: var(--primary-color, #d63384);
  color: var(--primary-color, #d63384);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(214, 51, 132, 0.12);
}

.region-pill:hover i {
  transform: scale(1.15);
}

.regions-subtext {
  font-size: 13px;
  color: #94a3b8;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   ORKIDE MODERN MULTI-COLUMN FOOTER & CONTACT SECTION
   ========================================================================== */
/* ==========================================================================
   ORKIDE FOOTER (MATCHING GÜL THEME STRUCTURE & COMPACT CONTACT ALIGNMENT)
   ========================================================================== */
.orkide-footer {
  background: linear-gradient(180deg, #181622 0%, #0d0b13 100%) !important;
  color: #e2e8f0 !important;
  padding: 60px 0 25px !important;
  margin-top: 50px !important;
  border-top: 4px solid var(--primary-color, #d63384) !important;
  text-align: left !important;
}

.orkide-footer-grid {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1.5fr !important;
  gap: 40px !important;
  margin-bottom: 50px !important;
  text-align: left !important;
}

@media (max-width: 992px) {
  .orkide-footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
  }
}

@media (max-width: 576px) {
  .orkide-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }
}

.orkide-footer-about {
  text-align: left !important;
}

.orkide-footer-about h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 15px 0 !important;
  text-align: left !important;
}

.orkide-footer-about p {
  font-size: 13.5px !important;
  color: #94a3b8 !important;
  line-height: 1.7 !important;
  margin: 0 0 20px 0 !important;
  text-align: left !important;
}

.orkide-social-links {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 15px !important;
}

.orkide-social-links a {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  font-size: 14px !important;
  transition: all 0.25s ease !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.orkide-social-links a:hover {
  background: var(--primary-color, #d63384) !important;
  color: #ffffff !important;
  border-color: var(--primary-color, #d63384) !important;
  transform: translateY(-2px) !important;
}

.orkide-footer-col {
  text-align: left !important;
}

.orkide-footer-col h4 {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 20px 0 !important;
  position: relative !important;
  padding-bottom: 10px !important;
  text-align: left !important;
}

.orkide-footer-col h4::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 35px !important;
  height: 2px !important;
  background: var(--primary-color, #d63384) !important;
}

.orkide-footer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 10px !important;
  text-align: left !important;
}

.orkide-footer-links li {
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  width: 100% !important;
}

.orkide-footer-links a {
  color: #94a3b8 !important;
  text-decoration: none !important;
  font-size: 13.5px !important;
  transition: all 0.2s ease !important;
  text-align: left !important;
  display: inline-block !important;
}

.orkide-footer-links a:hover {
  color: #fbcfe8 !important;
  padding-left: 6px !important;
}

.orkide-footer-contact {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  text-align: left !important;
}

.orkide-contact-row {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  font-size: 13.5px !important;
  color: #94a3b8 !important;
  text-align: left !important;
}

.orkide-contact-row i {
  color: var(--primary-color, #d63384) !important;
  font-size: 16px !important;
  margin-top: 3px !important;
  flex-shrink: 0 !important;
}

.orkide-contact-row div {
  text-align: left !important;
  font-size: 13.5px !important;
  line-height: 1.45 !important;
}

.orkide-contact-row strong {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
}

.orkide-contact-row a {
  color: #fbcfe8 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.orkide-contact-row a:hover {
  color: #ffffff !important;
}

.orkide-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-top: 25px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 15px !important;
  font-size: 13px !important;
  color: #64748b !important;
  text-align: left !important;
}

.orkide-sitemap-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  padding: 5px 14px !important;
  border-radius: 50px !important;
  font-size: 12px !important;
  color: #e2e8f0 !important;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  transition: all 0.25s !important;
}

.orkide-sitemap-btn:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  color: #ffffff !important;
}

.orkide-footer-credit a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  opacity: 0.85 !important;
  transition: opacity 0.2s ease !important;
}

.orkide-footer-credit a:hover {
  opacity: 1 !important;
}

/* ==========================================================================
   GLOBAL PRODUCT CARD QUICK ACTIONS (HIZLI SİPARİŞ & İNCELE)
   ========================================================================== */
.pro-card-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 6px !important;
  margin-top: 10px !important;
  width: 100% !important;
}

.pro-btn-buy {
  background: var(--primary-color, #d63384) !important;
  color: #ffffff !important;
  font-size: 11.5px !important;
  font-weight: 800 !important;
  padding: 8px 6px !important;
  border-radius: 8px !important;
  border: none !important;
  text-decoration: none !important;
  text-align: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
}

.pro-btn-buy:hover {
  filter: brightness(0.9) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

.pro-btn-view {
  background: #f1f5f9 !important;
  color: #334155 !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  padding: 8px 6px !important;
  border-radius: 8px !important;
  border: 1px solid #e2e8f0 !important;
  text-decoration: none !important;
  text-align: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  transition: all 0.2s ease !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
}

.pro-btn-view:hover {
  background: #e2e8f0 !important;
  color: #0f172a !important;
  transform: translateY(-1px) !important;
}