/* ================================================================
   ANFEDR Platform — Design System
   Vanilla CSS, no external dependencies
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties ──────────────────────────────────────── */
:root {
  /* Premium Burnt Orange Accent */
  --clr-primary:       #ea580c;
  --clr-primary-light: #f97316;
  --clr-primary-dark:  #c2410c;
  --clr-accent:        #d97706; /* Golden warm accent */

  /* Light Theme (Warm Ivory) */
  --clr-bg:            #fcfaf8;
  --clr-bg-2:          #f4f1ea;
  --clr-bg-3:          #eaddcf;
  --clr-surface:       #ffffff;
  --clr-border:        #e2e8f0;

  --clr-text:          #111827;
  --clr-text-2:        #374151;
  --clr-text-3:        #6b7280;

  /* Dark Theme (Deep Slate/Navy) */
  --clr-dark-bg:       #111827;
  --clr-dark-bg-2:     #1f2937;
  --clr-dark-bg-3:     #374151;
  --clr-dark-surface:  #1f2937;
  --clr-dark-border:   #374151;
  --clr-dark-text:     #fcfaf8;
  --clr-dark-text-2:   #e5e7eb;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 2px 4px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.03);
  --shadow-md:  0 8px 24px rgba(0,0,0,.08), 0 4px 8px rgba(0,0,0,.04);
  --shadow-lg:  0 24px 48px rgba(0,0,0,.12), 0 12px 24px rgba(0,0,0,.08);
  --shadow-xl:  0 40px 80px rgba(0,0,0,.18);
  --shadow-glow: 0 0 40px rgba(234, 88, 12, .25); /* Burnt orange glow */

  --transition: 300ms cubic-bezier(.4,0,.2,1);
  --transition-slow: 600ms cubic-bezier(.4,0,.2,1);
}

/* ── Dark mode ──────────────────────────────────────────────────── */
.dark {
  --clr-bg:      var(--clr-dark-bg);
  --clr-bg-2:    var(--clr-dark-bg-2);
  --clr-bg-3:    var(--clr-dark-bg-3);
  --clr-surface: var(--clr-dark-surface);
  --clr-border:  var(--clr-dark-border);
  --clr-text:    var(--clr-dark-text);
  --clr-text-2:  var(--clr-dark-text-2);
  --clr-text-3:  #9ca3af;
}

