@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');

::-webkit-scrollbar{
  width: 5px;
  height: 5px;
  background: transparent;
}
::-webkit-scrollbar:hover {
  width: 7px;
  height: 7px;
  background: var(--bg-soft);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb {
  background: #ffe68ba0;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ffe58b;
  border-radius: 999px;
}
:root {
  color-scheme: dark;
  --bg: #050608;
  --bg-soft: #0b0e14;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.16);
  --gold: #f4c542;
  --gold-2: #ffe58b;
  --gold-dark: #b8860b;
  --text: #f7f3e8;
  --muted: #b8b3a7;
  --danger: #ff5a62;
  --success: #4ade80;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --header: 82px;
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 0%, rgba(244, 197, 66, 0.12), transparent 28rem),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.07), transparent 18rem),
    linear-gradient(145deg, #020203 0%, #0a0d12 52%, #020203 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 78%);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(3, 5, 8, 0.78);
  backdrop-filter: blur(22px);
}

.nav {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Audiowide", system-ui, sans-serif;
  color: var(--gold);
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-text,
.logo-text,
.hero-brand,
.section-kicker {
  font-family: "Audiowide", sans-serif;
}

.site-logo {
  min-width: 0;
}

.site-logo-img {
  width: auto;
  height: clamp(76px, 7vw, 92px);
  max-width: 240px;
  object-fit: contain;
  image-rendering: auto;
}

.site-logo.logo-loaded .brand-text {
  display: none;
}

.site-logo.logo-missing .site-logo-img {
  display: none;
}

.site-logo .brand-text {
  font-size: 1.05rem;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-menu a {
  color: var(--muted);
  padding: 11px 14px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}

.main-menu a:hover,
.main-menu a.is-active {
  color: var(--text);
  background: rgba(244, 197, 66, 0.12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.35), rgba(0,0,0,.88)),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.86)),
    url("../img/car-placeholder.svg") center / cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 8% 9% 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 28px rgba(244, 197, 66, .7);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
  padding: 86px 0 120px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: 0;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1,
.page-hero h1 {
  font-family: "Audiowide", system-ui, sans-serif;
  font-size: clamp(2.9rem, 8vw, 7.2rem);
  line-height: .95;
  letter-spacing: 0;
  margin: 16px 0;
  color: var(--gold);
  text-shadow: 0 0 32px rgba(244, 197, 66, 0.32);
}

.hero h2 {
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  margin-bottom: 12px;
}

.hero p,
.page-hero p,
.section-head p,
.glass-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions,
.quick-actions,
.modal-actions,
.form-actions,
.card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #101010;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 34px rgba(244, 197, 66, .22);
}

.btn-ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.btn-yellow {
  color: #101010;
  border-color: rgba(244, 197, 66, .76);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.btn-outline {
  color: var(--gold-2);
  border-color: rgba(244, 197, 66, .42);
  background: rgba(244, 197, 66, .08);
}

.btn-danger {
  color: #fff;
  background: rgba(255, 90, 98, 0.24);
  border-color: rgba(255, 90, 98, 0.45);
}

.btn-small {
  min-height: 38px;
  padding: 8px 14px;
  font-size: .9rem;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 92px 0;
}

.section.compact {
  padding: 54px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.section-head h2,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 8px;
}

.glass-panel,
.car-card,
.filters-panel,
.tabs,
.gallery,
.detail-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.slider-row,
.featured-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 18px;
  overflow-x: auto;
  padding: 6px 4px 18px;
  scroll-snap-type: x mandatory;
}

.slider-row > *,
.featured-strip > * {
  scroll-snap-align: start;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  padding: 22px;
  min-height: 220px;
}

.feature-card h3 {
  color: var(--gold);
}

.car-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.car-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 20%), rgba(244,197,66,.24), transparent 16rem);
  transition: opacity .2s ease;
}

.car-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 197, 66, .48);
  box-shadow: 0 28px 90px rgba(0,0,0,.48), 0 0 34px rgba(244,197,66,.12);
}

.car-card:hover::after {
  opacity: 1;
}

.car-card.is-sold {
  border-color: rgba(255, 112, 128, 0.44);
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,90,98,.07));
}

.car-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #090b0f;
  overflow: hidden;
}

.car-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.car-card:hover .car-media img {
  transform: scale(1.045);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 900;
  font-size: .78rem;
  color: #07120b;
  background: var(--success);
}

.status-pill.sold {
  color: #210407;
  background: #ff7b83;
}

.car-media .status-pill {
  position: absolute;
  top: 12px;
  left: 12px;
}

.car-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.car-brand {
  margin-bottom: 5px;
  color: var(--gold);
  font-weight: 900;
}

.car-card h3 {
  min-height: 52px;
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.car-facts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.car-facts span,
.sold-meta span,
.mini-link {
  color: var(--muted);
  font-size: .88rem;
}

.car-facts span {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(255, 255, 255, .05);
}

.car-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.car-card-footer strong,
.detail-price {
  color: var(--gold-2);
  font-size: 1.22rem;
}

.sold-price {
  color: #ff747b !important;
}

.sold-card h3 {
  min-height: auto;
}

.sold-facts {
  margin-bottom: 12px;
}

.sold-card-details {
  display: grid;
  gap: 7px;
  margin-top: auto;
  color: var(--muted);
  font-size: .92rem;
}

.sold-card-details strong {
  color: var(--text);
}

.sold-card-details .sold-price-line strong {
  color: #ff8f98;
}

.card-actions,
.car-card-actions,
.admin-card-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.car-card .btn,
.admin-card-actions .btn,
.card-actions .btn {
  margin: 0;
}

.page-hero {
  padding: 82px 0 36px;
}

.page-hero .container {
  display: grid;
  gap: 14px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: start;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-card,
.info-card {
  padding: 24px;
}

.contact-card h2,
.info-card h2 {
  color: var(--gold);
}

.map-frame {
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.55)),
    url("../img/car-placeholder.svg") center / cover;
}

