@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon/icomoon.eot?srf3rx");
  src: url("../fonts/icomoon/icomoon.eot?srf3rx#iefix") format("embedded-opentype"), url("../fonts/icomoon/icomoon.ttf?srf3rx") format("truetype"), url("../fonts/icomoon/icomoon.woff?srf3rx") format("woff"), url("../fonts/icomoon/icomoon.svg?srf3rx#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* =======================================================
*  GeMarkt Brand Colors - Marka Renkleri
* ======================================================= */
:root {
  /* Ana GeMarkt Kırmızısı - Primary Red */
  --gemarkt-red: #FF1F1F;
  --gemarkt-red-dark: #CC0000;
  --gemarkt-red-darker: #990000;
  --gemarkt-red-light: #FF4444;
  --gemarkt-red-lighter: #FF6666;

  /* Gradient Variations */
  --gemarkt-gradient-primary: linear-gradient(135deg, #FF1F1F 0%, #CC0000 50%, #990000 100%);
  --gemarkt-gradient-light: linear-gradient(135deg, #FF4444 0%, #FF1F1F 50%, #CC0000 100%);
  --gemarkt-gradient-subtle: linear-gradient(90deg, #FF1F1F, #CC0000);

  /* Supporting Colors */
  --gemarkt-black: #000000;
  --gemarkt-white: #FFFFFF;
  --gemarkt-gray: #5a5a5a;
  --gemarkt-light-gray: #fafafa;

  /* Opacity Variants for backgrounds */
  --gemarkt-red-10: rgba(255, 31, 31, 0.1);
  --gemarkt-red-20: rgba(255, 31, 31, 0.2);
  --gemarkt-red-30: rgba(255, 31, 31, 0.3);
}

/* =======================================================
*  Ana tema stilleri - burası başlangıç noktası
*  Her şey buradan başlıyor işte
* ======================================================= */
html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  color: #5a5a5a;
  background: #fafafa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

#page {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  opacity: 1 !important;
  /* Opacity'yi 1'de tut, loader vs hiçbir şey değiştiremesin */
  visibility: visible !important;
  /* Görünürlüğü de garantile */
  /* Transition'ı sadece transform ve background-color için kullan, opacity için ASLA */
  -webkit-transition-property: transform, background-color;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -o-transition-property: transform, background-color;
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease;
  transition-property: transform, background-color;
  transition-duration: 0.5s;
  transition-timing-function: ease;
}

.offcanvas #page {
  overflow: hidden;
  position: absolute;
}

.offcanvas #page:after {
  -webkit-transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
  -o-transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
  transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1900;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  content: "";
  opacity: 1;
}

a {
  color: var(--gemarkt-red);
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover,
a:active,
a:focus {
  color: var(--gemarkt-red-dark);
  outline: none;
  text-decoration: none;
}

p {
  margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
figure {
  color: #1a1a1a;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.75rem;
  font-weight: 600;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

::-webkit-selection {
  color: #fff;
  background: var(--gemarkt-red);
}

::-moz-selection {
  color: #fff;
  background: var(--gemarkt-red);
}

::selection {
  color: #fff;
  background: var(--gemarkt-red);
}

.fh5co-nav {
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10001 !important;
  margin: 0;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.fh5co-nav.scrolled {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
}

body.mobile-filter-open .fh5co-nav.scrolled {
  z-index: 99998 !important;
  display: none !important;
}

/* Navbar row layout - Logo sol, menü orta, butonlar sağ */
.fh5co-nav .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.fh5co-nav .container .row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  margin: 0 !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.fh5co-nav .col-md-3:first-child {
  flex: 0 0 auto !important;
  margin-right: auto !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  order: 1;
  min-width: 0;
  max-width: 25%;
  position: relative;
  z-index: 1;
}

.fh5co-nav .col-md-6.menu-1 {
  flex: 1 1 auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  order: 2;
  margin: 0 auto;
  padding: 0 !important;
  min-width: 0;
  max-width: 50%;
  position: relative;
  z-index: 1;
  overflow: visible;
  box-sizing: border-box;
}

.fh5co-nav .col-md-3.text-right {
  flex: 0 0 auto !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  padding-right: 0 !important;
  order: 3;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  min-width: 0;
  max-width: 25%;
  position: relative;
  z-index: 1;
  overflow: visible;
  box-sizing: border-box;
}

.fh5co-nav .col-md-3.text-right>div {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 12px !important;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  flex-wrap: nowrap;
  overflow: visible;
  box-sizing: border-box;
}

/* Desktop (1025px+) - Normal menü görünür, hamburger gizli */
@media (min-width: 1025px) {
  .fh5co-nav-toggle {
    display: none !important;
  }

  .hamburger-container {
    display: none !important;
  }

  .fh5co-nav .menu-1 {
    display: flex !important;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
  }

  .fh5co-nav .col-md-6.menu-1 {
    display: flex !important;
    overflow: visible;
    box-sizing: border-box;
  }

  .fh5co-nav .menu-1 ul {
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
  }

  .fh5co-nav .col-md-3.text-right {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: auto !important;
    text-align: right !important;
    padding-right: 0 !important;
  }
}

/* Medium desktop (1025px - 1400px) - telefon numarası ve layout optimizasyonu */
@media (min-width: 1025px) and (max-width: 1400px) {
  .fh5co-nav .col-md-3:first-child {
    max-width: 20%;
  }

  .fh5co-nav .col-md-6.menu-1 {
    max-width: 50%;
    flex: 1 1 50% !important;
    overflow: visible;
    box-sizing: border-box;
  }

  .fh5co-nav .menu-1 {
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
    padding: 6px 12px;
  }

  .fh5co-nav .menu-1 ul {
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
    gap: 2px;
    flex-wrap: nowrap;
  }

  .fh5co-nav .menu-1 ul li {
    flex-shrink: 1;
    min-width: 0;
  }

  .fh5co-nav .col-md-3.text-right {
    max-width: 30%;
    flex: 0 0 30% !important;
  }

  .fh5co-nav .col-md-3.text-right>div {
    gap: 8px !important;
    flex-wrap: nowrap;
  }

  .hero-contact-box {
    max-width: 140px;
    padding: 6px 8px 6px 6px !important;
  }

  .hero-contact-box .contact-text {
    font-size: 10px;
    max-width: 100px;
    display: inline-block;
    letter-spacing: 0.1px;
  }

  .hero-contact-box i {
    font-size: 12px;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .nav-utility {
    gap: 6px !important;
    padding: 4px 4px 4px 8px !important;
  }

  .nav-utility .product-search-btn-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 14px !important;
  }

  .language-dropdown-trigger {
    padding: 6px 8px 6px 6px;
    font-size: 11px;
  }

  .fh5co-nav .menu-1 ul li a {
    font-size: 12px;
    padding: 8px 10px;
    white-space: nowrap;
  }

  /* Dropdown'ların görünmesi için */
  .fh5co-nav ul li.has-dropdown {
    overflow: visible !important;
  }

  .fh5co-nav ul li.has-dropdown .dropdown {
    z-index: 100000 !important;
    position: absolute !important;
    overflow: visible !important;
  }
}

/* Özel optimizasyon 1200px - 1300px arası (telefon numarası sorunu için) */
@media (min-width: 1200px) and (max-width: 1300px) {
  .hero-contact-box {
    max-width: 130px;
    padding: 6px 6px 6px 6px !important;
  }

  .hero-contact-box .contact-text {
    font-size: 9px;
    max-width: 90px;
    letter-spacing: 0;
  }

  .hero-contact-box i {
    font-size: 11px;
    width: 20px;
    height: 20px;
  }

  .fh5co-nav .col-md-3.text-right>div {
    gap: 6px !important;
  }
}

/* Tablet responsive (769px - 1024px) - Hamburger menü kullan */
@media (min-width: 769px) and (max-width: 1024px) {
  .fh5co-nav {
    padding: 15px 0 !important;
    position: relative !important;
  }

  .fh5co-nav-toggle {
    display: block !important;
    z-index: 2001 !important;
  }

  .hamburger-container {
    display: flex !important;
  }

  /* Hamburger menü görünür */
  .fh5co-nav .row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  /* Logo column */
  .fh5co-nav .col-md-3.col-xs-2:first-child {
    flex: 0 0 auto;
    width: auto !important;
    max-width: none !important;
    padding: 0 15px;
    position: relative !important;
    z-index: 10;
    order: 1;
    margin-right: auto;
  }

  /* Hamburger container */
  .fh5co-nav .col-xs-2.hamburger-container {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 15px !important;
    position: relative !important;
    z-index: 10 !important;
    order: 3 !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  /* Menü gizle */
  .fh5co-nav .col-md-6.col-xs-6,
  .fh5co-nav .col-xs-6,
  .fh5co-nav .menu-1,
  .fh5co-nav .menu-2 {
    display: none !important;
  }

  /* Sağ taraf butonlar - ortada */
  .fh5co-nav .col-md-3.col-xs-4.text-right,
  .fh5co-nav .col-xs-4.text-right {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto !important;
    text-align: center !important;
    padding: 0;
    z-index: 100;
    flex: 0 0 auto;
    order: 2;
    max-width: none !important;
  }

  .fh5co-nav #fh5co-logo {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
    position: relative;
    z-index: 10;
  }
}

/* Mobile responsive (max-width: 768px) */
@media screen and (max-width: 768px) {
  .fh5co-nav {
    padding: 20px 0;
  }
}

.fh5co-nav #fh5co-logo {
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1.5;
  display: flex;
  align-items: center;
  height: 100%;
}

.fh5co-nav #fh5co-logo a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
}

.fh5co-nav #fh5co-logo img {
  height: 45px;
  width: auto;
  display: block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.fh5co-nav #fh5co-logo:hover img {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* Responsive logo sizing */
@media (max-width: 1024px) {
  .fh5co-nav #fh5co-logo img {
    height: 38px;
  }
}

@media (max-width: 768px) {
  .fh5co-nav #fh5co-logo img {
    height: 35px;
  }
}

.fh5co-nav #fh5co-logo:hover {
  transform: translateY(-1px);
}

.fh5co-nav a {
  padding: 5px 10px;
  color: #000;
}

@media screen and (max-width: 768px) {

  .fh5co-nav .menu-1,
  .fh5co-nav .menu-2 {
    display: none !important;
  }

  /* Mobilde flexbox stillerini sıfırla */
  .fh5co-nav .menu-1 ul {
    display: none !important;
  }

  .fh5co-nav .menu-1 ul li {
    display: none !important;
  }

  .fh5co-nav .menu-1 ul li.has-dropdown {
    display: none !important;
  }

  /* Mobilde dropdown stillerini sıfırla */
  .fh5co-nav ul li.has-dropdown .dropdown {
    display: none !important;
  }
}

.fh5co-nav .menu-2 li.search {
  float: left;
  width: 83%;
  font-family: "Playfair Display", serif;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding: 0;
  margin: -5px 0 0 0;
}

.fh5co-nav .menu-2 li input[type=text] {
  padding: 6px 10px;
  width: 40%;
  border: none;
  float: right;
  font-size: 13px;
  margin-top: 4px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.fh5co-nav .menu-2 li input[type=text]:focus {
  width: 100%;
  outline: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.fh5co-nav .menu-2 li button {
  margin-top: 4px;
  padding: 5px;
  background: transparent;
  border: none;
}

.fh5co-nav .menu-2 li button i {
  color: rgba(0, 0, 0, 0.5);
}

.fh5co-nav .menu-2 li button:hover,
.fh5co-nav .menu-2 li button:focus {
  background: transparent !important;
}

.fh5co-nav .menu-2 li button:hover i,
.fh5co-nav .menu-2 li button:focus i {
  color: black;
}

.fh5co-nav .menu-2 li.shopping-cart {
  float: right;
}

.fh5co-nav .menu-2 li a.cart {
  color: black;
}

.fh5co-nav .menu-2 li a.cart span {
  position: relative;
}

.fh5co-nav .menu-2 li a.cart span small {
  position: absolute;
  top: -20px;
  right: -15px;
  padding: 10px 6px;
  line-height: 0;
  font-size: 11px;
  background: var(--gemarkt-red);
  color: white;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.fh5co-nav ul {
  padding: 0;
  margin: 0;
}

.fh5co-nav .menu-1 {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(124, 93, 255, 0.2);
  box-shadow: 0 4px 20px rgba(124, 93, 255, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
  box-sizing: border-box;
  max-width: 100%;
}

.fh5co-nav .menu-1:hover {
  box-shadow: 0 6px 28px rgba(124, 93, 255, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  border-color: rgba(124, 93, 255, 0.3);
}

.fh5co-nav .menu-1 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  height: 100%;
  gap: 4px;
  overflow: visible;
  box-sizing: border-box;
  max-width: 100%;
}

.fh5co-nav .menu-1 ul li.has-dropdown ul.dropdown,
.fh5co-nav ul li.has-dropdown ul.dropdown {
  display: block !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  flex: none !important;
}

.fh5co-nav ul li.has-dropdown .dropdown>* {
  display: block !important;
  width: 100% !important;
}

.fh5co-nav ul li {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-block;
  font-family: "Montserrat", Arial, sans-serif;
}

.fh5co-nav .menu-1 ul li {
  display: inline-flex;
  align-items: center;
  height: 100%;
  vertical-align: middle;
}

.fh5co-nav .menu-1 ul li.has-dropdown {
  display: inline-flex;
  align-items: center;
  height: 100%;
  position: relative;
}

.fh5co-nav .menu-1 ul li.has-dropdown .dropdown {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  display: block !important;
  flex-direction: column !important;
}

.fh5co-nav .menu-1 ul li.has-dropdown .dropdown li {
  display: block !important;
  height: auto !important;
  min-height: auto !important;
  width: 100% !important;
  flex: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
}

.fh5co-nav .menu-1 ul li.has-dropdown .dropdown ul {
  display: block !important;
  flex-direction: column !important;
}

.fh5co-nav ul li a {
  font-size: 14px;
  padding: 10px 16px;
  text-transform: uppercase;
  color: #4a4a4a;
  font-weight: 500;
  letter-spacing: 0.5px;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: inline-block;
  line-height: 1.5;
  border-radius: 8px;
  background: transparent;
}

.fh5co-nav ul li a:hover {
  background: rgba(248, 250, 255, 0.8);
  color: var(--gemarkt-red-light);
  transform: translateY(-1px);
  box-shadow: 0 2px 12px rgba(124, 93, 255, 0.1);
}

.fh5co-nav ul li.active>a {
  background: linear-gradient(135deg, rgba(124, 93, 255, 0.15), rgba(100, 71, 255, 0.12));
  color: var(--gemarkt-red-light);
  box-shadow: 0 2px 12px rgba(124, 93, 255, 0.15);
}

.fh5co-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gemarkt-red-light), var(--gemarkt-red-dark));
  border-radius: 2px;
  -webkit-transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fh5co-nav ul li a:hover::after,
.fh5co-nav ul li.active>a::after {
  width: calc(100% - 32px);
}

.fh5co-nav ul li a.cart {
  color: black;
}

.fh5co-nav ul li a.cart span {
  position: relative;
}

.fh5co-nav ul li a.cart span small {
  position: absolute;
  top: -20px;
  right: -15px;
  padding: 10px 6px;
  line-height: 0;
  font-size: 11px;
  background: var(--gemarkt-red);
  color: white;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.fh5co-nav ul li.has-dropdown {
  position: relative;
  z-index: 100;
  /* Düşürüldü - ürünlerin üzerine gelmesin */
  overflow: visible;
}

.fh5co-nav ul li.has-dropdown .dropdown {
  min-width: 220px;
  width: auto;
  max-width: 400px;
  box-shadow: 0 25px 60px rgba(124, 93, 255, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset,
    0 4px 20px rgba(124, 93, 255, 0.12);
  z-index: 1000;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  text-align: left;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(124, 93, 255, 0.2);
  padding: 8px;
  border-radius: 20px;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(-10px);
  margin-top: 8px;
  display: none !important;
  flex-direction: column !important;
  list-style: none !important;
  overflow: visible;
  min-height: auto !important;
  height: auto !important;
  max-height: none !important;
  pointer-events: none !important;
  position: relative;
}

.fh5co-nav ul li.has-dropdown .dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(124, 93, 255, 0.4), rgba(100, 71, 255, 0.4), transparent);
  border-radius: 20px 20px 0 0;
}

.fh5co-nav ul li.has-dropdown .dropdown::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(124, 93, 255, 0.02), rgba(100, 71, 255, 0.01));
  pointer-events: none;
  border-radius: 20px;
}

/* Dropdown kapalıyken içindeki TÜM elementler tıklanabilir olmasın */
.fh5co-nav ul li.has-dropdown .dropdown[style*="display: none"],
.fh5co-nav ul li.has-dropdown .dropdown[style*="visibility: hidden"],
.fh5co-nav ul li.has-dropdown .dropdown:not([style*="display: block"]):not([style*="visibility: visible"]) {
  pointer-events: none !important;
}

.fh5co-nav ul li.has-dropdown .dropdown[style*="display: none"] *,
.fh5co-nav ul li.has-dropdown .dropdown[style*="visibility: hidden"] *,
.fh5co-nav ul li.has-dropdown .dropdown:not([style*="display: block"]):not([style*="visibility: visible"]) * {
  pointer-events: none !important;
  cursor: default !important;
}

/* Dropdown'u hem link hem de dropdown üzerine gelince açık tut */
/* :hover ve :has() kombinasyonu köprü geçişlerinin sorunsuz olmasını sağlar */
/* dropdown-closed class'ı varsa hover'ı devre dışı bırak */
.fh5co-nav ul li.has-dropdown:not(.dropdown-closed):hover .dropdown,
.fh5co-nav ul li.has-dropdown:not(.dropdown-closed):has(> a:hover) .dropdown,
.fh5co-nav ul li.has-dropdown:not(.dropdown-closed):has(.dropdown:hover) .dropdown {
  transform: translateY(0);
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
  pointer-events: auto !important;
  z-index: 100000 !important;
}

