/* Gençlik Dil — site design tokens & shared chrome utilities (FAZ 8) */
:root {
  --gd-primary: #2563eb;
  --gd-secondary: #10b981;
  --gd-dark: #0f172a;
}

/* Cart badge */
.gd-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #334155;
  text-decoration: none !important;
  flex-shrink: 0;
  transition: border-color .15s, color .15s;
}
.gd-cart-link:hover {
  border-color: #93c5fd;
  color: var(--gd-primary);
}
.gd-cart-badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.3rem;
  border-radius: 9999px;
  background: var(--gd-primary);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.15rem;
  text-align: center;
}

/* Mobile hamburger + panel */
.gd-hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: var(--gd-dark);
  cursor: pointer;
  flex-shrink: 0;
}
.gd-hamburger:hover {
  border-color: #93c5fd;
  color: var(--gd-primary);
}
@media (min-width: 768px) {
  .gd-hamburger { display: none !important; }
}

#mobile-nav {
  display: none;
  border-top: 1px solid #e2e8f0;
  background: #fff;
  padding: 0.75rem 1rem 1rem;
}
#mobile-nav.is-open {
  display: block;
}
@media (min-width: 768px) {
  #mobile-nav,
  #mobile-nav.is-open { display: none !important; }
}
#mobile-nav a,
#mobile-nav button.gd-mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.75rem 0.5rem;
  border: 0;
  background: transparent;
  border-bottom: 1px solid #f1f5f9;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gd-dark);
  text-decoration: none !important;
  text-align: left;
  cursor: pointer;
}
#mobile-nav a:last-child,
#mobile-nav button.gd-mobile-nav-link:last-child {
  border-bottom: 0;
}
#mobile-nav a:hover,
#mobile-nav button.gd-mobile-nav-link:hover {
  color: var(--gd-primary);
}
#mobile-nav a i,
#mobile-nav button.gd-mobile-nav-link i {
  width: 1.25rem;
  color: var(--gd-primary);
  text-align: center;
}

/* Header / footer brand helpers */
.gd-text-primary { color: var(--gd-primary) !important; }
.gd-text-secondary { color: var(--gd-secondary) !important; }
.gd-bg-primary { background-color: var(--gd-primary) !important; }
.gd-bg-secondary { background-color: var(--gd-secondary) !important; }
.gd-bg-dark { background-color: var(--gd-dark) !important; }
.gd-border-primary { border-color: var(--gd-primary) !important; }

/* Full-bleed homepage */
.home-fullbleed {
  width: 100%;
  max-width: 100%;
}
.home-hero-swiper {
  width: 100%;
}
.home-hero-swiper .swiper-slide {
  overflow: hidden;
}
.home-hero-copy {
  animation: home-fade-up .7s ease-out both;
}
@keyframes home-fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.home-search-bar {
  animation: home-fade-up .45s ease-out .1s both;
}
.home-langs-scroll {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.home-langs-scroll::-webkit-scrollbar {
  height: 4px;
}
.home-langs-scroll::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}
.home-listings-grid > article {
  height: 100%;
}
@media (max-width: 639px) {
  .home-hero-swiper .swiper-button-prev,
  .home-hero-swiper .swiper-button-next {
    display: none !important;
  }
  .home-search-band .home-search-bar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
