/* ==========================================================
   Geldi Gidiyo | Shared Layout CSS v1.0
   Tüm sayfalarda ortak Navbar + Footer stilleri
   ========================================================== */

/* Eski header/footer'ları hemen gizle (JS kaldırana kadar FOUC önlenir) */
header:not(.gd-navbar),
footer:not(.gd-footer) {
  display: none !important;
}

/* Body padding/margin reset */
body {
  padding: 0 !important;
  margin: 0;
}

/* Index.html video-container offset fix */
.video-container {
  margin-top: 0 !important;
}

/* === CSS DEĞİŞKENLERİ === */
:root {
  --gd-purple: #4b1f8a;
  --gd-purple-dark: #340e6e;
  --gd-purple-light: #6f42c1;
  --gd-purple-soft: #f0ebff;
  --gd-red: #d62828;
  --gd-red-dark: #a11010;
  --gd-neutral-100: #f4f4f5;
  --gd-neutral-200: #e4e4e7;
  --gd-neutral-500: #71717a;
  --gd-neutral-700: #3f3f46;
  --gd-neutral-900: #18181b;
  --gd-white: #ffffff;
  --gd-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --gd-shadow-md: 0 4px 14px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.07);
  --gd-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
  --gd-shadow-red: 0 8px 30px rgba(214, 40, 40, 0.25);
  --gd-radius-sm: 8px;
  --gd-radius-md: 14px;
  --gd-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === SKIP LINK === */
.gd-skip-link {
  position: absolute;
  top: -9999px;
  left: -9999px;
  background: var(--gd-purple);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--gd-radius-sm);
  font-weight: 600;
  z-index: 9999;
  transition: none;
  font-family: 'Inter', system-ui, sans-serif;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
}
.gd-skip-link:focus {
  top: 16px;
  left: 16px;
  opacity: 1;
  pointer-events: auto;
}

/* ========================================
   NAVBAR (sadece logo + giriş yap)
   ======================================== */
.gd-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: var(--gd-transition);
  font-family:
    'Inter',
    system-ui,
    -apple-system,
    sans-serif;
}
.gd-navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gd-navbar-inner {
  width: 100%;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.gd-navbar-right {
  margin-left: auto;
}

.gd-navbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.gd-navbar-logo img {
  height: 56px;
  width: auto;
  max-width: none;
  display: block;
  transition: var(--gd-transition);
}
.gd-navbar-logo img:hover {
  transform: scale(1.04);
}

.gd-navbar-login {
  background: var(--gd-purple) !important;
  color: #fff !important;
  border-radius: 12px !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  box-shadow: 0 4px 14px rgba(75, 31, 138, 0.25);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  -webkit-tap-highlight-color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
}
.gd-navbar-login:hover {
  background: var(--gd-purple-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 36px rgba(75, 31, 138, 0.35) !important;
}
.gd-navbar-login:active {
  transform: scale(0.95);
  box-shadow: 0 2px 8px rgba(75, 31, 138, 0.2) !important;
}

/* === Panelim Button (oturum açık) === */
.gd-navbar-panel {
  background: linear-gradient(135deg, #16a34a, #22c55e) !important;
  color: #fff !important;
  border-radius: 12px !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.25);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  -webkit-tap-highlight-color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
}
.gd-navbar-panel:hover {
  background: linear-gradient(135deg, #15803d, #16a34a) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 36px rgba(22, 163, 74, 0.35) !important;
}
.gd-navbar-panel:active {
  transform: scale(0.95);
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.2) !important;
}

/* === WhatsApp CTA Button === */
.gd-navbar-cta {
  background: var(--gd-red) !important;
  color: #fff !important;
  border-radius: var(--gd-radius-sm) !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  box-shadow: var(--gd-shadow-red);
  transition: var(--gd-transition) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.gd-navbar-cta:hover {
  background: var(--gd-red-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 36px rgba(214, 40, 40, 0.35) !important;
}
.gd-navbar-cta:active {
  transform: scale(0.95);
  box-shadow: 0 2px 8px rgba(214, 40, 40, 0.2) !important;
}

/* === Header Nav (masaüstü menü) === */
.gd-header-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gd-header-nav a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gd-neutral-700);
  border-radius: 10px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.gd-header-nav a:hover {
  color: var(--gd-purple);
  background: var(--gd-purple-soft);
}
.gd-header-nav a:active {
  transform: scale(0.95);
}
.gd-header-nav a.active {
  color: var(--gd-purple);
  background: var(--gd-purple-soft);
  font-weight: 600;
}

/* Tablet ve mobilde header nav ve CTA gizle */
@media (max-width: 1024px) {
  .gd-header-nav {
    display: none;
  }
  .gd-navbar-cta {
    display: none !important;
  }
  .gd-navbar-inner {
    height: 72px;
    padding: 0 20px;
  }
  .gd-navbar-logo img {
    height: 52px;
  }
  .gd-navbar-login {
    padding: 12px 24px !important;
    font-size: 14px !important;
    border-radius: 14px !important;
  }
  .gd-navbar-panel {
    padding: 12px 24px !important;
    font-size: 14px !important;
    border-radius: 14px !important;
  }
}

@media (max-width: 420px) {
  .gd-navbar-inner {
    padding: 0 14px;
    height: 64px;
  }
  .gd-navbar-logo img {
    height: 46px;
  }
  .gd-navbar-login {
    padding: 10px 18px !important;
    font-size: 13px !important;
  }
  .gd-navbar-panel {
    padding: 10px 18px !important;
    font-size: 13px !important;
  }
}

/* ========================================
   BOTTOM NAVIGATION BAR (sadece mobil)
   ======================================== */
/* Masaüstünde gizle */
.gd-bottom-nav {
  display: none;
}
@media (max-width: 1024px) {
  .gd-bottom-nav {
    display: flex;
  }
}

.gd-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  align-items: flex-end;
  justify-content: space-around;
  background: linear-gradient(180deg, rgba(58, 18, 117, 0.92) 0%, rgba(52, 14, 110, 0.98) 100%);
  border-top: none;
  box-shadow:
    0 -4px 30px rgba(75, 31, 138, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-family:
    'Inter',
    system-ui,
    -apple-system,
    sans-serif;
  padding: 6px 6px calc(6px + env(safe-area-inset-bottom, 0px)) 6px;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
}

.gd-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
  padding: 8px 4px 6px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  min-width: 0;
  -webkit-tap-highlight-color: transparent;
}
.gd-bottom-nav-item i {
  font-size: 22px;
  line-height: 1;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gd-bottom-nav-item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  font-size: 9px;
  font-weight: 500;
  transition: all 0.2s ease;
  opacity: 0.8;
}
.gd-bottom-nav-item:hover {
  color: rgba(255, 255, 255, 0.85);
}
.gd-bottom-nav-item:active {
  transform: scale(0.88);
}

/* === Active state === */
.gd-bottom-nav-item.active {
  color: #fff;
  font-weight: 700;
}
.gd-bottom-nav-item.active i {
  transform: translateY(-2px) scale(1.18);
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.4));
}
.gd-bottom-nav-item.active span {
  font-weight: 700;
  opacity: 1;
}
.gd-bottom-nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