/* dropdown-closed class'ı varsa dropdown'u gizle */
.fh5co-nav ul li.has-dropdown.dropdown-closed .dropdown {
  visibility: hidden !important;
  opacity: 0 !important;
  display: none !important;
  pointer-events: none !important;
  z-index: 1000 !important;
}

.fh5co-nav ul li.has-dropdown:not(.dropdown-closed):hover .dropdown li,
.fh5co-nav ul li.has-dropdown:not(.dropdown-closed):has(> a:hover) .dropdown li,
.fh5co-nav ul li.has-dropdown:not(.dropdown-closed):has(.dropdown:hover) .dropdown li {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  /* Linkler tıklanabilir */
}

.fh5co-nav ul li.has-dropdown:not(.dropdown-closed):hover .dropdown li a,
.fh5co-nav ul li.has-dropdown:not(.dropdown-closed):has(> a:hover) .dropdown li a,
.fh5co-nav ul li.has-dropdown:not(.dropdown-closed):has(.dropdown:hover) .dropdown li a {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: #b0b0b0 !important;
  pointer-events: auto !important;
  /* Linkler tıklanabilir */
  cursor: pointer !important;
}

.fh5co-nav ul li.has-dropdown .dropdown:before {
  display: none;
}

.fh5co-nav ul li.has-dropdown .dropdown li {
  display: block !important;
  margin-bottom: 0 !important;
  height: auto !important;
  min-height: auto !important;
  width: 100% !important;
  float: none !important;
  clear: both !important;
  flex: none !important;
  list-style: none !important;
  padding: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
}

.fh5co-nav ul li.has-dropdown .dropdown li:last-child {
  margin-bottom: 0;
}

.fh5co-nav ul li.has-dropdown .dropdown li a {
  padding: 12px 16px !important;
  display: block !important;
  color: #1f2937 !important;
  line-height: 1.5;
  text-transform: none;
  font-size: 14px !important;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative !important;
  margin-bottom: 4px !important;
  width: 100% !important;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  background: transparent !important;
  border-radius: 12px;
  border: 1.5px solid transparent;
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
  min-height: auto !important;
  pointer-events: none;
  z-index: 1;
}

.fh5co-nav ul li.has-dropdown .dropdown li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(180deg, var(--gemarkt-red-light), var(--gemarkt-red-dark));
  transition: width 0.3s ease;
  border-radius: 12px 0 0 12px;
}

.fh5co-nav ul li.has-dropdown .dropdown li:first-child a {
  padding-top: 12px !important;
}

.fh5co-nav ul li.has-dropdown .dropdown li:last-child a {
  padding-bottom: 12px !important;
}

.fh5co-nav ul li.has-dropdown .dropdown li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gemarkt-red-light), var(--gemarkt-red-dark));
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.fh5co-nav ul li.has-dropdown .dropdown li a:hover {
  color: var(--gemarkt-red-light) !important;
  background: rgba(248, 250, 255, 0.95) !important;
  border-color: rgba(124, 93, 255, 0.2) !important;
  transform: translateX(4px);
  box-shadow: 0 2px 12px rgba(124, 93, 255, 0.1);
}

.fh5co-nav ul li.has-dropdown .dropdown li a:hover::before {
  width: 4px;
}

.fh5co-nav ul li.has-dropdown .dropdown li a:hover::after {
  width: calc(100% - 32px) !important;
}

/* Sadece li > a üzerine gelince renk değişsin */
.fh5co-nav ul li.has-dropdown:has(> a:hover)>a,
.fh5co-nav ul li.has-dropdown>a:hover,
.fh5co-nav ul li.has-dropdown:focus>a {
  background: rgba(248, 250, 255, 0.8);
  color: var(--gemarkt-red-light);
  transform: translateY(-1px);
  box-shadow: 0 2px 12px rgba(124, 93, 255, 0.1);
}

.fh5co-nav ul li .form-group {
  border: 1px solid red;
  width: 100%;
}

#fh5co-hero {
  height: 100vh;
  min-height: 100vh;
  background: #fff url(../images/loader.gif) no-repeat center center;
  position: relative;
  z-index: 1;
}

#fh5co-hero .btn {
  font-size: 18px;
  font-weight: 600;
}

#fh5co-hero .btn.btn-primary {
  padding: 16px 40px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, var(--gemarkt-red-light) 0%, var(--gemarkt-red-dark) 50%, var(--gemarkt-red-dark) 100%) !important;
  border: none !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 8px 24px rgba(124, 93, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

#fh5co-hero .btn.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

#fh5co-hero .btn.btn-primary:hover::before {
  left: 100%;
}

#fh5co-hero .btn.btn-primary:hover {
  background: linear-gradient(135deg, #8b6dff 0%, #7355ff 50%, #5f52ff 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(124, 93, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

#fh5co-hero .btn.btn-primary:active {
  transform: translateY(0) !important;
  box-shadow: 0 4px 16px rgba(124, 93, 255, 0.3) !important;
}

#fh5co-hero .flexslider {
  border: none;
  z-index: 100;
  /* loader'dan yüksek - slider her zaman görünür */
  margin-bottom: 0;
  position: relative;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  /* container overflow gizli olmalı */
}

/* owl carousel hero slider */
#fh5co-hero .hero-carousel {
  height: 100vh;
  min-height: 100vh;
}

#fh5co-hero .hero-carousel .owl-stage-outer,
#fh5co-hero .hero-carousel .owl-stage,
#fh5co-hero .hero-carousel .owl-item {
  height: 100vh;
  min-height: 100vh;
}

#fh5co-hero .hero-carousel .item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100vh;
  min-height: 100vh;
  position: relative;
}

#fh5co-hero .hero-carousel .item.slider-category-item {
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#fh5co-hero .hero-carousel .item.slider-category-item:hover {
  transform: scale(1);
}

#fh5co-hero .hero-carousel .item[data-slide-link] {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

#fh5co-hero .hero-carousel .item[data-slide-link]:hover {
  opacity: 0.95;
}

#fh5co-hero .hero-carousel .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

#fh5co-hero .hero-carousel .item .container {
  position: relative;
  z-index: 2;
  height: 100%;
}

#fh5co-hero .hero-carousel .owl-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 999px;
  border: 1.5px solid rgba(124, 93, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15),
    0 2px 8px rgba(124, 93, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

#fh5co-hero .hero-carousel .owl-dots .owl-dot {
  position: relative;
  outline: none;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#fh5co-hero .hero-carousel .owl-dots .owl-dot span {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

#fh5co-hero .hero-carousel .owl-dots .owl-dot span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(124, 93, 255, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

#fh5co-hero .hero-carousel .owl-dots .owl-dot:hover span {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.3);
  box-shadow: 0 4px 16px rgba(124, 93, 255, 0.4),
    0 0 0 3px rgba(124, 93, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

#fh5co-hero .hero-carousel .owl-dots .owl-dot:hover span::before {
  width: 200%;
  height: 200%;
}

#fh5co-hero .hero-carousel .owl-dots .owl-dot.active span {
  width: 32px;
  height: 10px;
  background: linear-gradient(135deg, var(--gemarkt-red-light) 0%, var(--gemarkt-red-dark) 50%, var(--gemarkt-red-dark) 100%);
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(124, 93, 255, 0.6),
    0 0 0 2px rgba(124, 93, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: scale(1);
}

#fh5co-hero .hero-carousel .owl-dots .owl-dot.active span::before {
  width: 0;
  height: 0;
}

#fh5co-hero .hero-carousel .owl-dots .owl-dot.active:hover span {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(124, 93, 255, 0.7),
    0 0 0 3px rgba(124, 93, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

#fh5co-hero .hero-carousel .slider-text {
  display: table;
  opacity: 1 !important;
  height: 100vh;
  min-height: 100vh;
  position: relative;
  z-index: 1;
  visibility: visible !important;
  pointer-events: none;
}

#fh5co-hero .hero-carousel .slider-text * {
  pointer-events: auto;
}

#fh5co-hero .hero-carousel .item .slider-text {
  opacity: 1 !important;
  visibility: visible !important;
}

#fh5co-hero .hero-carousel .slider-text>.slider-text-inner {
  display: table-cell;
  vertical-align: middle;
  height: 100vh;
  min-height: 100vh;
  position: relative;
  z-index: 100;
  /* loader'dan yüksek - text görünür */
  opacity: 1 !important;
  visibility: visible !important;
}

/* hero carousel text styles */
#fh5co-hero .hero-carousel .slider-text>.slider-text-inner {
  padding-left: 0;
  text-align: left;
}

@media screen and (max-width: 768px) {
  #fh5co-hero .hero-carousel .slider-text>.slider-text-inner {
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
  }
}

#fh5co-hero .hero-carousel .slider-text>.slider-text-inner h2 {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  #fh5co-hero .hero-carousel .slider-text>.slider-text-inner h2 {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }
}

#fh5co-hero .hero-carousel .slider-text>.slider-text-inner .desc {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 50px 45px;
  position: relative;
  z-index: 1;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out;
  max-width: 600px;
  margin: 0;
  display: inline-block;
  /* sol tarafa hizala */
  text-align: left;
}

@media screen and (max-width: 768px) {
  #fh5co-hero .hero-carousel .slider-text>.slider-text-inner .desc {
    padding: 30px 25px;
    max-width: 90%;
    margin: 0 auto;
    float: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#fh5co-hero .hero-carousel .slider-text>.slider-text-inner .desc .price {
  font-size: 22px;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 15px;
  color: var(--gemarkt-red);
  font-weight: 600;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  #fh5co-hero .hero-carousel .slider-text>.slider-text-inner .desc .price {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

#fh5co-hero .hero-carousel .slider-text>.slider-text-inner .desc p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 0;
  color: #5a5a5a;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  #fh5co-hero .hero-carousel .slider-text>.slider-text-inner .desc p {
    font-size: 14px;
    line-height: 1.6;
  }
}

#fh5co-hero .hero-carousel .slider-text>.slider-text-inner .btn {
  font-size: 18px;
  margin-top: 20px;
}

/* Navbar utility group */
.nav-utility {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 6px 6px 6px 14px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.98) !important;
  border: 1.5px solid rgba(124, 93, 255, 0.2) !important;
  box-shadow: 0 4px 20px rgba(124, 93, 255, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: relative;
  z-index: 1;
  overflow: visible;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-utility:hover {
  box-shadow: 0 6px 28px rgba(124, 93, 255, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset !important;
  border-color: rgba(124, 93, 255, 0.3) !important;
}

.nav-utility .product-search-btn-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  border: none !important;
  background: linear-gradient(135deg, var(--gemarkt-red-light) 0%, var(--gemarkt-red-dark) 50%, var(--gemarkt-red-dark) 100%) !important;
  box-shadow: 0 4px 16px rgba(124, 93, 255, 0.4),
    0 0 0 0 rgba(124, 93, 255, 0.5) !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 17px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
}

.nav-utility .product-search-btn-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.nav-utility .product-search-btn-icon:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(124, 93, 255, 0.5),
    0 0 0 4px rgba(124, 93, 255, 0.15) !important;
}

.nav-utility .product-search-btn-icon:hover::before {
  width: 200px;
  height: 200px;
}

.nav-utility .product-search-btn-icon:active {
  transform: translateY(0) scale(0.98);
}

.hero-contact-box {
  padding: 8px 14px 8px 10px !important;
  height: auto !important;
  min-width: auto !important;
  max-width: 180px;
  box-sizing: border-box !important;
  border-radius: 999px !important;
  background: rgba(248, 250, 255, 0.8) !important;
  border: 1.5px solid rgba(124, 93, 255, 0.15) !important;
  box-shadow: 0 2px 12px rgba(124, 93, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 1;
  overflow: hidden;
}

.hero-contact-box:hover {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(124, 93, 255, 0.25) !important;
  box-shadow: 0 4px 16px rgba(124, 93, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-1px);
}

.hero-contact-box a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-contact-box i {
  color: var(--gemarkt-red-light);
  font-size: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 93, 255, 0.15), rgba(100, 71, 255, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.hero-contact-box:hover i {
  background: linear-gradient(135deg, rgba(124, 93, 255, 0.2), rgba(100, 71, 255, 0.18));
  transform: scale(1.1);
}

.hero-contact-box .contact-text {
  font-weight: 600;
  font-size: 13px;
  color: #1f2937;
  letter-spacing: 0.2px;
  white-space: nowrap;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-pill-button,
.category-search-btn,
.contact-form .btn-primary {
  border-radius: 999px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--gemarkt-red-light), var(--gemarkt-red-dark));
  border: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.4px;
  box-shadow: 0 12px 30px rgba(124, 93, 255, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.site-pill-button:hover,
.category-search-btn:hover,
.contact-form .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(124, 93, 255, 0.45);
}

.language-dropdown {
  position: relative;
  display: none;
  z-index: 10002;
}

.language-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: none;
  border-radius: 999px;
  padding: 8px 12px 8px 10px;
  background: rgba(248, 250, 255, 0.8);
  color: #1f2937;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(124, 93, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(124, 93, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.language-dropdown-trigger::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.language-dropdown-trigger:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 16px rgba(124, 93, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(124, 93, 255, 0.25);
  transform: translateY(-1px);
}

.language-dropdown-trigger:hover::before {
  left: 100%;
}

.language-dropdown-trigger .flag-icon {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.language-dropdown-trigger .flag-icon svg {
  width: 17px;
  height: 12px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.language-dropdown-menu .language-switcher .flag-icon svg {
  width: 18px;
  height: 13px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.language-dropdown-trigger .language-dropdown-arrow {
  font-size: 10px;
  opacity: 0.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin-left: 2px;
}

.language-dropdown-trigger:hover .language-dropdown-arrow {
  opacity: 1;
}

.language-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 16px;
  border: 1.5px solid rgba(124, 93, 255, 0.15);
  box-shadow: 0 20px 40px rgba(124, 93, 255, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  display: none;
  flex-direction: column;
  min-width: 180px;
  padding: 8px;
  z-index: 100002 !important;
  overflow: hidden;
}

.language-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 93, 255, 0.3), transparent);
}

.language-dropdown-menu.open {
  display: flex;
  animation: dropdownFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.language-dropdown-menu .language-switcher {
  padding: 10px 14px;
  text-align: left;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px;
  background: transparent !important;
  border: none !important;
  border-radius: 10px;
  color: #1f2937 !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.2px;
  transition: all 0.2s ease;
  position: relative;
}

.language-dropdown-menu .language-switcher:hover {
  background: rgba(124, 93, 255, 0.08) !important;
  color: var(--gemarkt-red-light) !important;
  transform: translateX(4px);
}

.language-dropdown-menu .language-switcher.active {
  background: linear-gradient(135deg, rgba(124, 93, 255, 0.15), rgba(100, 71, 255, 0.12)) !important;
  color: var(--gemarkt-red-light) !important;
  font-weight: 700 !important;
}

.language-dropdown-menu .language-switcher.active::after {
  content: '✓';
  position: absolute;
  right: 12px;
  font-size: 12px;
  color: var(--gemarkt-red-light);
  font-weight: bold;
}

/* Desktop (992px+) */
@media (min-width: 992px) {
  .language-dropdown {
    display: block;
  }

  .fh5co-nav .language-switcher-group {
    display: none !important;
  }
}

/* Tablet (769px - 991px) */
@media (min-width: 769px) and (max-width: 991px) {
  .language-dropdown {
    display: block;
  }

  .fh5co-nav .language-switcher-group {
    display: none !important;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .language-dropdown {
    display: none !important;
  }

  /* Mobilde navbar içindeki language-switcher-group'u gizle */
  .fh5co-nav .language-switcher-group {
    display: none !important;
  }
}

.offcanvas-nav-actions {
  margin: 25px 15px 10px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.offcanvas-language-panel {
  margin: 30px 20px 20px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(30, 30, 35, 0.95);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(124, 93, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.offcanvas-language-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gemarkt-red-light), var(--gemarkt-red-dark), var(--gemarkt-red-light));
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.offcanvas-language-panel .offcanvas-language-label {
  display: block;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
}

.offcanvas-language-panel .language-switcher-group {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.offcanvas-language-panel .language-switcher {
  flex: 1;
  padding: 16px 12px;
  border-radius: 14px;
  border: 2px solid rgba(124, 93, 255, 0.25);
  background: rgba(40, 40, 50, 0.8);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  min-height: 60px;
}

.offcanvas-language-panel .language-switcher svg {
  width: 32px;
  height: 22px;
  display: block;
  margin: 0 auto 8px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  flex-shrink: 0;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}

.offcanvas-language-panel .language-switcher:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 93, 255, 0.5);
  box-shadow: 0 8px 20px rgba(124, 93, 255, 0.3);
  background: rgba(50, 50, 60, 0.9);
}

.offcanvas-language-panel .language-switcher.active {
  background: linear-gradient(135deg, var(--gemarkt-red-light), var(--gemarkt-red-dark));
  color: #fff !important;
  border-color: rgba(124, 93, 255, 0.8);
  box-shadow: 0 12px 28px rgba(124, 93, 255, 0.6),
    0 0 0 2px rgba(124, 93, 255, 0.3) inset,
    0 0 30px rgba(124, 93, 255, 0.4);
  transform: translateY(-2px) scale(1.02);
}

/* Hero Carousel Navigation Arrows - Modern Circular Design */
.hero-carousel {
  position: relative;
  overflow: visible !important;
}

.hero-carousel .owl-nav {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  pointer-events: none !important;
  z-index: 999999 !important;
  margin: 0 !important;
  padding: 0 60px !important;
  left: 0 !important;
  right: 0 !important;
  align-items: center !important;
}

@media (max-width: 767px) {

  .hero-carousel .owl-nav,
  .owl-carousel-fullwidth .owl-nav {
    display: none !important;
  }
}

/* Owl Carousel default nav button override - Modern Minimal Design */
.hero-carousel .owl-nav button,
.hero-carousel .owl-nav .owl-prev,
.hero-carousel .owl-nav .owl-next,
.hero-carousel .owl-nav [class*=owl-] {
  pointer-events: all !important;
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  max-width: 56px !important;
  max-height: 56px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1.5px solid rgba(124, 93, 255, 0.15) !important;
  border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  color: var(--gemarkt-red-light) !important;
  font-size: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(124, 93, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
  will-change: transform, background, box-shadow !important;
  transform-origin: center center !important;
  position: relative !important;
  overflow: visible !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important;
  z-index: 999999 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

.hero-carousel .owl-nav button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(124, 93, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  opacity: 0;
}

/* Hover efektleri - Modern Minimal */
.hero-carousel .owl-nav button:hover,
.hero-carousel .owl-nav .owl-prev:hover,
.hero-carousel .owl-nav .owl-next:hover,
.hero-carousel .owl-nav [class*=owl-]:hover,
#fh5co-hero .hero-carousel .owl-nav button:hover,
#fh5co-hero .hero-carousel .owl-nav .owl-prev:hover,
#fh5co-hero .hero-carousel .owl-nav .owl-next:hover,
.hero-carousel .owl-nav button.owl-prev:hover,
.hero-carousel .owl-nav button.owl-next:hover {
  background: rgba(124, 93, 255, 0.95) !important;
  color: #fff !important;
  border-color: rgba(124, 93, 255, 0.4) !important;
  transform: scale(1.08) !important;
  box-shadow: 0 8px 24px rgba(124, 93, 255, 0.35),
    0 2px 8px rgba(124, 93, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.hero-carousel .owl-nav button:hover::before,
.hero-carousel .owl-nav .owl-prev:hover::before,
.hero-carousel .owl-nav .owl-next:hover::before,
#fh5co-hero .hero-carousel .owl-nav button:hover::before {
  width: 150% !important;
  height: 150% !important;
  opacity: 1 !important;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.hero-carousel .owl-nav button:active {
  transform: scale(1.03) !important;
  box-shadow: 0 4px 16px rgba(124, 93, 255, 0.3),
    0 1px 4px rgba(124, 93, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.hero-carousel .owl-nav button.owl-prev,
.hero-carousel .owl-nav button.owl-next,
.hero-carousel .owl-nav .owl-prev,
.hero-carousel .owl-nav .owl-next {
  margin: 0 !important;
  position: relative !important;
}

.hero-carousel .owl-nav button.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.hero-carousel .owl-nav button i,
.hero-carousel .owl-nav button span,
.hero-carousel .owl-nav .owl-prev i,
.hero-carousel .owl-nav .owl-next i,
#fh5co-hero .hero-carousel .owl-nav button i,
#fh5co-hero .hero-carousel .owl-nav button span {
  position: relative;
  z-index: 2;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: inline-block;
  font-weight: 600;
}

.hero-carousel .owl-nav button:hover i,
.hero-carousel .owl-nav button:hover span,
.hero-carousel .owl-nav .owl-prev:hover i,
.hero-carousel .owl-nav .owl-next:hover i,
#fh5co-hero .hero-carousel .owl-nav button:hover i,
#fh5co-hero .hero-carousel .owl-nav button:hover span {
  transform: scale(1.05) !important;
}

.hero-carousel .owl-nav button.owl-prev:hover i,
.hero-carousel .owl-nav .owl-prev:hover i,
#fh5co-hero .hero-carousel .owl-nav .owl-prev:hover i {
  transform: scale(1.05) translateX(-2px) !important;
}

.hero-carousel .owl-nav button.owl-next:hover i,
.hero-carousel .owl-nav .owl-next:hover i,
#fh5co-hero .hero-carousel .owl-nav .owl-next:hover i {
  transform: scale(1.05) translateX(2px) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-carousel .owl-nav {
    padding: 0 30px;
  }

  .hero-carousel .owl-nav button {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    font-size: 18px !important;
  }

  #fh5co-hero .hero-carousel .owl-dots {
    bottom: 30px;
    padding: 10px 16px;
    gap: 10px;
  }

  #fh5co-hero .hero-carousel .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
  }

  #fh5co-hero .hero-carousel .owl-dots .owl-dot.active span {
    width: 24px;
    height: 8px;
  }
}

/* Product Search Modal */
.product-search-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 999999 !important;
  display: none !important;
  visibility: hidden;
  opacity: 0;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  margin: 0 !important;
}

.product-search-modal[style*="display: flex"],
.product-search-modal:not([style*="display: none"]):not([style=""]) {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center !important;
  justify-content: center !important;
}

.product-search-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.75) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999998 !important;
  margin: 0 !important;
  padding: 0 !important;
  transition: all 0.3s ease;
}