.tabs-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.tabs-bar button,
.tab-buttons button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.06);
  padding: 9px 16px;
  font-weight: 800;
}

.tabs-bar button.is-active,
.tab-buttons button.is-active {
  color: #111;
  background: var(--gold);
}

.cars-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  align-items: start;
}

.filters-panel {
  position: sticky;
  top: calc(var(--header) + 18px);
  padding: 18px;
}

.filters-panel form {
  display: grid;
  gap: 12px;
}

.field,
.form-field {
  display: grid;
  gap: 7px;
}

label {
  color: var(--muted);
  font-weight: 800;
  font-size: .9rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  color: var(--text);
  background: rgba(2, 4, 7, .62);
  padding: 10px 12px;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(244, 197, 66, .8);
  box-shadow: 0 0 0 3px rgba(244, 197, 66, .12);
}

.filter-toggle {
  display: none;
  margin-bottom: 14px;
}

.result-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  gap: 20px;
  align-items: start;
}

.gallery,
.detail-summary,
.tabs {
  padding: 18px;
}

.main-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  background: #050608;
}

.main-photo img,
.lightbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.18);
  color: var(--text);
  background: rgba(0,0,0,.44);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 2rem;
}

.gallery-arrow.prev {
  left: 12px;
}

.gallery-arrow.next {
  right: 12px;
}

.photo-counter {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--text);
  background: rgba(0,0,0,.45);
}

.thumb-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 90px;
  gap: 10px;
  overflow-x: auto;
  padding-top: 12px;
}

.thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: transparent;
}

.thumb.is-active {
  border-color: var(--gold);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-summary h1 {
  margin: 14px 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.detail-location {
  color: var(--muted);
}

.info-table,
.spec-list {
  display: grid;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.info-table div,
.spec-list div {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.info-table span,
.spec-list span {
  color: var(--muted);
}

.tabs {
  margin-top: 20px;
}

.tab-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.spec-group {
  margin-bottom: 26px;
}

.spec-group h3 {
  color: var(--gold);
}

.lightbox,
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,.86);
}

.lightbox.is-visible,
.modal-overlay.is-visible {
  display: grid;
}

.lightbox img {
  max-width: min(1100px, 96vw);
  max-height: 84vh;
}

.lightbox-close,
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
}

.modal-card {
  position: relative;
  width: min(520px, 100%);
  padding: 28px;
}

.modal-overlay.is-visible {
  place-items: start center;
  overflow: auto;
  padding-top: min(10vh, 80px);
}

.modal-form {
  display: grid;
  gap: 14px;
}

.modal-field {
  display: grid;
  gap: 7px;
}

.sahibinden-import-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-height: min(52vh, 520px);
  overflow: auto;
  padding-right: 4px;
}

.sahibinden-import-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}

.sahibinden-import-tile input {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 8px;
  width: 20px;
  min-height: 20px;
  accent-color: var(--gold);
}

.sahibinden-import-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.toast-host {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 500;
  display: grid;
  gap: 10px;
}

.toast {
  width: min(360px, calc(100vw - 36px));
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(10, 12, 16, .92);
  backdrop-filter: blur(18px);
  padding: 14px 16px;
  transform: translateY(12px);
  opacity: 0;
  transition: .2s ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.toast-error {
  border-left-color: var(--danger);
}

.toast-success {
  border-left-color: var(--success);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 34px;
  text-align: center;
}

.empty-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid rgba(244,197,66,.35);
}

.skeleton-card {
  min-height: 360px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.06);
  padding: 18px;
}

.skeleton-card span {
  display: block;
  height: 18px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.18), rgba(255,255,255,.08));
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite linear;
}

.skeleton-card span:first-child {
  height: 190px;
  margin-top: 0;
  border-radius: 8px;
}

.back-top {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: .2s ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .7fr);
  gap: 24px;
}
.footer-grid a:hover {
  color: var(--gold-2);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shimmer {
  to { background-position: -200% 0; }
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}

@media (max-width: 1080px) {
  .grid,
  .feature-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cars-layout,
  .detail-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .filters-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 72px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .menu-toggle {
    display: block;
  }

  .main-menu {
    position: fixed;
    inset: var(--header) 12px auto 12px;
    display: grid;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 10, 14, .92);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: .22s ease;
  }

  .main-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding: 74px 0 116px;
  }

  .hero-actions,
  .quick-actions,
  .form-actions,
  .card-actions {
    align-items: stretch;
  }

  .site-logo-img {
    height: clamp(52px, 12vw, 64px);
    max-width: 180px;
  }

  .hero-actions .btn,
  .quick-actions .btn,
  .form-actions .btn,
  .card-actions .btn {
    flex: 1 1 100%;
  }

  .sahibinden-import-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 64px 0;
  }

  .section-head,
  .result-head {
    display: grid;
  }

  .grid,
  .feature-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .slider-row,
  .featured-strip {
    grid-auto-columns: minmax(260px, 88vw);
  }

  .filter-toggle {
    display: inline-flex;
  }

  .filters-panel {
    display: none;
  }

  .filters-panel.is-open {
    display: block;
  }

  .info-table div,
  .spec-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .gallery,
  .detail-summary,
  .tabs {
    padding: 12px;
  }

  .thumb-row {
    grid-auto-columns: 74px;
  }
}


.footer{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  color: var(--gold-2);
  font-size: 0.9rem;
}

.footer-metin{
  border-top: 1px solid rgba(255,255,255,.1)
}