/* === CENTER FAB (Kargo Takip) === */
.gd-bottom-nav-fab {
  position: relative;
  margin-top: -22px;
  color: #fff !important;
}
.gd-bottom-nav-fab i {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: linear-gradient(135deg, #d62828, #ff4b4b);
  border-radius: 18px;
  box-shadow:
    0 6px 20px rgba(214, 40, 40, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gd-bottom-nav-fab:active i {
  transform: scale(0.9);
  box-shadow: 0 2px 8px rgba(214, 40, 40, 0.3);
}
.gd-bottom-nav-fab.active i {
  transform: scale(1.08);
  box-shadow:
    0 8px 28px rgba(214, 40, 40, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  filter: none;
}
.gd-bottom-nav-fab.active::after {
  display: none;
}
.gd-bottom-nav-fab span {
  margin-top: 2px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

/* ========================================
   FOOTER
   ======================================== */
.gd-footer {
  background: #340e6e;
  color: rgba(255, 255, 255, 0.85);
  padding: 40px 24px 80px;
  font-family:
    'Inter',
    system-ui,
    -apple-system,
    sans-serif;
  margin-top: 0;
}
.gd-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.gd-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .gd-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .gd-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.gd-footer-logo {
  height: 36px;
  width: auto;
  max-width: none;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  display: block;
}
.gd-footer-brand-text {
  font-size: 13px;
  line-height: 1.7;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.gd-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.gd-footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--gd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--gd-transition);
  color: #fff;
  text-decoration: none;
}
.gd-footer-social a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}
.gd-footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 14px;
}
.gd-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.gd-footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--gd-transition);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

/* ==========================================================
   PREMIUM MODAL FRAMEWORK — Apple / Shopify Glassmorphism
   ========================================================== */

/* ── Backdrop ── */
.gd-modal-backdrop {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(124, 58, 237, 0.24), transparent 42%),
    rgba(15, 23, 42, 0.66);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.gd-modal-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ── Modal Container ── */
.gd-modal {
  position: relative;
  width: min(520px, 100%);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  box-shadow: 0 32px 100px rgba(15, 23, 42, 0.28);
  overflow: hidden;
  font-family: Inter, system-ui, sans-serif;
  transform: translateY(16px) scale(0.985);
  transition: transform 0.25s ease;
}
.gd-modal-backdrop.is-visible .gd-modal {
  transform: translateY(0) scale(1);
}

/* ── Gradient Header ── */
.gd-modal-header {
  padding: 28px 28px 20px;
  background: linear-gradient(
    135deg,
    rgba(55, 18, 115, 0.98) 0%,
    rgba(91, 33, 182, 0.96) 55%,
    rgba(214, 40, 40, 0.94) 100%
  );
  color: #fff;
  text-align: center;
  position: relative;
}
.gd-modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.gd-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.gd-modal-title {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.gd-modal-subtitle {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ── Body ── */
.gd-modal-body {
  padding: 24px 28px 28px;
}

/* ── Close Button (header içi) ── */
.gd-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}
.gd-modal-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* ── Buttons ── */
.gd-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.gd-modal-btn {
  border: 0;
  border-radius: 14px;
  padding: 14px 20px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: Inter, system-ui, sans-serif;
}
.gd-modal-btn:hover {
  transform: translateY(-1px);
}
.gd-modal-btn--primary {
  background: linear-gradient(135deg, #d62828, #7c3aed);
  color: #fff;
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.22);
}
.gd-modal-btn--primary:hover {
  box-shadow: 0 16px 32px rgba(124, 58, 237, 0.3);
}
.gd-modal-btn--outline {
  background: #fff;
  color: #334155;
  border: 1px solid #d8b4fe;
}
.gd-modal-btn--outline:hover {
  border-color: #a78bfa;
  background: #faf7ff;
}
.gd-modal-btn--ghost {
  background: #f5f3ff;
  color: #5b21b6;
}
.gd-modal-btn--ghost:hover {
  background: #ede9fe;
}

/* ── Form Elements ── */
.gd-modal-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(216, 180, 254, 0.5);
  border-radius: 14px;
  font-size: 0.95rem;
  font-family: Inter, system-ui, sans-serif;
  color: #111827;
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(124, 58, 237, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  outline: none;
  box-sizing: border-box;
}
.gd-modal-input:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}
.gd-modal-input::placeholder {
  color: #94a3b8;
}
.gd-modal-label {
  display: block;
  color: #374151;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}

/* ── Status Messages ── */
.gd-modal-msg {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 12px;
  display: none;
}
.gd-modal-msg.is-visible {
  display: block;
}
.gd-modal-msg--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.gd-modal-msg--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ── Info Card (modal body içi) ── */
.gd-modal-info {
  padding: 16px 18px;
  border: 1px solid rgba(216, 180, 254, 0.45);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #faf7ff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}
.gd-modal-info strong {
  display: block;
  color: #111827;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.gd-modal-info span {
  color: #64748b;
  font-size: 0.83rem;
  line-height: 1.5;
}

/* ── Premium Drawer ── */
.gd-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.gd-drawer-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.gd-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-left: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: -16px 0 60px rgba(15, 23, 42, 0.22);
  z-index: 9998;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  font-family: Inter, system-ui, sans-serif;
}
.gd-drawer.is-open {
  right: 0;
}
.gd-drawer-header {
  padding: 20px 24px;
  background: linear-gradient(
    135deg,
    rgba(55, 18, 115, 0.98) 0%,
    rgba(91, 33, 182, 0.96) 55%,
    rgba(214, 40, 40, 0.94) 100%
  );
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.gd-drawer-title {
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
}
.gd-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.gd-drawer-close:hover {
  background: rgba(255, 255, 255, 0.35);
}
.gd-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

/* ── Premium Drawer Cards ── */
.gd-drawer-card {
  background: #fff;
  border: 1px solid rgba(216, 180, 254, 0.45);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.04);
}
.gd-drawer-card:hover {
  border-color: rgba(124, 58, 237, 0.32);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.1);
  transform: translateX(-2px);
}
.gd-drawer-empty {
  text-align: center;
  padding: 48px 20px;
  color: #94a3b8;
}
.gd-drawer-empty i {
  font-size: 48px;
  color: #d4d4d8;
  margin-bottom: 12px;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .gd-modal-backdrop {
    padding: 14px;
    align-items: flex-end;
  }
  .gd-modal-header,
  .gd-modal-body {
    padding-left: 18px;
    padding-right: 18px;
  }
  .gd-modal-actions {
    flex-direction: column;
  }
  .gd-modal-btn {
    width: 100%;
  }
  .gd-drawer {
    width: 100%;
    max-width: 100%;
    right: -100%;
  }
}
.gd-footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}
.gd-footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}
.gd-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.gd-footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.gd-footer-bottom a:hover {
  color: #fff;
}
@media (max-width: 480px) {
  .gd-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  .gd-footer {
    padding: 32px 16px 90px;
  }
}

/* Body bottom padding for bottom nav (tablet + mobil) */
@media (max-width: 1024px) {
  body {
    padding-bottom: 64px !important;
  }
}