.product-search-modal-content {
  position: relative !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  border: 1.5px solid rgba(124, 93, 255, 0.15);
  padding: 50px 40px;
  width: 90% !important;
  max-width: 700px !important;
  box-shadow: 0 25px 60px rgba(124, 93, 255, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  animation: productSearchModalFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999999 !important;
  margin: auto !important;
  max-height: 90vh;
  overflow-y: auto;
}

.product-search-modal[style*="display: none"] .product-search-modal-content {
  display: none !important;
}

.product-search-modal[style*="display: flex"] .product-search-modal-content,
.product-search-modal:not([style*="display: none"]) .product-search-modal-content {
  display: block !important;
}

@keyframes productSearchModalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

.product-search-modal-header {
  text-align: center;
}

.product-search-modal-header h2 {
  background: linear-gradient(135deg, var(--gemarkt-red-light), var(--gemarkt-red-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px !important;
}

.product-search-modal-input-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.product-search-input-modal {
  width: 100% !important;
  padding: 18px 140px 18px 24px !important;
  font-size: 18px !important;
  border: 2px solid rgba(124, 93, 255, 0.2) !important;
  border-radius: 16px !important;
  outline: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  background: rgba(248, 250, 255, 0.8) !important;
  color: #1f2937 !important;
  font-weight: 500 !important;
  box-shadow: 0 2px 12px rgba(124, 93, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.product-search-input-modal::placeholder {
  color: rgba(31, 41, 55, 0.5);
}

.product-search-input-modal:focus {
  border-color: rgba(124, 93, 255, 0.4) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 4px 20px rgba(124, 93, 255, 0.15),
    0 0 0 4px rgba(124, 93, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  transform: translateY(-1px);
}

.product-search-btn-modal {
  position: absolute !important;
  right: 8px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  padding: 12px 24px !important;
  background: linear-gradient(135deg, var(--gemarkt-red-light) 0%, var(--gemarkt-red-dark) 50%, var(--gemarkt-red-dark) 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 16px rgba(124, 93, 255, 0.4) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.product-search-btn-modal:hover {
  background: linear-gradient(135deg, var(--gemarkt-red-dark) 0%, var(--gemarkt-red-dark) 50%, #5035f0 100%) !important;
  transform: translateY(calc(-50% - 2px)) !important;
  box-shadow: 0 8px 24px rgba(124, 93, 255, 0.5),
    0 0 0 4px rgba(124, 93, 255, 0.15) !important;
}

.product-search-btn-modal:active {
  transform: translateY(-50%) scale(0.98) !important;
}

.product-search-modal-close {
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  background: rgba(248, 250, 255, 0.8) !important;
  border: 1.5px solid rgba(124, 93, 255, 0.15) !important;
  font-size: 24px !important;
  color: var(--gemarkt-red-light) !important;
  cursor: pointer !important;
  z-index: 10 !important;
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  line-height: 1 !important;
  padding: 0 !important;
}

.product-search-modal-close:hover {
  background: linear-gradient(135deg, rgba(124, 93, 255, 0.15), rgba(100, 71, 255, 0.12)) !important;
  border-color: rgba(124, 93, 255, 0.3) !important;
  color: var(--gemarkt-red-light) !important;
  transform: rotate(90deg) scale(1.1) !important;
  box-shadow: 0 4px 16px rgba(124, 93, 255, 0.2) !important;
}

/* Ürün Bulunamadı Pop-up Modal */
.product-not-found-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 100003 !important;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  opacity: 0;
}

.product-not-found-modal[style*="display: flex"],
.product-not-found-modal.show {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.product-not-found-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 100002 !important;
}

.product-not-found-modal-content {
  position: relative !important;
  background: #fff !important;
  border-radius: 20px;
  padding: 40px 30px;
  width: 90% !important;
  max-width: 500px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: productNotFoundModalFadeIn 0.3s ease;
  z-index: 100003 !important;
  margin: auto !important;
  text-align: center;
}

@keyframes productNotFoundModalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.product-not-found-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.product-not-found-modal-close:hover {
  color: #333;
}

.product-not-found-icon {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.7;
}

.product-not-found-modal-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px 0;
  font-family: "Montserrat", Arial, sans-serif;
}

.product-not-found-modal-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 10px 0;
}

.product-not-found-modal-content p strong {
  color: #333;
  font-weight: 600;
}

.product-not-found-btn-close {
  margin-top: 25px;
  padding: 12px 40px;
  background: var(--gemarkt-red);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  font-family: "Montserrat", Arial, sans-serif;
}

.product-not-found-btn-close:hover {
  background: var(--gemarkt-red-dark);
  transform: translateY(-1px);
}

.product-not-found-btn-close:active {
  transform: translateY(0);
}

.product-search-btn-modal:hover {
  background: var(--gemarkt-red-dark) !important;
  transform: translateY(-50%) scale(1.05);
}

.product-search-modal-close:hover {
  background: #f3f4f6 !important;
  color: #1a1a1a !important;
}

@media (max-width: 768px) {
  .hero-contact-box {
    padding: 6px 10px;
    font-size: 12px;
  }

  .hero-contact-box i {
    font-size: 14px;
  }

  .hero-contact-box .contact-text {
    display: none;
    /* Mobilde sadece ikon göster */
  }

  /* Mobilde nav-utility düzeltmeleri */
  .nav-utility {
    gap: 6px !important;
    padding: 4px 4px 4px 8px !important;
    flex-wrap: nowrap !important;
    min-width: auto !important;
    max-width: 100% !important;
  }

  .nav-utility .product-search-btn-icon {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    font-size: 16px !important;
    padding: 8px !important;
    flex-shrink: 0 !important;
  }

  .fh5co-nav .col-md-3.text-right>div {
    gap: 6px !important;
    flex-wrap: nowrap !important;
    overflow: visible !important;
  }

  /* Mobilde language-switcher-group düzeltmeleri */
  .language-switcher-group {
    display: flex !important;
    gap: 4px !important;
    flex-wrap: nowrap !important;
  }

  .language-switcher-group .language-switcher {
    padding: 6px 10px !important;
    font-size: 11px !important;
    min-width: auto !important;
  }

  /* Mobilde hero-contact-box düzeltmeleri */
  .hero-contact-box {
    flex-shrink: 0 !important;
    min-width: auto !important;
  }

  .product-search-modal-content {
    padding: 25px 15px !important;
    border-radius: 16px !important;
    width: 95% !important;
    max-width: 95% !important;
    margin: 10px !important;
  }

  .product-search-modal-header h2 {
    font-size: 20px !important;
    margin-bottom: 20px !important;
  }

  .product-search-modal-input-wrapper {
    max-width: 100% !important;
  }

  .product-search-input-modal {
    font-size: 16px !important;
    padding: 12px 100px 12px 16px !important;
    border-radius: 10px !important;
  }

  .product-search-btn-modal {
    padding: 10px 14px !important;
    font-size: 13px !important;
    right: 6px !important;
    border-radius: 8px !important;
  }

  .product-search-modal-close {
    top: 10px !important;
    right: 10px !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 20px !important;
  }
}

/* Küçük telefonlar için (max-width: 480px) */
@media (max-width: 480px) {
  .product-search-modal-content {
    padding: 20px 12px !important;
    border-radius: 12px !important;
    width: 98% !important;
    max-width: 98% !important;
    margin: 5px !important;
  }

  .product-search-modal-header h2 {
    font-size: 18px !important;
    margin-bottom: 15px !important;
  }

  .product-search-input-modal {
    font-size: 15px !important;
    padding: 10px 90px 10px 14px !important;
    border-radius: 8px !important;
  }

  .product-search-btn-modal {
    padding: 8px 12px !important;
    font-size: 12px !important;
    right: 4px !important;
  }

  .product-search-btn-modal span {
    display: none !important;
  }

  .product-search-btn-modal i {
    margin: 0 !important;
  }

  .product-search-modal-close {
    top: 8px !important;
    right: 8px !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 18px !important;
  }
}

/* floating whatsapp butonu - pop-up gibi kenarda - sola alındı backtotop ile çakışmaması için */
/* ===== WhatsApp Float Button - Modern Glassmorphism Design ===== */
.whatsapp-float {
  position: fixed !important;
  bottom: 30px;
  left: 30px;
  width: 64px;
  height: 64px;
  background: rgba(37, 211, 102, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 99999 !important;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
  visibility: visible !important;
  opacity: 1 !important;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover::before {
  width: 100%;
  height: 100%;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  position: relative;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5),
    0 0 0 4px rgba(37, 211, 102, 0.15);
  background: rgba(37, 211, 102, 1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  text-decoration: none;
}

.whatsapp-float:active {
  transform: translateY(-2px) scale(1.05);
}

.whatsapp-float .whatsapp-tooltip {
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-float .whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-right-color: rgba(0, 0, 0, 0.9);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(4px);
}

/* Tablet responsive (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .whatsapp-float {
    bottom: 25px;
    left: 25px;
    width: 60px;
    height: 60px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }

  .whatsapp-float .whatsapp-tooltip {
    left: 75px;
    font-size: 13px;
    padding: 9px 14px;
  }
}

/* Mobile responsive (max-width: 768px) */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-float .whatsapp-tooltip {
    left: 70px;
    font-size: 12px;
    padding: 8px 12px;
  }
}

/* navigation bar scroll edildiğinde fixed olacak - başlangıçta margin yok */

#fh5co-header,
#fh5co-counter,
.fh5co-bg {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  /* Header normal z-index'te */
}

.fh5co-bg {
  background-size: cover;
  background-position: center center;
  position: relative;
  width: 100%;
  float: left;
  position: relative;
}

#fh5co-counter {
  height: 500px;
}

#fh5co-counter .display-t,
#fh5co-counter .display-tc {
  height: 500px;
  display: table;
  width: 100%;
}

@media screen and (max-width: 992px) {
  #fh5co-counter {
    height: inherit;
    padding: 7em 0;
  }

  #fh5co-counter .display-t,
  #fh5co-counter .display-tc {
    height: inherit;
  }
}

@media screen and (max-width: 768px) {
  #fh5co-counter {
    height: inherit;
    padding: 7em 0;
  }

  #fh5co-counter .display-t,
  #fh5co-counter .display-tc {
    height: inherit;
  }
}

.fh5co-cover {
  height: 100vh;
  min-height: 100vh;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  float: left;
  width: 100%;
}

/* ===== Page Headers - Modern Overlay and Typography ===== */
.fh5co-cover .overlay {
  z-index: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.fh5co-cover>.fh5co-container {
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .fh5co-cover {
    height: 100vh;
    min-height: 100vh;
  }
}

.fh5co-cover .display-t,
.fh5co-cover .display-tc {
  z-index: 9;
  height: 100vh;
  min-height: 100vh;
  display: table;
  width: 100%;
}

@media screen and (max-width: 768px) {

  .fh5co-cover .display-t,
  .fh5co-cover .display-tc {
    height: 100vh;
    min-height: 100vh;
  }
}

.fh5co-cover.fh5co-cover-sm {
  height: 50vh;
  min-height: 400px;
  margin-bottom: 0;
  /* Map section ile arasındaki boşluk için */
}

/* Contact sayfasındaki hero section için özel margin */
#fh5co-header.fh5co-cover.fh5co-cover-sm {
  margin-bottom: 60px;
  /* Hero ile map arası boşluk - dengeli görünüm için */
}

@media screen and (max-width: 768px) {
  .fh5co-cover.fh5co-cover-sm {
    height: 40vh;
    min-height: 300px;
  }
}

.fh5co-cover.fh5co-cover-sm .display-t,
.fh5co-cover.fh5co-cover-sm .display-tc {
  height: 50vh;
  min-height: 400px;
  display: table;
  width: 100%;
}

@media screen and (max-width: 768px) {

  .fh5co-cover.fh5co-cover-sm .display-t,
  .fh5co-cover.fh5co-cover-sm .display-tc {
    height: 40vh;
    min-height: 300px;
  }
}

/* ===== About Content Section - Modern Design ===== */
#fh5co-about {
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
  position: relative;
}

#fh5co-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 93, 255, 0.3), transparent);
}

.about-content {
  margin-bottom: 7em;
  position: relative;
  z-index: 1;
}