/* ── Reset & Base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  transition: background var(--transition), color var(--transition);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; letter-spacing: -.02em; }

/* ── Utility helpers ────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.flex      { display: flex; }
.grid      { display: grid; }
.hidden    { display: none !important; }
.sr-only   { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0); }

/* ── Skeleton loader ────────────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -800px 0; }
  100% { background-position:  800px 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--clr-bg-3) 25%, var(--clr-bg-2) 50%, var(--clr-bg-3) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.6s infinite;
  border-radius: var(--radius-md);
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-weight: 600; font-size: .9rem;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: #fff;
  box-shadow: 0 4px 14px rgba(146, 64, 14, .35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(146, 64, 14, .45);
}
.btn-secondary {
  background: var(--clr-bg-3);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}
.btn-secondary:hover { background: var(--clr-border); transform: translateY(-1px); }
.btn-danger {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  box-shadow: 0 4px 14px rgba(239,68,68,.3);
}
.btn-danger:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(239,68,68,.4); }
.btn-sm { padding: 6px 14px; font-size: .8rem; }

/* ── Form elements ──────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: .85rem; font-weight: 600; color: var(--clr-text-2); }
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: .9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(5,150,105,.15);
}
.form-textarea { resize: vertical; min-height: 80px; }

/* ── Cards ──────────────────────────────────────────────────────── */
.card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ── Badge ──────────────────────────────────────────────────────── */
.badge {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  font-size: .75rem; font-weight: 600;
}
.badge-green { background: #d1fae5; color: #065f46; }
.badge-blue  { background: #dbeafe; color: #1e40af; }
.badge-amber { background: #fef3c7; color: #92400e; }
.dark .badge-green { background: rgba(5,150,105,.2); color: #34d399; }
.dark .badge-blue  { background: rgba(59,130,246,.2); color: #93c5fd; }
.dark .badge-amber { background: rgba(146,64,14,.2); color: #fcd34d; }

/* ── Toast ──────────────────────────────────────────────────────── */
#toast-container { position: fixed; top: 24px; right: 24px; z-index: 1000; display: flex; flex-direction: column; gap: 12px; pointer-events: none; }
.toast {
  padding: 16px 20px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  font-size: .9rem; font-weight: 600; display: flex; align-items: center; gap: 12px;
  min-width: 280px; max-width: 400px;
  animation: toastIn .4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--clr-text);
}
.toast.hiding { animation: toastOut .3s ease forwards; }
.toast-success { background: rgba(16, 185, 129, 0.15); border-left: 4px solid #10b981; }
.toast-error   { background: rgba(239, 68, 68, 0.15); border-left: 4px solid #ef4444; }
.toast-info    { background: rgba(59, 130, 246, 0.15); border-left: 4px solid #3b82f6; }
.dark .toast-success { background: rgba(16, 185, 129, 0.1); border-color: rgba(255, 255, 255, 0.1); border-left-color: #34d399; }
.dark .toast-error   { background: rgba(239, 68, 68, 0.1); border-color: rgba(255, 255, 255, 0.1); border-left-color: #f87171; }
.dark .toast-info    { background: rgba(59, 130, 246, 0.1); border-color: rgba(255, 255, 255, 0.1); border-left-color: #60a5fa; }

@keyframes toastIn  { from { opacity:0; transform:translateX(100px) scale(0.9); } to { opacity:1; transform:translateX(0) scale(1); } }
@keyframes toastOut { from { opacity:1; transform:translateX(0) scale(1);    } to { opacity:0; transform:translateX(100px) scale(0.9); } }

/* ── Line clamp helpers ─────────────────────────────────────────── */
.line-clamp-2 { display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.line-clamp-3 { display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }

/* ── Scrollbar ──────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--clr-border); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-text-3); }
/* -- Floating Language Switcher -------------------------------- */
.lang-switcher {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

[dir="rtl"] .lang-switcher {
  right: auto;
  left: 2rem;
  align-items: flex-start;
}

.lang-fab {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.85); /* Premium dark */
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--clr-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  background: rgba(17, 24, 39, 0.95);
}

.lang-fab.open {
  background: var(--clr-brand);
  color: #fff;
  transform: rotate(90deg);
}

.lang-menu {
  position: absolute;
  bottom: calc(100% + 1rem);
  right: 0;
  background: rgba(17, 24, 39, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0.5rem;
  min-width: 180px;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform-origin: bottom right;
}

[dir="rtl"] .lang-menu {
  right: auto;
  left: 0;
  transform-origin: bottom left;
}

.lang-menu.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.lang-menu-header {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.5rem 1rem;
  margin-bottom: 0.25rem;
}

.lang-option {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

[dir="rtl"] .lang-option {
  text-align: right;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.05);
}

.lang-option.active {
  background: rgba(234, 88, 12, 0.15);
  color: var(--clr-brand);
  font-weight: 600;
}

.lang-flag {
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

[dir="rtl"] .lang-flag {
  margin-right: 0;
  margin-left: 0.75rem;
}

.lang-name {
  flex: 1;
}

.lang-code {
  font-size: 0.7rem;
  opacity: 0.5;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ── Dynamic Media Styles ──────────────────────────────────────── */
.media-btn-play {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.75);
  border: 2px solid rgba(234, 88, 12, 0.8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 0 0 2px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}
.media-btn-play:hover {
  transform: scale(1.1);
  background: var(--clr-primary);
  border-color: var(--clr-primary-dark);
  box-shadow: 0 12px 40px rgba(234, 88, 12, 0.4);
}

.media-btn-social {
  position: absolute;
  background: rgba(17, 24, 39, 0.85);
  border: 1px solid rgba(234, 88, 12, 0.5);
  color: #fcfaf8;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  text-decoration: none;
}
.media-btn-social:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(234, 88, 12, 0.35);
  color: #fff;
}

/* ── Polymorphic Media Cards & Live Engagement Engine ─────────────── */
.media-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}
/* Ensure stability for different card types */
.craft-card-media .media-viewport { aspect-ratio: 1 / 1; }
.news-card-media .media-viewport { aspect-ratio: 16 / 10; }
.artisan-card .media-viewport { aspect-ratio: 1 / 1; border-radius: 50%; overflow: hidden; margin-bottom: 20px; border: 4px solid var(--clr-surface); box-shadow: var(--shadow-md); }

.media-poster, .media-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.media-poster {
  z-index: 2;
  opacity: 1;
}
.media-video {
  z-index: 1;
  opacity: 0;
}

/* Hover-to-Play triggers */
.media-viewport.has-video:hover .media-poster {
  opacity: 0;
}
.media-viewport.has-video:hover .media-video {
  opacity: 1;
  transform: scale(1.03); /* slight cinematic zoom */
}

/* Glassmorphic Floating Quick-Bar */
.floating-quick-bar {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  display: flex;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}
.floating-quick-bar:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.6);
}
.quick-bar-icon {
  width: 18px; height: 18px;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.quick-bar-icon.video { color: #f97316; filter: drop-shadow(0 0 6px rgba(249,115,22,0.6)); }
.quick-bar-icon.link { color: #3b82f6; }

/* ── Media Hub Lightbox Engine ─────────────────────────────────── */
.media-hub-overlay {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.media-hub-overlay.hidden { display: none; }
.media-hub-backdrop {
  position: absolute; inset: 0;
  background: rgba(12, 17, 24, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: fadeIn 0.3s ease;
}
.media-hub-container {
  position: relative;
  width: 100%; max-width: 1100px;
  z-index: 1;
  display: flex; flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
  animation: zoomIn 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.media-hub-close {
  position: absolute;
  top: 16px; right: 20px;
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.8rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 20;
  transition: all 0.2s ease;
}
.media-hub-close:hover {
  background: #dc2626; color: #fff; transform: rotate(90deg);
}
.media-hub-viewport {
  width: 100%;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
/* By default 16:9 for landscape media */
.media-hub-viewport { aspect-ratio: 16 / 9; max-height: 65vh; }
.media-hub-content-node {
  width: 100%; height: 100%;
  object-fit: contain;
}

.media-hub-info {
  padding: 32px 40px;
  background: linear-gradient(180deg, rgba(17,24,39,0.8) 0%, rgba(17,24,39,1) 100%);
  text-align: left;
}
html[dir="rtl"] .media-hub-info { text-align: right; }

.media-hub-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700;
  color: #f9fafb;
  margin-bottom: 12px;
}
.media-hub-desc {
  font-size: 1rem; color: rgba(209, 213, 219, 0.9);
  line-height: 1.6; margin-bottom: 24px;
  max-width: 800px;
}
.media-hub-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
  color: #fff; font-weight: 600; font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative; overflow: hidden;
}

/* .mobile-only no longer needed — hamburger is universal */
.mobile-only { display: none !important; }

/* ── Mobile Drawer ────────────────────────────────────────────── */
.mobile-drawer-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.mobile-drawer-overlay.active { opacity: 1; visibility: visible; }

.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 280px;
  background: rgba(17, 24, 39, 0.95); backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255,255,255,0.1);
  z-index: 9999; transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex; flex-direction: column; padding: 32px 24px;
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}
html[dir="rtl"] .mobile-drawer { right: auto; left: 0; transform: translateX(-100%); border-left: none; border-right: 1px solid rgba(255,255,255,0.1); }

.mobile-drawer.active { transform: translateX(0); }
html[dir="rtl"] .mobile-drawer.active { transform: translateX(0); }

.mobile-drawer-close { align-self: flex-end; background: transparent; border: none;
  color: rgba(255,255,255,0.5); cursor: pointer; padding: 8px;
  transition: color 0.2s, transform 0.3s;
}
.mobile-drawer-close:hover { color: #fff; transform: rotate(90deg); }
html[dir="rtl"] .mobile-drawer-close { align-self: flex-start; }

.mobile-drawer-links { display: flex; flex-direction: column; gap: 8px; margin-top: 40px; }
.mobile-nav-link {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 10px;
  display: flex; align-items: center; gap: 12px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  position: relative;
}
.mobile-nav-link::before {
  content: '';
  display: block; width: 3px; height: 100%;
  background: var(--clr-primary);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.25s ease;
  flex-shrink: 0;
}
.mobile-nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
  transform: translateX(6px);
}
.mobile-nav-link:hover::before { opacity: 1; }
html[dir="rtl"] .mobile-nav-link:hover { transform: translateX(-6px); }

.mobile-drawer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 20px 0;
}
.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 12px;
}
.mobile-drawer-admin {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 10px;
  background: var(--clr-primary);
  color: #fff; font-weight: 600; font-size: 0.9rem;
  transition: background 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}
.mobile-drawer-admin:hover { background: var(--clr-primary-dark); transform: translateY(-2px); }

/* ── Desktop-scale drawer ─────────────────────────────────────── */
@media (min-width: 900px) {
  .mobile-drawer { width: 420px; padding: 48px 40px; }
  .mobile-drawer-links { gap: 4px; margin-top: 52px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-side { flex: unset; }
  .nav-logo-img { height: 46px; }
  .mobile-only { display: flex !important; }
}

.media-hub-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.5);
}

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

/* Google Translate Hidden Widget Hacks */
body { top: 0 !important; }
.skiptranslate, .goog-te-banner-frame { display: none !important; }
#google_translate_element { display: none !important; }