.about-content img {
  border: 1.5px solid rgba(124, 93, 255, 0.15);
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(124, 93, 255, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-content img:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(124, 93, 255, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(124, 93, 255, 0.3);
}

.about-content .desc {
  margin-bottom: 3em;
  padding: 32px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  border: 1.5px solid rgba(124, 93, 255, 0.15);
  box-shadow: 0 8px 32px rgba(124, 93, 255, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-content .desc:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(124, 93, 255, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(124, 93, 255, 0.25);
}

.about-content .desc p {
  color: #6b7280;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 20px;
}

.about-content .desc h3.divider-gradient {
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.fh5co-staff {
  text-align: center;
  margin-bottom: 30px;
}

.fh5co-staff img {
  width: 170px;
  margin-bottom: 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.fh5co-staff h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

.fh5co-staff p {
  margin-bottom: 30px;
}

.fh5co-staff .role {
  color: #bfbfbf;
  margin-bottom: 30px;
  font-weight: normal;
  display: block;
}

/* ===== Footer Social Icons - Modern Design ===== */
.fh5co-social-icons {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.fh5co-social-icons li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
}

.fh5co-social-icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(124, 93, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.fh5co-social-icons li a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 93, 255, 0.3), rgba(100, 71, 255, 0.3));
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fh5co-social-icons li a:hover::before {
  width: 100%;
  height: 100%;
}

.fh5co-social-icons li a i {
  font-size: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fh5co-social-icons li a:hover {
  color: #fff;
  background: rgba(124, 93, 255, 0.2);
  border-color: rgba(124, 93, 255, 0.5);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(124, 93, 255, 0.4),
    0 0 0 4px rgba(124, 93, 255, 0.1);
}

.fh5co-social-icons li a:active {
  transform: translateY(-2px) scale(1.05);
}

.fh5co-contact-info ul {
  padding: 0;
  margin: 0;
}

.fh5co-contact-info ul li {
  padding: 0 0 0 50px;
  margin: 0 0 30px 0;
  list-style: none;
  position: relative;
  word-wrap: break-word;
  line-height: 1.6;
}

.fh5co-contact-info ul li:before {
  color: var(--gemarkt-red);
  position: absolute;
  left: 0;
  top: .05em;
  font-family: 'icomoon';
  /* speak: none deprecated olmuş - kaldırdık */
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Font rendering'i iyileştiriyoruz - daha temiz görünsün diye */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fh5co-contact-info ul li.address:before {
  font-size: 30px;
  content: "\e9d1";
  z-index: 1;
}

.fh5co-contact-info ul li.address {
  padding-left: 50px;
}

.fh5co-contact-info ul li.phone:before {
  font-size: 23px;
  content: "\e9f4";
}

.fh5co-contact-info ul li.email:before {
  font-size: 23px;
  content: "\e9da";
}

.fh5co-contact-info ul li.url:before {
  font-size: 23px;
  content: "\e9af";
}

#fh5co-header .display-tc,
#fh5co-counter .display-tc,
.fh5co-cover .display-tc {
  display: table-cell !important;
  vertical-align: middle;
}

/* ===== Page Headers Typography - Modern Gradient Text ===== */
#fh5co-header .display-tc h1,
#fh5co-header .display-tc h2,
#fh5co-counter .display-tc h1,
#fh5co-counter .display-tc h2,
.fh5co-cover .display-tc h1,
.fh5co-cover .display-tc h2 {
  margin: 0;
  padding: 0;
  color: white;
}

#fh5co-header .display-tc h1,
#fh5co-counter .display-tc h1,
.fh5co-cover .display-tc h1 {
  margin-bottom: 0px;
  font-size: 56px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {

  #fh5co-header .display-tc h1,
  #fh5co-counter .display-tc h1,
  .fh5co-cover .display-tc h1 {
    font-size: 40px;
  }
}

#fh5co-header .display-tc h2,
#fh5co-counter .display-tc h2,
.fh5co-cover .display-tc h2 {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
  font-family: "Playfair Display", serif;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

#fh5co-header .display-tc h2 a,
#fh5co-counter .display-tc h2 a,
.fh5co-cover .display-tc h2 a {
  color: rgba(255, 255, 255, 0.95);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

#fh5co-header .display-tc h2 a:hover,
#fh5co-counter .display-tc h2 a:hover,
.fh5co-cover .display-tc h2 a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.8);
}

#fh5co-header .display-tc .btn,
#fh5co-counter .display-tc .btn,
.fh5co-cover .display-tc .btn {
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gemarkt-red) 0%, var(--gemarkt-red-dark) 100%) !important;
  color: #fff;
  border: none !important;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fh5co-cover .display-tc .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
}

#fh5co-header .display-tc .btn:hover,
#fh5co-counter .display-tc .btn:hover,
.fh5co-cover .display-tc .btn:hover {
  background: var(--gemarkt-red-dark) !important;
  -webkit-box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75) !important;
  -moz-box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75) !important;
  box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75) !important;
}

#fh5co-header .display-tc .form-inline .form-group,
#fh5co-counter .display-tc .form-inline .form-group,
.fh5co-cover .display-tc .form-inline .form-group {
  width: 100% !important;
  margin-bottom: 10px;
}

#fh5co-header .display-tc .form-inline .form-group .form-control,
#fh5co-counter .display-tc .form-inline .form-group .form-control,
.fh5co-cover .display-tc .form-inline .form-group .form-control {
  width: 100%;
  background: #fff;
  border: none;
}

/* ===== Counter Section - Modern Glassmorphism Design ===== */
#fh5co-counter {
  text-align: center;
  position: relative;
}

#fh5co-counter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 93, 255, 0.3), transparent);
  z-index: 1;
}

#fh5co-counter .counter {
  font-size: 56px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--gemarkt-red-light) 0%, var(--gemarkt-red-dark) 50%, var(--gemarkt-red-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  display: block;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  #fh5co-counter .counter {
    font-size: 42px;
  }
}

#fh5co-counter .counter-label {
  margin-bottom: 0;
  text-transform: uppercase;
  color: #000000;
  letter-spacing: 1.5px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  position: relative;
  z-index: 1;
}

#fh5co-counter .feature-center {
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  margin: 0 10px;
}

#fh5co-counter .feature-center::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 93, 255, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: 0;
}

#fh5co-counter .feature-center:hover::before {
  left: 100%;
}

#fh5co-counter .feature-center:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2),
    0 4px 16px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 768px) {
  #fh5co-counter .feature-center {
    margin-bottom: 50px;
    padding: 36px 24px;
  }
}

#fh5co-counter .icon {
  width: 90px;
  height: 90px;
  text-align: center;
  background: linear-gradient(135deg, var(--gemarkt-red-light) 0%, var(--gemarkt-red-dark) 50%, var(--gemarkt-red-dark) 100%);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(124, 93, 255, 0.4),
    0 0 0 4px rgba(255, 255, 255, 0.2);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

#fh5co-counter .feature-center:hover .icon {
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 12px 40px rgba(124, 93, 255, 0.5),
    0 0 0 6px rgba(255, 255, 255, 0.3);
}

#fh5co-counter .icon i {
  height: 90px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

#fh5co-counter .icon i:before {
  display: block;
  text-align: center;
}

.fh5co-bg-section {
  background: rgba(0, 0, 0, 0.05);
}

#fh5co-services,
#fh5co-started,
#fh5co-testimonial,
#fh5co-started,
#fh5co-product,
#fh5co-about,
#fh5co-contact {
  padding: 5em 0;
  margin-top: 0;
  /* Map'in hemen altında başlasın */
  background: #ffffff;
  clear: both;
  position: relative;
  z-index: 100;
  /* Form map'in (leaflet) üstünde görünsün */
}

#fh5co-footer {
  padding: 7em 0;
  clear: both;
}

.contact-form-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(124, 93, 255, 0.7);
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-form-title {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gemarkt-red-light) 0%, var(--gemarkt-red-dark) 50%, var(--gemarkt-red-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 16px;
}

.contact-form-title::after,
.contact-form-title.divider-gradient::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gemarkt-red-light), transparent);
  border-radius: 2px;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form .form-control {
  padding: 16px 20px;
  border: 1.5px solid rgba(124, 93, 255, 0.2);
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  background: rgba(248, 250, 255, 0.8);
  color: #1f2937;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(124, 93, 255, 0.05);
}

.contact-form .form-control:focus {
  outline: none;
  border-color: rgba(124, 93, 255, 0.4);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 16px rgba(124, 93, 255, 0.15),
    0 0 0 4px rgba(124, 93, 255, 0.1);
  transform: translateY(-1px);
}

.contact-form .form-control::placeholder {
  color: rgba(107, 114, 128, 0.6);
  font-weight: 400;
}

.contact-form textarea.form-control {
  min-height: 180px;
  resize: vertical;
  width: 100%;
  font-family: inherit;
}

.contact-form .btn-primary {
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gemarkt-red-light) 0%, var(--gemarkt-red-dark) 50%, var(--gemarkt-red-dark) 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  box-shadow: 0 8px 24px rgba(124, 93, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.contact-form .btn-primary:hover::before {
  left: 100%;
}

.contact-form .btn-primary:hover {
  background: linear-gradient(135deg, #8b6dff 0%, #7355ff 50%, #5f52ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(124, 93, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contact-form .btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(124, 93, 255, 0.3);
}

.checkbox-group {
  margin-bottom: 25px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #1f2937;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(248, 250, 255, 0.5);
  border: 1.5px solid rgba(124, 93, 255, 0.1);
  transition: all 0.3s ease;
}

.checkbox-label:hover {
  background: rgba(248, 250, 255, 0.8);
  border-color: rgba(124, 93, 255, 0.2);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--gemarkt-red-light);
  border-radius: 4px;
}

.checkbox-label span {
  user-select: none;
}

.btn-submit {
  padding: 16px 50px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  min-width: 250px;
  border-radius: 12px !important;
  background: linear-gradient(135deg, var(--gemarkt-red-light) 0%, var(--gemarkt-red-dark) 50%, var(--gemarkt-red-dark) 100%) !important;
  box-shadow: 0 8px 24px rgba(124, 93, 255, 0.35) !important;
}

.btn-submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(124, 93, 255, 0.45) !important;
}

.btn-submit:active {
  transform: translateY(0) !important;
}

@media screen and (max-width: 768px) {
  .checkbox-group {
    margin-bottom: 20px;
  }

  .btn-submit {
    width: 100% !important;
    min-width: auto !important;
  }
}

@media screen and (max-width: 768px) {

  #fh5co-services,
  #fh5co-started,
  #fh5co-testimonial,
  #fh5co-started,
  #fh5co-product,
  #fh5co-about,
  #fh5co-contact,
  #fh5co-footer {
    padding: 3em 0;
  }
}

/* ===== Services Section - Modern Glassmorphism Cards ===== */
#fh5co-services {
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
  position: relative;
}

#fh5co-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 93, 255, 0.3), transparent);
}

.feature-center {
  padding: 32px 24px;
  float: left;
  width: 100%;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  border: 1.5px solid rgba(124, 93, 255, 0.15);
  box-shadow: 0 8px 32px rgba(124, 93, 255, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.feature-center::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 93, 255, 0.05), transparent);
  transition: left 0.6s ease;
  z-index: 0;
}

.feature-center:hover::before {
  left: 100%;
}

.feature-center:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(124, 93, 255, 0.2),
    0 4px 16px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(124, 93, 255, 0.25);
}

@media screen and (max-width: 768px) {
  .feature-center {
    margin-bottom: 50px;
    padding: 24px 20px;
  }
}

.feature-center .desc {
  padding-left: 0;
  position: relative;
  z-index: 1;
}

.feature-center .icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gemarkt-red-light) 0%, var(--gemarkt-red-dark) 50%, var(--gemarkt-red-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto 24px auto;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(124, 93, 255, 0.35),
    0 0 0 4px rgba(124, 93, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.feature-center:hover .icon {
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 12px 40px rgba(124, 93, 255, 0.5),
    0 0 0 6px rgba(124, 93, 255, 0.15);
}

.feature-center .icon i {
  display: block;
  font-size: 44px;
  line-height: 1;
  color: #fff;
  position: relative;
  z-index: 1;
}

.feature-center p {
  margin-bottom: 20px;
  color: #6b7280;
  line-height: 1.8;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.feature-center h3 {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
  position: relative;
  z-index: 1;
}

.feature-center h3.divider-gradient {
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.product {
  margin-bottom: 40px;
}

/* Flexbox grid sistemi - boş yerler kalmayacak */
#products-container {
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  position: relative;
  z-index: 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* her ürün item'i - flexbox ile düzenli grid */
#products-container .product-item {
  flex: 0 0 calc(33.333333% - 20px);
  min-width: 0;
  display: block;
}

/* tablet - 3 sütun (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  #products-container .product-item {
    flex: 0 0 calc(33.333333% - 20px);
  }
}

/* mobil - 3 sütun (max-width: 767px) */
@media (max-width: 767px) {
  #products-container {
    gap: 10px;
  }

  #products-container .product-item {
    flex: 0 0 calc(33.333333% - 7px);
  }
}

/* ürün kartlarının başlangıçta görünür olmasını garantile */
#products-container .product-item.animate-box {
  visibility: visible;
  opacity: 1;
}

/* sadece filter ile gizlenenleri layout'tan çıkar */
#products-container .product-item[style*="display: none"] {
  display: none !important;
}

/* Daha Fazla Görüntüle butonu */
.load-more-container {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.btn-load-more-products {
  padding: 14px 32px;
  background: var(--gemarkt-red);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(99, 102, 241, 0.2);
}

.btn-load-more-products:hover {
  background: var(--gemarkt-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(99, 102, 241, 0.3);
}

.btn-load-more-products:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(99, 102, 241, 0.2);
}

/* Kategori Sidebar */
.category-products-layout {
  margin-top: 30px;
}

.category-sidebar {
  position: sticky;
  top: 100px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.category-sidebar-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--gemarkt-red);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.category-sidebar-toggle:hover {
  background: var(--gemarkt-red-dark);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.category-sidebar-toggle-icon {
  transition: transform 0.3s ease;
  font-size: 14px;
  margin-left: 10px;
}

.category-sidebar-toggle-icon.rotated {
  transform: rotate(180deg);
}

.category-sidebar-content {
  width: 100%;
  padding: 24px;
  display: none;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  border: 1.5px solid rgba(124, 93, 255, 0.2);
  box-shadow: 0 4px 20px rgba(124, 93, 255, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.category-sidebar-content.show {
  display: block;
}

.category-sidebar-title {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gemarkt-red-light), var(--gemarkt-red-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 24px 0;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(124, 93, 255, 0.2);
  position: relative;
}

.category-sidebar-title::after,
.category-sidebar-title.divider-gradient-left::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gemarkt-red-light), var(--gemarkt-red-dark));
  border-radius: 2px;
}

.category-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-sidebar-item {
  margin-bottom: 6px;
}

.category-sidebar-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  color: #1f2937;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 15px;
  font-weight: 500;
  background: rgba(248, 250, 255, 0.5);
  border: 1.5px solid rgba(124, 93, 255, 0.1);
}

.category-sidebar-link:hover {
  background: rgba(248, 250, 255, 0.9);
  color: var(--gemarkt-red-light);
  border-color: rgba(124, 93, 255, 0.25);
  transform: translateX(6px);
  box-shadow: 0 2px 12px rgba(124, 93, 255, 0.1);
}

.category-sidebar-item.active .category-sidebar-link {
  background: linear-gradient(135deg, rgba(124, 93, 255, 0.15), rgba(100, 71, 255, 0.12));
  color: var(--gemarkt-red-light);
  font-weight: 700;
  border-color: rgba(124, 93, 255, 0.4);
  box-shadow: 0 4px 16px rgba(124, 93, 255, 0.2);
}

.category-sidebar-item.active .category-sidebar-link:hover {
  background: linear-gradient(135deg, rgba(124, 93, 255, 0.2), rgba(100, 71, 255, 0.18));
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(124, 93, 255, 0.25);
}

.category-name {
  flex: 1;
}

.category-count {
  font-size: 13px;
  opacity: 0.7;
  margin-left: 10px;
}

.category-sidebar-item.active .category-count {
  opacity: 0.9;
}

/* Desktop'ta sidebar içeriği varsayılan olarak açık */
@media (min-width: 992px) {
  .category-sidebar-content {
    display: block !important;
  }

  .category-sidebar-toggle {
    display: none;
  }

  .subcategory-sidebar .category-sidebar-content {
    display: block !important;
  }

  .subcategory-sidebar .category-sidebar-toggle {
    display: none;
  }
}

/* Mobilde sidebar'ı dropdown yap */
@media (max-width: 991px) {
  .category-sidebar-wrapper {
    margin-bottom: 30px;
    width: 100%;
  }

  .category-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 15px;
  }

  .category-products-wrapper {
    width: 100%;
  }

  .category-sidebar-toggle {
    display: flex;
    padding: 14px 18px;
    font-size: 15px;
  }

  .category-sidebar-content {
    display: none;
    padding: 20px;
  }

  .category-sidebar-title {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }

  .category-sidebar-item {
    margin-bottom: 8px;
  }

  .category-sidebar-link {
    padding: 14px 16px;
    font-size: 14px;
    border-radius: 10px;
  }

  .category-sidebar-link:hover {
    transform: translateX(4px);
  }

  .category-count {
    font-size: 12px;
  }

  .subcategory-sidebar {
    margin-top: 15px;
  }

  .subcategory-sidebar .category-sidebar-content {
    display: none;
  }

  .subcategory-sidebar .category-sidebar-toggle {
    display: flex;
  }
}

/* Çok küçük ekranlar için kategori itemları */
@media (max-width: 480px) {
  .category-sidebar-toggle {
    padding: 12px 16px;
    font-size: 14px;
  }

  .category-sidebar-content {
    padding: 16px;
  }

  .category-sidebar-title {
    font-size: 16px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .category-sidebar-item {
    margin-bottom: 6px;
  }

  .category-sidebar-link {
    padding: 12px 14px;
    font-size: 13px;
  }

  .category-count {
    font-size: 11px;
  }
}

.product .product-grid {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  height: 380px;
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (max-width: 767px) {
  .product .product-grid {
    height: 120px;
    margin-bottom: 10px;
    border-radius: 8px;
  }
}

.product .product-grid .sale {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  z-index: 100;
  background: linear-gradient(135deg, var(--gemarkt-red) 0%, var(--gemarkt-red-dark) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(99, 102, 241, 0.4);
}

@media screen and (max-width: 767px) {
  .product .product-grid .sale {
    top: 6px;
    left: 6px;
    padding: 4px 6px;
    font-size: 8px;
    border-radius: 4px;
  }
}

.product .product-grid .inner {
  display: table;
  height: 380px;
  width: 100%;
  opacity: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (max-width: 768px) {
  .product .product-grid .inner {
    display: none;
  }
}

.product .product-grid .inner p {
  display: table-cell;
  vertical-align: middle;
}

.product .product-grid .inner p .icon {
  padding: 12px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--gemarkt-red) 0%, var(--gemarkt-red-dark) 100%);
  border-radius: 50%;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

@media screen and (max-width: 767px) {
  .product .product-grid .inner p .icon {
    display: none;
  }
}

.product .product-grid .inner p .icon:hover,
.product .product-grid .inner p .icon:focus {
  color: var(--gemarkt-red);
  background: #fff;
  transform: scale(1.1);
}

.product .desc .product-category {
  display: inline-block;
  font-size: 12px;
  color: var(--gemarkt-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: 600;
  font-family: "Montserrat", Arial, sans-serif;
}

@media screen and (max-width: 767px) {
  .product .desc .product-category {
    font-size: 8px;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }
}

/* kategori filtre butonları */
.category-filters {
  margin-bottom: 0;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  text-align: left;
  border: 1.5px solid rgba(124, 93, 255, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 20px rgba(124, 93, 255, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-filters:hover {
  box-shadow: 0 6px 28px rgba(124, 93, 255, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  border-color: rgba(124, 93, 255, 0.3);
}

.category-filter-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: nowrap;
  flex: 0 1 auto;
  min-width: 0;
}

.category-filter-label {
  font-size: 14px;
  font-weight: 600;
  color: #4a5568;
  white-space: nowrap;
}

.category-filter-dropdown {
  padding: 10px 14px;
  font-size: 14px;
  border: 1.5px solid rgba(124, 93, 255, 0.2);
  border-radius: 12px;
  background: rgba(248, 250, 255, 0.8);
  color: #1f2937;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 200px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(124, 93, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.category-filter-dropdown:hover {
  border-color: rgba(124, 93, 255, 0.35);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 16px rgba(124, 93, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-1px);
}

.category-filter-dropdown:focus {
  outline: none;
  border-color: rgba(124, 93, 255, 0.4);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(124, 93, 255, 0.15),
    0 0 0 4px rgba(124, 93, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.custom-dropdown-wrapper {
  position: relative;
  z-index: 100001;
}

.custom-dropdown-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.dropdown-arrow {
  margin-left: 8px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.custom-dropdown-wrapper.open .dropdown-arrow {
  transform: rotate(180deg);
}

.custom-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(124, 93, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(124, 93, 255, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset,
    0 4px 20px rgba(124, 93, 255, 0.12);
  z-index: 100000 !important;
  min-width: 280px;
  overflow: hidden;
  animation: dropdownFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 4px;
}

.custom-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(124, 93, 255, 0.4), rgba(100, 71, 255, 0.4), transparent);
  border-radius: 20px 20px 0 0;
}

.custom-dropdown-menu::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(124, 93, 255, 0.02), rgba(100, 71, 255, 0.01));
  pointer-events: none;
  border-radius: 20px;
}

.dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1.5px solid rgba(124, 93, 255, 0.15);
  background: linear-gradient(135deg, rgba(248, 250, 255, 0.8), rgba(240, 245, 255, 0.6));
  position: relative;
  z-index: 1;
}

.selected-count {
  font-size: 13px;
  color: var(--gemarkt-red-light);
  font-weight: 600;
}

.dropdown-reset {
  font-size: 13px;
  color: var(--gemarkt-red-light);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  padding: 4px 10px;
  border-radius: 6px;
}

.dropdown-reset:hover {
  color: var(--gemarkt-red-dark);
  background: rgba(124, 93, 255, 0.1);
  text-decoration: none;
}

.dropdown-options {
  padding: 12px;
  max-height: 400px;
  overflow-y: auto;
  position: relative;
  z-index: 1;
}

.dropdown-options::-webkit-scrollbar {
  width: 6px;
}

.dropdown-options::-webkit-scrollbar-track {
  background: rgba(248, 250, 255, 0.5);
  border-radius: 10px;
}

.dropdown-options::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, rgba(124, 93, 255, 0.3), rgba(100, 71, 255, 0.3));
  border-radius: 10px;
}

.dropdown-options::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, rgba(124, 93, 255, 0.5), rgba(100, 71, 255, 0.5));
}

.dropdown-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid transparent;
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
}

.dropdown-option::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(124, 93, 255, 0.1), transparent);
  transition: width 0.3s ease;
}

.dropdown-option:hover {
  background: rgba(248, 250, 255, 0.95);
  border-color: rgba(124, 93, 255, 0.2);
  transform: translateX(6px);
  box-shadow: 0 2px 12px rgba(124, 93, 255, 0.1);
}

.dropdown-option:hover::before {
  width: 4px;
}

.dropdown-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--gemarkt-red-light);
}

.dropdown-option span {
  font-size: 14px;
  color: #1f2937;
  flex: 1;
  font-weight: 500;
}

.dropdown-option.active {
  background: linear-gradient(135deg, rgba(124, 93, 255, 0.18), rgba(100, 71, 255, 0.15));
  border-color: rgba(124, 93, 255, 0.35);
  box-shadow: 0 2px 12px rgba(124, 93, 255, 0.15);
}

.dropdown-option.active::before {
  width: 4px;
  background: linear-gradient(180deg, var(--gemarkt-red-light), var(--gemarkt-red-dark));
}

.dropdown-option.active span {
  color: var(--gemarkt-red-light);
  font-weight: 700;
}

.dropdown-option.active:hover {
  background: linear-gradient(135deg, rgba(124, 93, 255, 0.22), rgba(100, 71, 255, 0.18));
  border-color: rgba(124, 93, 255, 0.4);
  box-shadow: 0 4px 16px rgba(124, 93, 255, 0.2);
}

.category-filter-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
  margin-left: auto;
}

.category-product-count {
  font-size: 14px;
  color: #4a5568;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
}

/* Aktif filtreler container */
.active-filters-container {
  width: 100%;
  flex-basis: 100%;
  order: 999;
  padding-top: 15px;
  margin-top: 10px;
  border-top: 1px solid #e5e7eb;
}

.active-filters-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.active-filters-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}

.active-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #f0f4ff;
  border: 1.5px solid var(--gemarkt-red);
  border-radius: 20px;
  font-size: 13px;
  color: #1a1a1a;
  font-weight: 500;
  transition: all 0.2s ease;
}

.active-filter-chip:hover {
  background: #e0e7ff;
  border-color: var(--gemarkt-red-dark);
}

.active-filter-chip span {
  color: #1a1a1a;
}

.remove-filter-btn {
  background: none !important;
  border: none !important;
  color: var(--gemarkt-red) !important;
  cursor: pointer;
  padding: 0 !important;
  font-size: 18px !important;
  line-height: 1 !important;
  width: 20px !important;
  height: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  transition: all 0.2s ease !important;
  margin-left: 2px;
}

.remove-filter-btn:hover {
  background: var(--gemarkt-red) !important;
  color: #fff !important;
  transform: scale(1.1);
}

.clear-all-filters {
  font-size: 13px;
  color: var(--gemarkt-red);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  padding: 6px 12px;
  border-radius: 6px;
}

.clear-all-filters:hover {
  background: #f0f4ff;
  color: var(--gemarkt-red-dark);
  text-decoration: none;
}

.category-filter-btn {
  background: rgba(248, 250, 255, 0.8);
  border: 1.5px solid rgba(124, 93, 255, 0.2);
  color: var(--gemarkt-red-light);
  padding: 12px 28px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  font-weight: 600;
  font-family: "Montserrat", Arial, sans-serif;
  box-shadow: 0 2px 12px rgba(124, 93, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.category-filter-btn:hover {
  background: linear-gradient(135deg, var(--gemarkt-red-light) 0%, var(--gemarkt-red-dark) 50%, var(--gemarkt-red-dark) 100%);
  color: #fff;
  border-color: rgba(124, 93, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 93, 255, 0.4),
    0 0 0 4px rgba(124, 93, 255, 0.15);
}

.category-filter-btn:active {
  transform: translateY(0);
}

.category-filter-btn.active {
  background: linear-gradient(135deg, var(--gemarkt-red) 0%, var(--gemarkt-red-dark) 100%);
  color: #fff;
  border-color: var(--gemarkt-red);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
}

/* Pagination */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 40px auto 20px auto;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
}

.pagination-btn {
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  border: 1.5px solid rgba(124, 93, 255, 0.2);
  color: #1f2937;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 44px;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(124, 93, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.pagination-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 93, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.pagination-btn:hover::before {
  left: 100%;
}

.pagination-btn:hover:not(.disabled):not(.active) {
  background: rgba(248, 250, 255, 0.95);
  border-color: rgba(124, 93, 255, 0.3);
  color: var(--gemarkt-red-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 93, 255, 0.15);
}

.pagination-btn.active {
  background: linear-gradient(135deg, var(--gemarkt-red-light) 0%, var(--gemarkt-red-dark) 50%, var(--gemarkt-red-dark) 100%);
  border-color: rgba(124, 93, 255, 0.4);
  color: #fff;
  box-shadow: 0 4px 16px rgba(124, 93, 255, 0.3);
  font-weight: 700;
}

.pagination-btn.active:hover {
  background: linear-gradient(135deg, #8b6dff 0%, #7355ff 50%, #5f52ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 93, 255, 0.4);
}

.pagination-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: rgba(248, 250, 255, 0.5);
  border-color: rgba(124, 93, 255, 0.1);
}

.pagination-btn.disabled:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(124, 93, 255, 0.08);
}

/* Mobil filtre butonu ve sidebar */
.mobile-filter-btn {
  display: none;
  width: 100%;
  padding: 14px 20px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.mobile-filter-btn:hover {
  border-color: var(--gemarkt-red);
  background: #f7fafc;
}

.mobile-filter-count-badge {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
  margin-left: auto;
  padding-left: 10px;
}

.filter-icon {
  font-size: 20px;
  margin-right: 10px;
}

.filter-text {
  flex: 1;
  text-align: left;
}

.mobile-filter-count-badge {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.mobile-filter-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-filter-overlay.active,
.mobile-filter-overlay[style*="display: block"] {
  opacity: 1;
}

.mobile-filter-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: #fff;
  z-index: 100003 !important;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mobile-filter-sidebar.open {
  right: 0;
  z-index: 100003 !important;
}

.mobile-filter-header {
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 100002;
  background: #fff;
  flex-shrink: 0;
}

.mobile-filter-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}

.mobile-filter-count {
  font-size: 14px;
  color: #6b7280;
}

.mobile-filter-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #4a5568;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.mobile-filter-close:hover {
  background: #f7fafc;
  color: #1a1a1a;
}

.mobile-filter-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.mobile-filter-section {
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 20px;
}

.mobile-filter-section:last-child {
  border-bottom: none;
}

.mobile-filter-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

.section-arrow {
  font-size: 20px;
  color: #6b7280;
  transition: transform 0.3s ease;
}

.section-arrow.rotated {
  transform: rotate(90deg);
}

.mobile-filter-section-content {
  display: none;
  padding-top: 10px;
}

.mobile-filter-section-content .mobile-select {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
}

.mobile-filter-footer {
  padding: 20px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 12px;
  background: #fff;
}

.mobile-filter-clear {
  flex: 1;
  padding: 12px;
  background: transparent;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  color: #4a5568;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-filter-clear:hover {
  background: #f7fafc;
  border-color: var(--gemarkt-red);
  color: var(--gemarkt-red);
}

.mobile-filter-apply {
  flex: 1;
  padding: 12px;
  background: var(--gemarkt-red);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-filter-apply:hover {
  background: var(--gemarkt-red-dark);
}

body.mobile-filter-open {
  overflow: hidden;
}

@media (max-width: 768px) {

  .mobile-filter-btn,
  .mobile-filter-overlay,
  .mobile-filter-sidebar {
    display: none !important;
  }

  .category-filter-left,
  .category-filter-right {
    display: none !important;
  }

  .category-filters {
    margin-bottom: 20px;
    padding: 0;
    border-bottom: none;
  }

  .category-filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .pagination-btn {
    padding: 8px 12px;
    font-size: 12px;
    min-width: 36px;
  }
}

@media (min-width: 769px) {

  .mobile-filter-btn,
  .mobile-filter-overlay,
  .mobile-filter-sidebar {
    display: none !important;
  }
}

/* ana kategori kartları - products.html için 2 büyük kart */
/* ===== Main Category Cards - Modern Glassmorphism Design ===== */
.main-category-card {
  position: relative;
  display: block;
  height: 500px;
  overflow: hidden;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255, 31, 31, 0.12),
    0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 30px;
  background: #fff;
  border: 1.5px solid rgba(255, 31, 31, 0.12);
}

.main-category-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 68px rgba(255, 31, 31, 0.28),
    0 10px 26px rgba(0, 0, 0, 0.16);
  border-color: rgba(255, 31, 31, 0.28);
  text-decoration: none;
}

.main-category-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.9);
}

.main-category-card:hover .main-category-image {
  transform: scale(1.1);
  filter: brightness(1);
}

.main-category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.7));
  z-index: 1;
  transition: background 0.4s ease;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.main-category-card:hover .main-category-overlay {
  background: linear-gradient(180deg, rgba(255, 31, 31, 0.18), rgba(0, 0, 0, 0.82));
}

.main-category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 2;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.main-category-content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  position: relative;
}

.main-category-content p {
  font-size: 19px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.main-category-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 24px;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 31, 31, 0.9), rgba(204, 0, 0, 0.85));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
}

.main-category-card:hover .main-category-arrow {
  transform: translateX(12px) scale(1.1);
  background: linear-gradient(135deg, rgba(255, 31, 31, 1), rgba(153, 0, 0, 0.95));
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 20px rgba(255, 31, 31, 0.45);
}

@media (max-width: 768px) {

  /* Ana kategoriler mobilde 2 sütun */
  #main-categories .col-md-4,
  #main-categories .col-md-6,
  #main-categories .col-sm-6 {
    width: 50%;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
  }

  .main-category-card {
    height: 250px;
    margin-bottom: 15px;
  }

  .main-category-content {
    padding: 15px;
  }

  .main-category-content h2 {
    font-size: 18px;
    margin-bottom: 8px;
    letter-spacing: 1px;
    line-height: 1.2;
  }

  .main-category-content p {
    font-size: 11px;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .main-category-arrow {
    font-size: 18px;
  }
}

.product .desc h3 {
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .product .desc h3 {
    font-size: 10px;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    line-height: 1.2;
  }
}

.product .desc h3 a {
  color: #1a1a1a;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.product .desc .price {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  color: var(--gemarkt-red);
}

@media screen and (max-width: 767px) {
  .product .desc .price {
    font-size: 11px;
    letter-spacing: 1px;
  }
}

.product:hover .product-grid,
.product:focus .product-grid {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product:hover .inner,
.product:focus .inner {
  opacity: 1;
}

.product:hover .desc h3 a,
.product:focus .desc h3 a {
  color: var(--gemarkt-red);
}

.product-carousel {
  margin-bottom: 7em;
}

.fh5co-tabs .fh5co-tab-nav {
  clear: both;
  margin: 0 0 3em 0;
  padding: 3px;
  float: left;
  width: 100%;
  background: #f2f2f2;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

.fh5co-tabs .fh5co-tab-nav li {
  float: left;
  margin: 0;
  padding: 0;
  width: 33.33%;
  text-align: center;
  list-style: none;
  /* inline-block kaldırdık - zaten float block yapıyor */
  zoom: 1;
  /* IE6 hack - artık kim kullanıyor bilmiyorum ama kaldırdık */
}

.fh5co-tabs .fh5co-tab-nav li .icon {
  font-size: 30px;
}

.fh5co-tabs .fh5co-tab-nav li a {
  padding: 20px;
  width: 100%;
  float: left;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  color: #b3b3b3;
}

.fh5co-tabs .fh5co-tab-nav li a:hover {
  color: #4d4d4d;
}

.fh5co-tabs .fh5co-tab-nav li.active a {
  background: #fff;
  color: var(--gemarkt-red);
}

.fh5co-tabs .fh5co-tab-content-wrap {
  clear: both;
  position: relative;
  top: 70px;
}

.fh5co-tabs .fh5co-tab-content-wrap .tab-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.fh5co-tabs .fh5co-tab-content-wrap .tab-content.active {
  opacity: 1;
  visibility: visible;
}

.fh5co-tabs .fh5co-tab-content-wrap .tab-content .price {
  letter-spacing: 2px;
  border: 2px solid var(--gemarkt-red);
  display: inline-block;
  margin-bottom: 20px;
  padding: 7px 20px 10px 20px;
}

.fh5co-tabs .fh5co-tab-content-wrap ul {
  padding: 0;
  margin: 0;
  margin-bottom: 3em;
}

.fh5co-tabs .fh5co-tab-content-wrap ul li {
  list-style: none;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.fh5co-tabs .fh5co-tab-content-wrap ul li:before {
  font-family: 'icomoon';
  position: absolute;
  top: 0;
  left: 0;
  content: '\e116';
}

.fh5co-tabs .fh5co-tab-content-wrap .feed {
  width: 100%;
  float: left;
  margin-bottom: 7em;
}

.fh5co-tabs .fh5co-tab-content-wrap .feed>div {
  width: 100%;
  float: left;
  margin-bottom: 1em;
}

.fh5co-tabs .fh5co-tab-content-wrap .feed>div blockquote {
  border-left: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.04);
}

.fh5co-tabs .fh5co-tab-content-wrap .feed>div h3 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  display: inline-block;
  padding-right: 20px;
}

.fh5co-tabs .fh5co-tab-content-wrap .feed>div .rate {
  color: #ffba00;
}

.fh5co-tabs .icon-xlg {
  font-size: 400px;
  margin-bottom: 30px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .fh5co-tabs .icon-xlg {
    font-size: 300px;
  }
}

@media screen and (max-width: 480px) {
  .fh5co-tabs .icon-xlg {
    font-size: 200px;
  }
}

.fh5co-tabs .icon-xlg i {
  color: var(--gemarkt-red);
}

.fh5co-heading {
  margin-bottom: 5em;
}

.fh5co-heading.fh5co-heading-sm {
  margin-bottom: 2em;
}

.fh5co-heading h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--gemarkt-red-light) 0%, var(--gemarkt-red-dark) 50%, var(--gemarkt-red-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-bottom: 16px;
}

.fh5co-heading h2::after,
.fh5co-heading h2.divider-gradient::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gemarkt-red-light), transparent);
  border-radius: 2px;
}

.fh5co-heading p {
  font-size: 19px;
  line-height: 1.8;
  color: #6a6a6a;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.fh5co-heading span {
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 3px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  color: rgba(124, 93, 255, 0.8);
}

/* ===== Testimonial Section - Modern Glassmorphism Design ===== */
#fh5co-testimonial {
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
  padding: 80px 0;
  position: relative;
}

#fh5co-testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 93, 255, 0.3), transparent);
}

#fh5co-testimonial .testimony-slide {
  text-align: center;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  padding: 48px 40px;
  border: 1.5px solid rgba(124, 93, 255, 0.15);
  box-shadow: 0 8px 32px rgba(124, 93, 255, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  margin: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

#fh5co-testimonial .testimony-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 93, 255, 0.05), transparent);
  transition: left 0.6s ease;
  z-index: 0;
}

#fh5co-testimonial .testimony-slide:hover::before {
  left: 100%;
}

#fh5co-testimonial .testimony-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(124, 93, 255, 0.2),
    0 4px 16px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(124, 93, 255, 0.25);
}

#fh5co-testimonial .testimony-slide span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  display: block;
  margin-top: 24px;
  color: var(--gemarkt-red-light);
  position: relative;
  z-index: 1;
}

#fh5co-testimonial .testimony-slide span a {
  color: var(--gemarkt-red-light);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#fh5co-testimonial .testimony-slide span a:hover {
  color: var(--gemarkt-red-dark);
  text-decoration: underline;
}

#fh5co-testimonial .testimony-slide figure {
  margin-bottom: 24px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

#fh5co-testimonial .testimony-slide figure img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid rgba(124, 93, 255, 0.2);
  box-shadow: 0 8px 24px rgba(124, 93, 255, 0.2),
    0 0 0 0 rgba(124, 93, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  object-fit: cover;
}

#fh5co-testimonial .testimony-slide:hover figure img {
  border-color: rgba(124, 93, 255, 0.4);
  box-shadow: 0 12px 32px rgba(124, 93, 255, 0.3),
    0 0 0 4px rgba(124, 93, 255, 0.15);
  transform: scale(1.05);
}

#fh5co-testimonial .testimony-slide blockquote {
  border: none;
  margin: 30px auto 0;
  width: 70%;
  position: relative;
  padding: 0;
  z-index: 1;
}

@media screen and (max-width: 992px) {
  #fh5co-testimonial .testimony-slide blockquote {
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  #fh5co-testimonial .testimony-slide {
    padding: 32px 24px;
    margin: 10px;
  }

  #fh5co-testimonial .testimony-slide blockquote {
    width: 100%;
  }

  #fh5co-testimonial .testimony-slide figure img {
    width: 100px;
    height: 100px;
  }
}

#fh5co-testimonial .testimony-slide blockquote p {
  font-size: 18px;
  line-height: 1.8;
  color: #1f2937;
  font-style: italic;
  margin: 0;
  position: relative;
  padding: 0 20px;
}

#fh5co-testimonial .testimony-slide blockquote p::before {
  content: '"';
  position: absolute;
  left: -10px;
  top: -10px;
  font-size: 60px;
  color: rgba(124, 93, 255, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

#fh5co-testimonial .testimony-slide blockquote p::after {
  content: '"';
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-size: 60px;
  color: rgba(124, 93, 255, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

#fh5co-testimonial .arrow-thumb {
  position: absolute;
  top: 40%;
  display: block;
  width: 100%;
  z-index: 10;
}

#fh5co-testimonial .arrow-thumb a {
  font-size: 32px;
  color: rgba(124, 93, 255, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(124, 93, 255, 0.2);
}

#fh5co-testimonial .arrow-thumb a:hover,
#fh5co-testimonial .arrow-thumb a:focus,
#fh5co-testimonial .arrow-thumb a:active {
  text-decoration: none;
  color: var(--gemarkt-red-light);
  background: rgba(124, 93, 255, 0.1);
  border-color: rgba(124, 93, 255, 0.4);
  transform: scale(1.1);
}

#fh5co-started {
  background: linear-gradient(135deg, var(--gemarkt-red) 0%, var(--gemarkt-red-dark) 100%);
}

#fh5co-started .fh5co-heading h2 {
  color: #fff;
  margin-bottom: 20px !important;
}

#fh5co-started .fh5co-heading p {
  color: rgba(255, 255, 255, 0.6);
}

#fh5co-started .form-control {
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 12px !important;
  color: #fff !important;
  font-size: 16px !important;
  width: 100%;
  padding: 16px 20px !important;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#fh5co-started .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

#fh5co-started .form-control:-moz-placeholder {
  /* Firefox 18 ve altı için */
  color: rgba(255, 255, 255, 0.8);
}

#fh5co-started .form-control::-moz-placeholder {
  /* Firefox 19 ve üstü için */
  color: rgba(255, 255, 255, 0.8);
}

#fh5co-started .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

#fh5co-started .form-control:focus {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15),
    0 0 0 4px rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

#fh5co-started .btn {
  height: 54px;
  border: none !important;
  background: rgba(0, 0, 0, 0.9) !important;
  backdrop-filter: blur(10px);
  color: #fff !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  padding-left: 50px !important;
  padding-right: 50px !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#fh5co-started .btn:hover {
  background: rgba(0, 0, 0, 1) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4) !important;
}

#fh5co-started .btn:active {
  transform: translateY(0) !important;
}

#fh5co-started .form-inline .form-group {
  width: 100% !important;
  margin-bottom: 10px;
}

#fh5co-started .form-inline .form-group .form-control {
  width: 100%;
}

/* ===== Footer - Modern Glassmorphism Design ===== */
#fh5co-footer {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, rgba(30, 30, 35, 1) 100%);
  color: #e0e0e0;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

#fh5co-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 93, 255, 0.3), transparent);
}

#fh5co-footer .fh5co-footer-links {
  padding: 0;
  margin: 0;
}

#fh5co-footer .fh5co-footer-links.footer-primary-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#fh5co-footer .fh5co-footer-links li {
  padding: 0;
  margin: 0 0 12px 0;
  list-style: none;
}

#fh5co-footer .fh5co-footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
  position: relative;
  font-weight: 500;
}

#fh5co-footer .fh5co-footer-links li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gemarkt-red-light), var(--gemarkt-red-dark));
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#fh5co-footer .fh5co-footer-links li a:hover {
  color: #fff;
  background: rgba(124, 93, 255, 0.15);
  text-decoration: none;
  transform: translateX(4px);
  padding-left: 16px;
}

#fh5co-footer .fh5co-footer-links li a:hover::before {
  width: 100%;
}

#fh5co-footer .fh5co-widget {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  #fh5co-footer .fh5co-widget {
    text-align: left;
    margin-bottom: 30px;
  }
}

#fh5co-footer .fh5co-widget h3 {
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-bottom: 12px;
}

#fh5co-footer .fh5co-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gemarkt-red-light), var(--gemarkt-red-dark));
  border-radius: 2px;
}

#fh5co-footer .fh5co-widget p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 15px;
}

#fh5co-footer .copyright {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(124, 93, 255, 0.15);
  position: relative;
  z-index: 1;
}

#fh5co-footer .copyright .block {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 8px;
}

#fh5co-footer .copyright a {
  color: rgba(124, 93, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
}

#fh5co-footer .copyright a:hover {
  color: var(--gemarkt-red-light);
  text-decoration: underline;
}

#map {
  height: 600px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  #map {
    height: 400px;
  }
}

@media screen and (max-width: 480px) {
  #map {
    height: 200px;
  }
}

/* Contact Map Section with Info Panel Overlay */
#contact-map-section {
  position: relative;
  width: 100%;
  margin-top: 0;
  /* Hero'dan margin-bottom var, burada gerek yok */
  margin-bottom: 0;
  /* Form ile arasında boşluk olmasın, form aşağıda olacak */
  z-index: 1;
  /* Form'un altında kalmalı */
  display: block !important;
  /* Map section'ın görünür olması için */
  visibility: visible !important;
}

.map-container {
  position: relative !important;
  /* Overlay'in bu container'a göre konumlanması için */
  width: 100%;
  height: 600px !important;
  z-index: 1;
  display: block !important;
  visibility: visible !important;
  overflow: hidden;
  /* Map'in taşmasını önle */
}

#map {
  height: 600px !important;
  /* Parent container ile aynı yükseklik */
  width: 100% !important;
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  visibility: visible !important;
  min-height: 600px !important;
  /* Map'in görünmesi için minimum yükseklik */
}

/* Leaflet map container'ının görünür olması için */
#map .leaflet-container {
  z-index: 1 !important;
  height: 100% !important;
  width: 100% !important;
  position: relative !important;
}

#map .leaflet-pane {
  z-index: 1 !important;
}

#map .leaflet-tile-pane {
  z-index: 1 !important;
}

#map .leaflet-overlay-pane {
  z-index: 2 !important;
}

.contact-info-panel-overlay {
  position: absolute !important;
  /* Map container'a göre konumlanması için */
  top: 40px !important;
  right: 40px !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(24px) !important;
  padding: 35px !important;
  border-radius: 20px !important;
  border: 1.5px solid rgba(124, 93, 255, 0.2) !important;
  box-shadow: 0 8px 32px rgba(124, 93, 255, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.1) !important;
  max-width: 400px;
  z-index: 1000 !important;
  /* Map'in üstünde görünsün */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.contact-info-panel-overlay:hover {
  box-shadow: 0 12px 40px rgba(124, 93, 255, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.12) !important;
  border-color: rgba(124, 93, 255, 0.3) !important;
}

.contact-info-panel {
  background: #ffffff;
  padding: 40px;
  height: 600px;
  display: flex;
  align-items: center;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
}

.contact-info-content {
  width: 100%;
}

.company-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.contact-info-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, var(--gemarkt-red-light) 0%, var(--gemarkt-red-dark) 50%, var(--gemarkt-red-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gemarkt-red-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(124, 93, 255, 0.1);
}

.directions-link:hover {
  color: var(--gemarkt-red-dark);
  background: rgba(124, 93, 255, 0.15);
  transform: translateX(2px);
}

.directions-link i {
  font-size: 16px;
}

.address-section {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e5e7eb;
}

.company-address-full {
  font-size: 15px;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 12px;
}

.rating-section {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.rating-stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 2px;
}

.rating-text {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 14px;
}

.rating-reviews {
  color: #6b7280;
  font-size: 13px;
}

.view-map-link {
  color: var(--gemarkt-red-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(124, 93, 255, 0.1);
  display: inline-block;
}

.view-map-link:hover {
  color: var(--gemarkt-red-dark);
  background: rgba(124, 93, 255, 0.15);
  transform: translateX(2px);
}

.contact-details-box {
  background: rgba(248, 250, 255, 0.6);
  padding: 24px;
  border-radius: 12px;
  border: 1.5px solid rgba(124, 93, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-details-box:hover {
  background: rgba(248, 250, 255, 0.8);
  border-color: rgba(124, 93, 255, 0.2);
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.contact-info-list li {
  margin-bottom: 25px;
  padding-left: 35px;
  position: relative;
  line-height: 1.6;
}

.contact-info-list li:before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'icomoon';
  font-size: 20px;
  color: var(--gemarkt-red-light);
  transition: all 0.3s ease;
}

.contact-info-list li:hover:before {
  color: var(--gemarkt-red-dark);
  transform: scale(1.1);
}

.contact-info-list li.address:before {
  content: "\e9d1";
  font-size: 24px;
}

.contact-info-list li.phone:before {
  content: "\e9f4";
}

.contact-info-list li.email:before {
  content: "\e9da";
}

.contact-info-list li.company-address:before {
  content: "\e9d1";
  font-size: 24px;
}

.contact-info-list li .label {
  display: block;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-list li a,
.contact-info-list li span:not(.label) {
  display: block;
  color: #6b7280;
  font-size: 15px;
  text-decoration: none;
}

.contact-info-list li a:hover {
  color: var(--gemarkt-red);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 50%;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--gemarkt-red);
  color: #ffffff;
  transform: translateY(-2px);
}

.social-icon i {
  font-size: 18px;
}

@media screen and (max-width: 991px) {
  .contact-info-panel-overlay {
    top: 20px;
    right: 20px;
    left: 20px;
    max-width: none;
    padding: 25px;
  }

  .map-container {
    height: 500px;
  }
}

@media screen and (max-width: 768px) {
  .contact-info-panel-overlay {
    top: 15px;
    right: 15px;
    left: 15px;
    padding: 20px;
  }

  .map-container {
    height: 400px;
  }

  .contact-info-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .contact-info-list li {
    margin-bottom: 20px;
  }

  .contact-form-title {
    font-size: 28px;
  }

  .contact-form textarea.form-control {
    min-height: 150px;
  }
}

@media screen and (max-width: 480px) {
  .contact-info-panel-overlay {
    top: 10px;
    right: 10px;
    left: 10px;
    padding: 15px;
  }

  .map-container {
    height: 300px;
  }

  .social-icons {
    gap: 10px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
  }

  .contact-form textarea.form-control {
    min-height: 120px;
  }
}

#fh5co-offcanvas {
  position: fixed;
  z-index: 1901;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 80px 40px 40px 40px;
  overflow-y: auto;
  display: none;
  -moz-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
  -webkit-transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (max-width: 768px) {
  #fh5co-offcanvas {
    display: block;
  }
}

.offcanvas #fh5co-offcanvas {
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

#fh5co-offcanvas>a {
  color: rgba(255, 255, 255, 0.5);
}

#fh5co-offcanvas>a:hover {
  color: rgba(255, 255, 255, 0.8);
}

#fh5co-offcanvas ul {
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  padding-top: 40px;
}

#fh5co-offcanvas ul li {
  padding: 0;
  margin: 0 0 12px 0;
  list-style: none;
  opacity: 0;
  -moz-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 0.4s ease, transform 0.4s ease;
  -o-transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: 0s;
}

.offcanvas #fh5co-offcanvas ul li {
  opacity: 1;
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.offcanvas #fh5co-offcanvas ul li:nth-child(1) {
  transition-delay: 0.1s;
}

.offcanvas #fh5co-offcanvas ul li:nth-child(2) {
  transition-delay: 0.15s;
}

.offcanvas #fh5co-offcanvas ul li:nth-child(3) {
  transition-delay: 0.2s;
}

.offcanvas #fh5co-offcanvas ul li:nth-child(4) {
  transition-delay: 0.25s;
}

.offcanvas #fh5co-offcanvas ul li:nth-child(5) {
  transition-delay: 0.3s;
}

.offcanvas #fh5co-offcanvas ul li:nth-child(6) {
  transition-delay: 0.35s;
}

.offcanvas #fh5co-offcanvas ul li:nth-child(7) {
  transition-delay: 0.4s;
}

#fh5co-offcanvas ul li a {
  display: block;
  padding: 18px 20px;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, padding-left 0.3s ease;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.5px;
}

#fh5co-offcanvas ul li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  padding-left: 30px;
  transform: scale(1.02);
}

#fh5co-offcanvas ul li.search {
  float: left;
  width: 100%;
  font-family: "Playfair Display", serif;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding: 0;
  margin: 5px 0 0 0;
}

#fh5co-offcanvas ul li input[type=text] {
  padding: 6px 10px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  float: right;
  font-size: 13px;
  margin-top: 4px;
  background: transparent;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#fh5co-offcanvas ul li input[type=text]:focus {
  width: 100%;
  outline: none;
}

#fh5co-offcanvas ul li button {
  margin-top: 4px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 1px;
}

#fh5co-offcanvas ul li button i {
  color: rgba(255, 255, 255, 0.5);
}

#fh5co-offcanvas ul li button:hover,
#fh5co-offcanvas ul li button:focus {
  background: transparent !important;
}

#fh5co-offcanvas ul li button:hover i,
#fh5co-offcanvas ul li button:focus i {
  color: white;
}

#fh5co-offcanvas ul li.shopping-cart {
  float: left;
}

#fh5co-offcanvas ul li a.cart {
  display: block;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.5);
}

#fh5co-offcanvas ul li a.cart span {
  position: relative;
}

#fh5co-offcanvas ul li a.cart span small {
  position: absolute;
  top: -20px;
  right: -15px;
  padding: 10px 6px;
  line-height: 0;
  font-size: 11px;
  background: var(--gemarkt-red);
  color: white;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

#fh5co-offcanvas ul li>ul {
  padding-left: 20px;
  display: none;
}

#fh5co-offcanvas ul li.offcanvas-has-dropdown.active>ul {
  display: block;
}

#fh5co-offcanvas ul li.offcanvas-has-dropdown>a {
  display: block;
  position: relative;
}

#fh5co-offcanvas ul li.offcanvas-has-dropdown>a:after {
  position: absolute;
  right: 20px;
  font-family: 'icomoon';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e921";
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: transform 0.3s ease, color 0.3s ease;
  -o-transition: transform 0.3s ease, color 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease;
}

#fh5co-offcanvas ul li.offcanvas-has-dropdown.active a:after {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
  color: rgba(255, 255, 255, 0.9);
}

#fh5co-offcanvas ul li>ul {
  padding-left: 0;
  padding-top: 10px;
  display: none;
  margin-top: 8px;
}

#fh5co-offcanvas ul li.offcanvas-has-dropdown.active>ul {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#fh5co-offcanvas ul li>ul li a {
  font-size: 16px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 8px;
  border-radius: 6px;
  text-align: center;
}

#fh5co-offcanvas ul li>ul li a:hover {
  background: rgba(255, 255, 255, 0.12);
  padding-left: 25px;
}

.uppercase {
  font-size: 14px;
  color: #000;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

/* ===== Go to Top Button - Modern Floating Design ===== */
.gototop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gototop.active {
  opacity: 1;
  visibility: visible;
}

.gototop a {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--gemarkt-red);
  text-align: center;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 31, 31, 0.2);
  box-shadow: 0 8px 24px rgba(255, 31, 31, 0.2),
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.gototop a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 31, 31, 0.15), rgba(204, 0, 0, 0.15));
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gototop a:hover::before {
  width: 100%;
  height: 100%;
}

.gototop a i {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: relative;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gototop a:hover,
.gototop a:active,
.gototop a:focus {
  text-decoration: none;
  outline: none;
  color: #fff;
  background: linear-gradient(135deg, var(--gemarkt-red), var(--gemarkt-red-dark));
  border-color: rgba(255, 31, 31, 0.4);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 32px rgba(255, 31, 31, 0.35),
    0 0 0 4px rgba(255, 31, 31, 0.15);
}

.gototop a:active {
  transform: translateY(-2px) scale(1.05);
}

/* Tablet responsive (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .gototop {
    bottom: 25px;
    right: 25px;
  }

  .gototop a {
    width: 52px;
    height: 52px;
  }

  .gototop a i {
    height: 52px;
    font-size: 22px;
  }
}

/* Mobile responsive (max-width: 768px) */
@media screen and (max-width: 768px) {
  .gototop {
    bottom: 20px;
    right: 20px;
  }

  .gototop a {
    width: 48px;
    height: 48px;
  }

  .gototop a i {
    height: 48px;
    font-size: 20px;
  }
}

.fh5co-nav-toggle {
  width: 25px;
  height: 25px;
  cursor: pointer;
  text-decoration: none;
}

.fh5co-nav-toggle.active i::before,
.fh5co-nav-toggle.active i::after {
  background: #1a1a1a;
  /* siyah X - beyaz arka planda görünsün */
}

.fh5co-nav-toggle:hover,
.fh5co-nav-toggle:focus,
.fh5co-nav-toggle:active {
  outline: none;
  border-bottom: none !important;
}

.fh5co-nav-toggle i {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 2px;
  color: #252525;
  font: bold 14px/.4 Helvetica;
  text-transform: uppercase;
  text-indent: -55px;
  background: #252525;
  transition: all .2s ease-out;
}

.fh5co-nav-toggle i::before,
.fh5co-nav-toggle i::after {
  content: '';
  width: 25px;
  height: 2px;
  background: #252525;
  position: absolute;
  left: 0;
  transition: all .2s ease-out;
}

.fh5co-nav-toggle.fh5co-nav-white>i {
  color: #fff;
  background: #000;
}

.fh5co-nav-toggle.fh5co-nav-white>i::before,
.fh5co-nav-toggle.fh5co-nav-white>i::after {
  background: #000;
}

.fh5co-nav-toggle i::before {
  top: -7px;
}

.fh5co-nav-toggle i::after {
  bottom: -7px;
}

.fh5co-nav-toggle:hover i::before {
  top: -10px;
}

.fh5co-nav-toggle:hover i::after {
  bottom: -10px;
}

.fh5co-nav-toggle.active i {
  background: transparent;
}

.fh5co-nav-toggle.active i::before {
  background: #1a1a1a;
  /* siyah X çizgisi - beyaz arka planda görünsün */
  top: 0;
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.fh5co-nav-toggle.active i::after {
  background: #1a1a1a;
  /* siyah X çizgisi - beyaz arka planda görünsün */
  bottom: 0;
  -webkit-transform: rotateZ(-45deg);
  -moz-transform: rotateZ(-45deg);
  -ms-transform: rotateZ(-45deg);
  -o-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}

.fh5co-nav-toggle {
  position: relative;
  z-index: 2001;
  padding: 6px 0 0 0;
  margin: 0 auto;
  display: none;
  /* sadece desktop'ta (1025px+) gizli */
  height: 44px;
  width: 44px;
  border-bottom: none !important;
  transition: transform 0.3s ease;
}

.fh5co-nav-toggle.active {
  transform: rotate(90deg);
}

/* Hamburger container - sadece desktop'ta (1025px+) gizli */
.hamburger-container {
  display: none;
}

/* Mobile ve Tablet (max-width: 1024px) - Hamburger menü */
@media screen and (max-width: 1024px) {
  .fh5co-nav-toggle {
    display: block !important;
    z-index: 2001 !important;
  }

  .hamburger-container {
    display: flex !important;
  }
}

@media screen and (max-width: 768px) {
  .fh5co-nav-toggle {
    display: block !important;
    /* mobilde görünür - menü açmak için lazım */
    z-index: 2001 !important;
  }

  /* mobilde dil butonu nav'ın ortasında, logo ve hamburger arasında */
  .fh5co-nav .row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  /* navigation bar'ı relative yap ki absolute positioning çalışsın */
  .fh5co-nav {
    position: relative !important;
    padding: 15px 0 !important;
  }

  .fh5co-nav .col-md-3.col-xs-2:first-child {
    flex: 0 0 auto;
    width: auto !important;
    max-width: none !important;
    padding: 0 15px;
    position: relative !important;
    z-index: 10;
    order: 1;
    margin-right: auto;
  }

  .fh5co-nav .col-xs-2.hamburger-container {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 15px !important;
    position: relative !important;
    z-index: 10 !important;
    order: 3 !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  .fh5co-nav .col-md-6.col-xs-6,
  .fh5co-nav .col-xs-6 {
    display: none !important;
  }

  .fh5co-nav .col-md-3.col-xs-4.text-right,
  .fh5co-nav .col-xs-4.text-right {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto !important;
    text-align: center !important;
    padding: 0;
    z-index: 100;
    flex: 0 0 auto;
    order: 2;
  }

  .fh5co-nav .col-md-3.col-xs-4.text-right>div,
  .fh5co-nav .col-xs-4.text-right>div {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    flex-wrap: nowrap !important;
    overflow: visible !important;
    width: auto !important;
    max-width: 100vw !important;
  }

  .fh5co-nav #fh5co-logo {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
    position: relative;
    z-index: 10;
  }

  .language-switcher {
    margin: 0;
    display: inline-block;
  }

  /* Hamburger container - nav içinde sağda */
  .hamburger-container {
    display: flex !important;
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 15px !important;
    align-items: center !important;
    justify-content: flex-end !important;
    order: 3 !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  /* Hamburger butonunu nav içinde relative yap */
  .hamburger-container .fh5co-nav-toggle {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 0 !important;
  }

  .hamburger-container .fh5co-nav-toggle.active {
    transform: rotate(90deg) !important;
  }
}

/* dil değiştirici butonu - modern indigo renk */
.language-switcher {
  background: linear-gradient(135deg, var(--gemarkt-red) 0%, var(--gemarkt-red-dark) 100%) !important;
  color: #fff !important;
  border: none !important;
  padding: 10px 18px !important;
  border-radius: 8px !important;
  cursor: pointer;
  font-size: 14px !important;
  font-weight: 600 !important;
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-switcher:hover {
  background: linear-gradient(135deg, var(--gemarkt-red-dark) 0%, #4338ca 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.language-switcher:active {
  transform: translateY(0);
}

.btn {
  margin-right: 8px;
  margin-bottom: 8px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px 28px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn.btn-md {
  padding: 8px 20px !important;
}

.btn.btn-lg {
  padding: 18px 36px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
}

.btn:hover,
.btn:active,
.btn:focus {
  outline: none !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gemarkt-red-light) 0%, var(--gemarkt-red-dark) 50%, var(--gemarkt-red-dark) 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 24px rgba(124, 93, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
  font-weight: 600 !important;
  letter-spacing: 0.4px !important;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #8b6dff 0%, #7355ff 50%, #5f52ff 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(124, 93, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.btn-primary:active {
  transform: translateY(0) !important;
  box-shadow: 0 4px 16px rgba(124, 93, 255, 0.3) !important;
}

.btn-primary.btn-outline {
  background: transparent !important;
  color: var(--gemarkt-red-light) !important;
  border: 1.5px solid rgba(124, 93, 255, 0.3) !important;
  box-shadow: 0 2px 8px rgba(124, 93, 255, 0.1) !important;
}

.btn-primary.btn-outline:hover,
.btn-primary.btn-outline:focus,
.btn-primary.btn-outline:active {
  background: linear-gradient(135deg, var(--gemarkt-red-light) 0%, var(--gemarkt-red-dark) 50%, var(--gemarkt-red-dark) 100%) !important;
  color: #fff !important;
  border-color: transparent !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(124, 93, 255, 0.35) !important;
}

.btn-success {
  background: #5cb85c;
  color: #fff;
  border: 2px solid #5cb85c;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
  background: #4cae4c !important;
  border-color: #4cae4c !important;
}

.btn-success.btn-outline {
  background: transparent;
  color: #5cb85c;
  border: 2px solid #5cb85c;
}

.btn-success.btn-outline:hover,
.btn-success.btn-outline:focus,
.btn-success.btn-outline:active {
  background: #5cb85c;
  color: #fff;
}

.btn-info {
  background: #5bc0de;
  color: #fff;
  border: 2px solid #5bc0de;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active {
  background: #46b8da !important;
  border-color: #46b8da !important;
}

.btn-info.btn-outline {
  background: transparent;
  color: #5bc0de;
  border: 2px solid #5bc0de;
}

.btn-info.btn-outline:hover,
.btn-info.btn-outline:focus,
.btn-info.btn-outline:active {
  background: #5bc0de;
  color: #fff;
}

.btn-warning {
  background: #f0ad4e;
  color: #fff;
  border: 2px solid #f0ad4e;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
  background: #eea236 !important;
  border-color: #eea236 !important;
}

.btn-warning.btn-outline {
  background: transparent;
  color: #f0ad4e;
  border: 2px solid #f0ad4e;
}

.btn-warning.btn-outline:hover,
.btn-warning.btn-outline:focus,
.btn-warning.btn-outline:active {
  background: #f0ad4e;
  color: #fff;
}

.btn-danger {
  background: #d9534f;
  color: #fff;
  border: 2px solid #d9534f;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
  background: #d43f3a !important;
  border-color: #d43f3a !important;
}

.btn-danger.btn-outline {
  background: transparent;
  color: #d9534f;
  border: 2px solid #d9534f;
}

.btn-danger.btn-outline:hover,
.btn-danger.btn-outline:focus,
.btn-danger.btn-outline:active {
  background: #d9534f;
  color: #fff;
}

.btn-outline {
  background: none;
  border: 2px solid gray;
  font-size: 16px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
  box-shadow: none;
}

.btn.with-arrow {
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.btn.with-arrow i {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -8px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.btn.with-arrow:hover {
  padding-right: 50px;
}

.btn.with-arrow:hover i {
  color: #fff;
  right: 18px;
  visibility: visible;
  opacity: 1;
}

.form-control {
  box-shadow: none;
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.1);
  height: 54px;
  font-size: 18px;
  font-weight: 300;
}

.form-control:active,
.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--gemarkt-red);
}

.row-pb-md {
  padding-bottom: 4em !important;
}

.row-pb-sm {
  padding-bottom: 2em !important;
}

/* ===== Loader - Modern Spinner Design ===== */
.fh5co-loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  -o-transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fh5co-loader::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 4px solid rgba(124, 93, 255, 0.2);
  border-top-color: var(--gemarkt-red-light);
  border-radius: 50%;
  animation: loaderSpin 0.8s linear infinite;
}

.fh5co-loader::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid rgba(100, 71, 255, 0.3);
  border-top-color: var(--gemarkt-red-dark);
  border-radius: 50%;
  animation: loaderSpin 0.6s linear infinite reverse;
}

@keyframes loaderSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.js .animate-box {
  opacity: 0;
}

/* ===== Ürün Quick View Modal'ı - Full info gösteriyor ===== */
.modal-open {
  overflow: hidden;
}

#productQuickView.pqv-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  padding: 20px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#productQuickView.pqv-overlay[style*="display: block"],
#productQuickView.pqv-overlay[style*="display:flex"] {
  display: flex !important;
}

#productQuickView .pqv-modal {
  position: relative;
  margin: auto;
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  border: 1.5px solid rgba(124, 93, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
    0 8px 24px rgba(124, 93, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-self: center;
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

#productQuickView .pqv-close {
  position: absolute;
  right: 20px;
  top: 20px;
  border: 1.5px solid rgba(124, 93, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--gemarkt-red-light);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(124, 93, 255, 0.15);
  transform-origin: center center;
}

#productQuickView .pqv-close:hover {
  background: rgba(124, 93, 255, 0.95);
  color: #fff;
  border-color: rgba(124, 93, 255, 0.4);
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 8px 24px rgba(124, 93, 255, 0.4),
    0 0 0 4px rgba(124, 93, 255, 0.15);
}

#productQuickView .pqv-close:active {
  transform: scale(1.05) rotate(90deg);
}

@media (max-width: 768px) {
  #productQuickView .pqv-close {
    right: 8px;
    top: 8px;
    width: 44px;
    height: 44px;
    font-size: 36px;
    background: rgba(0, 0, 0, 0.8);
  }
}

#productQuickView .pqv-body {
  display: flex;
  gap: 0;
  overflow: hidden;
  flex: 1 1 auto;
  position: relative;
}

/* Sol taraf: Ürün galerisi */
#productQuickView .pqv-gallery {
  flex: 0 0 50%;
  width: 50%;
  min-height: 360px;
  max-width: 50%;
  background: rgba(248, 250, 255, 0.6);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-right: 1.5px solid rgba(124, 93, 255, 0.1);
}

#productQuickView .pqv-gallery .owl-carousel {
  height: 100%;
  min-height: 360px;
  width: 100%;
  max-width: 100%;
  display: block !important;
  visibility: visible !important;
  overflow: hidden;
  flex: 1 1 auto;
  position: relative;
}

#productQuickView .pqv-gallery .owl-stage-outer {
  height: 100%;
  min-height: 360px;
  width: 100%;
  max-width: 100%;
  display: block !important;
  visibility: visible !important;
  position: relative;
  overflow: hidden;
}

#productQuickView .pqv-gallery .owl-stage {
  height: 100%;
  width: 100% !important;
  display: flex !important;
}

#productQuickView .pqv-gallery .owl-item {
  height: 100%;
  min-height: 360px;
  width: 100% !important;
  max-width: 100%;
  flex-shrink: 0;
}

#productQuickView .pqv-item {
  height: 100%;
  min-height: 360px;
  width: 100%;
  max-width: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px;
  box-sizing: border-box;
  cursor: zoom-in;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#productQuickView .pqv-item:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* Product Quick View Thumbnails */
#productQuickView .pqv-thumbnails {
  display: flex !important;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1.5px solid rgba(124, 93, 255, 0.1);
  justify-content: center;
  flex-wrap: wrap;
  max-height: 120px;
  overflow: hidden !important;
  overflow-y: auto;
  flex-shrink: 0;
  width: 100%;
  visibility: visible !important;
  opacity: 1 !important;
}

#productQuickView .pqv-thumbnail-item {
  width: 70px;
  height: 70px;
  min-width: 70px;
  min-height: 70px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid rgba(124, 93, 255, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.6;
  flex-shrink: 0;
  pointer-events: auto !important;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transform-origin: center center;
}

#productQuickView .pqv-thumbnail-item:hover {
  opacity: 1;
  border-color: rgba(124, 93, 255, 0.5);
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(124, 93, 255, 0.3);
}

#productQuickView .pqv-thumbnail-item.active {
  opacity: 1;
  border-color: rgba(124, 93, 255, 0.8);
  border-width: 3px;
  box-shadow: 0 6px 20px rgba(124, 93, 255, 0.4),
    0 0 0 2px rgba(124, 93, 255, 0.2);
  transform: scale(1.05);
}

/* Product Quick View Carousel Navigation - Modern Minimal */
#productQuickView .pqv-gallery .owl-nav {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 100% !important;
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  justify-content: space-between !important;
  pointer-events: none !important;
  z-index: 1000 !important;
  margin: 0 !important;
  padding: 0 20px !important;
  left: 0 !important;
  right: 0 !important;
  align-items: center !important;
}

#productQuickView .pqv-gallery .owl-nav button,
#productQuickView .pqv-gallery .owl-nav .owl-prev,
#productQuickView .pqv-gallery .owl-nav .owl-next,
#productQuickView .pqv-gallery .owl-nav [class*=owl-],
#productQuickView .owl-nav button,
#productQuickView .owl-nav .owl-prev,
#productQuickView .owl-nav .owl-next,
#productQuickView .owl-nav [class*=owl-] {
  pointer-events: all !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1.5px solid rgba(124, 93, 255, 0.15) !important;
  border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  color: var(--gemarkt-red-light) !important;
  font-size: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(124, 93, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
  will-change: transform, background, box-shadow !important;
  transform-origin: center center !important;
  position: relative !important;
  overflow: visible !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important;
  z-index: 501 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

#productQuickView .pqv-gallery .owl-nav button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(124, 93, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  opacity: 0;
}

#productQuickView .pqv-gallery .owl-nav button:hover,
#productQuickView .pqv-gallery .owl-nav .owl-prev:hover,
#productQuickView .pqv-gallery .owl-nav .owl-next:hover,
#productQuickView .owl-nav button:hover {
  background: rgba(124, 93, 255, 0.95) !important;
  color: #fff !important;
  border-color: rgba(124, 93, 255, 0.4) !important;
  transform: scale(1.08) !important;
  box-shadow: 0 8px 24px rgba(124, 93, 255, 0.35),
    0 2px 8px rgba(124, 93, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

#productQuickView .pqv-gallery .owl-nav button:hover::before {
  width: 150% !important;
  height: 150% !important;
  opacity: 1 !important;
}

#productQuickView .pqv-gallery .owl-nav button:active {
  transform: scale(1.03) !important;
  box-shadow: 0 4px 16px rgba(124, 93, 255, 0.3),
    0 1px 4px rgba(124, 93, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

#productQuickView .pqv-gallery .owl-nav button i,
#productQuickView .pqv-gallery .owl-nav button span,
#productQuickView .owl-nav button i,
#productQuickView .owl-nav button span {
  position: relative;
  z-index: 2;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: inline-block;
  font-weight: 600;
}

#productQuickView .pqv-gallery .owl-nav button:hover i,
#productQuickView .pqv-gallery .owl-nav button:hover span,
#productQuickView .owl-nav button:hover i,
#productQuickView .owl-nav button:hover span {
  transform: scale(1.05) !important;
}

#productQuickView .pqv-gallery .owl-nav .owl-prev:hover i,
#productQuickView .owl-nav .owl-prev:hover i {
  transform: scale(1.05) translateX(-2px) !important;
}

#productQuickView .pqv-gallery .owl-nav .owl-next:hover i,
#productQuickView .owl-nav .owl-next:hover i {
  transform: scale(1.05) translateX(2px) !important;
}

@media (max-width: 768px) {
  #productQuickView .pqv-thumbnails {
    padding: 8px;
    gap: 6px;
    max-height: 100px;
  }

  #productQuickView .pqv-thumbnail-item {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
  }

  #productQuickView .pqv-gallery .owl-nav {
    padding: 0 15px;
  }

  #productQuickView .pqv-gallery .owl-nav button {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    font-size: 16px !important;
  }

  #productQuickView .pqv-close {
    right: 12px;
    top: 12px;
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  #productQuickView .pqv-content {
    padding: 24px 20px;
  }

  #productQuickView .pqv-title {
    font-size: 24px;
  }
}

/* ===== Universal Divider - Modern Gradient Line ===== */
/* Genel kullanım için divider class'ı - her yerde kullanılabilir */
.divider-gradient,
.divider-gradient::after {
  position: relative;
}

.divider-gradient::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gemarkt-red-light), transparent);
  border-radius: 2px;
}

/* Sol hizalı divider (sidebar gibi yerler için) */
.divider-gradient-left::after {
  left: 0;
  transform: none;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gemarkt-red-light), var(--gemarkt-red-dark));
}

/* Sağ hizalı divider */
.divider-gradient-right::after {
  left: auto;
  right: 0;
  transform: none;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gemarkt-red-dark), var(--gemarkt-red-light));
}

/* Daha kalın divider (4px) */
.divider-gradient-thick::after {
  height: 4px;
}

/* Daha uzun divider (120px) */
.divider-gradient-long::after {
  width: 120px;
}

/* Daha kısa divider (40px) */
.divider-gradient-short::after {
  width: 40px;
}

/* ===== Partners Page - Modern Design ===== */
#fh5co-partners {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
  position: relative;
}

#fh5co-partners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 93, 255, 0.3), transparent);
}

#fh5co-partners .col-md-12.text-center h2 {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gemarkt-red-light) 0%, var(--gemarkt-red-dark) 50%, var(--gemarkt-red-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 16px;
}

#fh5co-partners .col-md-12.text-center h2.divider-gradient::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gemarkt-red-light), transparent);
  border-radius: 2px;
}

#fh5co-partners .col-md-12.text-center p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 50px;
  font-weight: 400;
}

/* Partner Cards - Modern Glassmorphism */
.partner-card {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-radius: 20px !important;
  padding: 28px !important;
  box-shadow: 0 8px 32px rgba(124, 93, 255, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-align: center !important;
  height: 100% !important;
  border: 1.5px solid rgba(124, 93, 255, 0.1) !important;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 93, 255, 0.05), transparent);
  transition: left 0.6s ease;
  z-index: 0;
}

.partner-card:hover::before {
  left: 100%;
}

.partner-card>a {
  position: relative;
  z-index: 1;
  display: block;
  text-decoration: none !important;
  color: inherit;
}

.partner-card img {
  width: 100% !important;
  height: 140px !important;
  object-fit: contain !important;
  margin-bottom: 20px !important;
  border-radius: 12px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
  background: rgba(248, 250, 255, 0.5);
  padding: 12px;
}

.partner-card:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 16px rgba(124, 93, 255, 0.2));
}

.partner-card h3 {
  margin: 0 !important;
  font-size: 20px !important;
  color: #1f2937 !important;
  font-weight: 700 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  z-index: 1;
}

.partner-card:hover h3 {
  color: var(--gemarkt-red-light) !important;
  transform: translateY(-2px);
}

.partner-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 16px 48px rgba(124, 93, 255, 0.2),
    0 4px 16px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  border-color: rgba(124, 93, 255, 0.25) !important;
}

/* No Image Placeholder */
.partner-card>a>div[style*="background: #f3f4f6"],
.partner-card>a>div[style*="background:#f3f4f6"] {
  width: 100% !important;
  height: 140px !important;
  background: rgba(248, 250, 255, 0.8) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--gemarkt-red-light) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  margin-bottom: 20px !important;
  border-radius: 12px !important;
  border: 1.5px dashed rgba(124, 93, 255, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.partner-card:hover>a>div[style*="background: #f3f4f6"],
.partner-card:hover>a>div[style*="background:#f3f4f6"] {
  background: rgba(248, 250, 255, 1) !important;
  border-color: rgba(124, 93, 255, 0.4) !important;
  color: var(--gemarkt-red-dark) !important;
}

/* Partners Grid */
#partnersGrid {
  margin-top: 60px !important;
}

#partnersGrid .col-md-3,
#partnersGrid .col-sm-4,
#partnersGrid .col-xs-6 {
  margin-bottom: 30px !important;
}

/* Loading State */
#partnersGrid .col-md-12.text-center p[data-i18n="partners.loading"],
#partnersGrid .col-md-12.text-center p:contains("yükleniyor") {
  color: var(--gemarkt-red-light) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  padding: 40px !important;
}

/* No Partners State */
#partnersGrid .col-md-12.text-center p[style*="color: #6b7280"] {
  color: var(--gemarkt-red-light) !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  padding: 40px !important;
}

/* Header Modernization for Partners */
#fh5co-header.fh5co-cover-sm {
  height: 60vh;
  min-height: 500px;
}

#fh5co-header.fh5co-cover-sm .display-tc h1 {
  font-size: 56px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

#fh5co-header.fh5co-cover-sm .display-tc h2 {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

#fh5co-header.fh5co-cover-sm .display-tc h2 a {
  color: rgba(255, 255, 255, 0.95);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

#fh5co-header.fh5co-cover-sm .display-tc h2 a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.8);
}

#fh5co-header.fh5co-cover-sm .overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Responsive */
@media (max-width: 768px) {
  #fh5co-partners {
    padding: 60px 0;
  }

  #fh5co-partners .col-md-12.text-center h2 {
    font-size: 32px;
  }

  #fh5co-partners .col-md-12.text-center p {
    font-size: 16px;
    padding: 0 20px;
  }

  .partner-card {
    padding: 24px !important;
  }

  .partner-card img {
    height: 120px !important;
  }

  .partner-card h3 {
    font-size: 18px !important;
  }

  #fh5co-header.fh5co-cover-sm {
    height: 50vh;
    min-height: 400px;
  }

  #fh5co-header.fh5co-cover-sm .display-tc h1 {
    font-size: 36px;
  }

  #partnersGrid .col-md-3,
  #partnersGrid .col-sm-4,
  #partnersGrid .col-xs-6 {
    margin-bottom: 20px !important;
  }
}

/* Product Quick View Image Lightbox */
body.lightbox-open {
  overflow: hidden !important;
}

.pqv-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: zoom-out;
}

.pqv-lightbox-overlay.active {
  opacity: 1;
}

.pqv-lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  animation: lightboxImageZoomIn 0.3s ease forwards;
}

.pqv-lightbox-overlay.active .pqv-lightbox-image {
  transform: scale(1);
}

@keyframes lightboxImageZoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.pqv-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 100001;
}

.pqv-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .pqv-lightbox-image {
    max-width: 95vw;
    max-height: 85vh;
  }

  .pqv-lightbox-close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    font-size: 32px;
  }
}

/* Contact Form Alert Animation */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.contact-alert {
  z-index: 100002 !important;
  animation: slideInRight 0.3s ease !important;
}

/* Arama Sonuçları Banner */
.search-results-banner {
  width: 100% !important;
  margin-bottom: 30px !important;
  padding: 24px 28px !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px !important;
  border: 1.5px solid rgba(124, 93, 255, 0.2) !important;
  box-shadow: 0 4px 20px rgba(124, 93, 255, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 15px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-results-banner:hover {
  box-shadow: 0 6px 28px rgba(124, 93, 255, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset !important;
  border-color: rgba(124, 93, 255, 0.3) !important;
}

.search-results-banner>div:first-child {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.search-results-banner>div:first-child>span:first-child {
  font-size: 16px !important;
  color: #1f2937 !important;
  font-weight: 600 !important;
}

.search-results-banner>div:first-child>span:last-child {
  font-size: 16px !important;
  background: linear-gradient(135deg, var(--gemarkt-red-light), var(--gemarkt-red-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700 !important;
}

.active-category-banner {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(124, 93, 255, 0.2) !important;
  box-shadow: 0 4px 20px rgba(124, 93, 255, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset !important;
  border-radius: 20px !important;
  padding: 24px 28px !important;
}

.active-category-banner:hover {
  box-shadow: 0 6px 28px rgba(124, 93, 255, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset !important;
  border-color: rgba(124, 93, 255, 0.3) !important;
}

.btn-clear-search-filter {
  padding: 12px 24px !important;
  background: linear-gradient(135deg, var(--gemarkt-red-light) 0%, var(--gemarkt-red-dark) 50%, var(--gemarkt-red-dark) 100%) !important;
  color: white !important;
  border: none !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 16px rgba(124, 93, 255, 0.4) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.btn-clear-search-filter:hover {
  background: linear-gradient(135deg, var(--gemarkt-red-dark) 0%, var(--gemarkt-red-dark) 50%, #5035f0 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(124, 93, 255, 0.5),
    0 0 0 4px rgba(124, 93, 255, 0.15) !important;
}

.btn-clear-search-filter:active {
  transform: translateY(0) !important;
  box-shadow: 0 4px 16px rgba(124, 93, 255, 0.4) !important;
}

/* Kategoriye Özel Arama */
.category-search-box {
  padding: 0 15px;
  width: 100% !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0 auto 20px auto !important;
  clear: both;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  border: 1.5px solid rgba(124, 93, 255, 0.2);
  box-shadow: 0 4px 20px rgba(124, 93, 255, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  padding: 20px 24px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-search-box:hover {
  box-shadow: 0 6px 28px rgba(124, 93, 255, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  border-color: rgba(124, 93, 255, 0.3);
}

.category-filters {
  display: none !important;
}

.subcategory-sidebar {
  margin-top: 20px;
}

.category-search-input-wrapper {
  width: 100%;
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.category-search-input {
  position: relative;
  z-index: 1;
  border: 1.5px solid rgba(124, 93, 255, 0.2) !important;
  border-radius: 12px !important;
  background: rgba(248, 250, 255, 0.8) !important;
  color: #1f2937 !important;
  font-weight: 500 !important;
  box-shadow: 0 2px 12px rgba(124, 93, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.category-search-input:focus {
  border-color: rgba(124, 93, 255, 0.4) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 4px 20px rgba(124, 93, 255, 0.15),
    0 0 0 4px rgba(124, 93, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  transform: translateY(-1px);
  z-index: 1;
}

.category-search-btn {
  border: 1.5px solid rgba(124, 93, 255, 0.2) !important;
  border-radius: 12px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 2px 12px rgba(124, 93, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.category-search-btn:hover {
  background: linear-gradient(135deg, var(--gemarkt-red-dark) 0%, var(--gemarkt-red-dark) 50%, #5035f0 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(124, 93, 255, 0.5),
    0 0 0 4px rgba(124, 93, 255, 0.15) !important;
  border-color: rgba(124, 93, 255, 0.6) !important;
}

.category-search-btn:active {
  transform: translateY(0) !important;
  box-shadow: 0 4px 16px rgba(124, 93, 255, 0.4) !important;
}

@media (max-width: 768px) {
  .category-search-box {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .category-search-input {
    width: 100% !important;
    min-width: 100% !important;
  }

  .category-search-input-wrapper {
    max-width: 100%;
  }

  .category-search-btn {
    width: 100%;
  }
}

/* Sağ taraf: Ürün içeriği - başlık fiyat vs */
#productQuickView .pqv-content {
  flex: 1 1 50%;
  padding: 32px 40px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.98);
}

#productQuickView .pqv-description-wrap {
  margin-top: 24px;
  padding: 24px;
  background: rgba(248, 250, 255, 0.6);
  border-radius: 16px;
  border: 1.5px solid rgba(124, 93, 255, 0.1);
}

#productQuickView .pqv-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #1f2937;
  margin: 0;
  font-weight: 400;
}

#productQuickView .pqv-title {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gemarkt-red-light) 0%, var(--gemarkt-red-dark) 50%, var(--gemarkt-red-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

#productQuickView .pqv-meta {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  padding: 12px 16px;
  background: rgba(248, 250, 255, 0.8);
  border-radius: 12px;
  border: 1.5px solid rgba(124, 93, 255, 0.1);
}

#productQuickView .pqv-rating {
  opacity: 0.9;
}

#productQuickView .pqv-sku {
  color: var(--gemarkt-red-light);
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(124, 93, 255, 0.1);
  border-radius: 6px;
}

#productQuickView .pqv-stock {
  color: var(--gemarkt-red-light);
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(124, 93, 255, 0.1);
  border-radius: 6px;
}

/* pqv-actions kaldırıldı - Add to cart butonu yok artık */

/* Tab'lar kaldırıldı - sadece açıklama gösteriliyor */

@media (max-width: 992px) {
  #productQuickView .pqv-body {
    flex-direction: column;
    max-height: none;
  }

  #productQuickView .pqv-gallery {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    min-height: 280px;
    max-height: 50vh;
  }

  #productQuickView .pqv-gallery .owl-carousel,
  #productQuickView .pqv-gallery .owl-stage-outer,
  #productQuickView .pqv-gallery .owl-item,
  #productQuickView .pqv-item {
    min-height: 280px;
    max-height: 50vh;
  }

  #productQuickView .pqv-content {
    flex: 1 1 auto;
    padding: 20px;
    max-height: calc(100vh - 50vh - 150px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 768px) {
  #productQuickView.pqv-overlay {
    padding: 50px 10px 10px 10px;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
  }

  #productQuickView .pqv-modal {
    margin: 0 auto;
    max-height: calc(100vh - 70px);
    height: auto;
    min-height: 500px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }

  #productQuickView .pqv-close {
    right: 10px !important;
    top: 10px !important;
    z-index: 10001 !important;
    position: absolute !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  #productQuickView .pqv-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }

  #productQuickView .pqv-gallery {
    flex: 0 0 35vh !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    min-height: 260px;
    max-height: 35vh;
    height: 35vh !important;
    width: 100%;
    max-width: 100%;
    position: relative !important;
    z-index: 10;
    order: 1;
  }

  #productQuickView .pqv-gallery .owl-carousel,
  #productQuickView .pqv-gallery .owl-stage-outer,
  #productQuickView .pqv-gallery .owl-item,
  #productQuickView .pqv-item {
    min-height: 260px;
    max-height: 35vh;
  }

  #productQuickView .pqv-thumbnails {
    flex-shrink: 0 !important;
    flex: 0 0 auto !important;
    flex-grow: 0 !important;
    min-height: 0 !important;
    max-height: 120px !important;
    height: auto !important;
    position: relative !important;
    z-index: 10;
    order: 2;
  }

  #productQuickView .pqv-content {
    flex: 1 1 auto;
    flex-shrink: 1 !important;
    padding: 20px 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
    margin-top: 0;
    max-height: calc(70vh - 35vh - 120px) !important;
    position: relative !important;
    z-index: 1;
    order: 3;
  }
}

@media (max-width: 480px) {
  #productQuickView.pqv-overlay {
    padding: 50px 8px 8px 8px;
  }

  #productQuickView .pqv-modal {
    max-height: calc(100vh - 66px);
    height: auto;
    min-height: 450px;
    border-radius: 10px;
  }

  #productQuickView .pqv-body {
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }

  #productQuickView .pqv-gallery {
    flex: 0 0 32vh !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    height: 32vh !important;
    position: relative !important;
    z-index: 10;
    order: 1;
  }

  #productQuickView .pqv-thumbnails {
    flex-shrink: 0 !important;
    flex: 0 0 auto !important;
    flex-grow: 0 !important;
    height: auto !important;
    position: relative !important;
    z-index: 10;
    order: 2;
  }

  #productQuickView .pqv-content {
    flex: 1 1 auto;
    flex-shrink: 1 !important;
    max-height: calc(70vh - 32vh - 100px) !important;
    position: relative !important;
    z-index: 1;
    order: 3;
  }

  #productQuickView .pqv-close {
    right: 8px !important;
    top: 8px !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 28px !important;
  }

  #productQuickView .pqv-gallery {
    min-height: 240px;
    max-height: 32vh;
  }

  #productQuickView .pqv-gallery .owl-carousel,
  #productQuickView .pqv-gallery .owl-stage-outer,
  #productQuickView .pqv-gallery .owl-item,
  #productQuickView .pqv-item {
    min-height: 240px;
    max-height: 32vh;
  }

  #productQuickView .pqv-thumbnails {
    flex-shrink: 0 !important;
    flex: 0 0 auto !important;
    min-height: 0 !important;
    max-height: 100px !important;
  }

  #productQuickView .pqv-content {
    padding: 16px 12px;
    margin-top: 0;
  }
}

/* Carousel Slide Drag and Drop Styles */
.carousel-slide-item {
  transition: all 0.3s ease;
}

.carousel-slide-item.dragging {
  opacity: 0.5;
  transform: scale(0.95);
}

.carousel-slide-item.drag-over {
  border-color: var(--gemarkt-red) !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2) !important;
  transform: scale(1.02);
}

/*# sourceMappingURL=style.css.map */
