/* ═══════════════════════════════════════════════════════════════════════════
   layout.css — Header, footer, container, grid
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Container ───────────────────────────────────────────────────────────── */

.container {
  max-width: var(--wd-container-width);
  margin: 0 auto;
  padding: 0 var(--wd-container-padding);
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--wd-container-padding);
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--wd-container-padding);
}

/* ── Grid ────────────────────────────────────────────────────────────────── */

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  padding: 0 15px;
  flex: 1;
}

.col-auto   { flex: 0 0 auto; padding: 0 15px; }
.col-3      { flex: 0 0 25%; max-width: 25%; padding: 0 15px; }
.col-4      { flex: 0 0 33.333%; max-width: 33.333%; padding: 0 15px; }
.col-6      { flex: 0 0 50%; max-width: 50%; padding: 0 15px; }
.col-8      { flex: 0 0 66.666%; max-width: 66.666%; padding: 0 15px; }
.col-9      { flex: 0 0 75%; max-width: 75%; padding: 0 15px; }
.col-12     { flex: 0 0 100%; max-width: 100%; padding: 0 15px; }

/* ── Ana Sayfa Yapısı ────────────────────────────────────────────────────── */

:root {
  --wd-topbar-height:  36px;
  --wd-mainbar-height: 72px;
  --wd-navbar-height:  46px;
  --wd-header-total:   154px; /* topbar + mainbar + navbar */
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1;
  padding-top: var(--wd-header-total);
}

/* ── Üst Bilgi Çubuğu ────────────────────────────────────────────────────── */

.header-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  background: #0d0d0d;
  height: var(--wd-topbar-height);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-topbar__inner {
  max-width: var(--wd-container-width);
  margin: 0 auto;
  padding: 0 var(--wd-container-padding);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-topbar__left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-topbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}

.header-topbar__item:hover {
  color: rgba(255,255,255,0.85);
}

.header-topbar__sep {
  color: rgba(255,255,255,0.15);
  font-size: 12px;
}

.header-topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-topbar__social {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s ease;
}

.header-topbar__social:hover {
  color: rgba(255,255,255,0.85);
}

/* ── Ana Header (Logo + Arama + İkonlar) ─────────────────────────────────── */

.site-header {
  position: fixed;
  top: var(--wd-topbar-height);
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--wd-header-bg);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.header-main {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.header-main__inner {
  max-width: var(--wd-container-width);
  margin: 0 auto;
  padding: 0 var(--wd-container-padding);
  height: var(--wd-mainbar-height);
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
}

.site-logo a {
  display: block;
  line-height: 0;
}

.site-logo img {
  height: 40px;
  width: auto;
}

/* Arama */
.header-search-wrap {
  flex: 1;
  max-width: 560px;
  position: relative;
}

.header-search-form {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 2px solid rgba(255,255,255,0.12);
  height: 44px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.header-search-form:focus-within {
  border-color: var(--wd-primary-color);
}

.header-search-category {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-right: 1px solid #ddd;
  background: #f5f5f5;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-search-category select {
  background: transparent;
  border: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #555;
  height: 100%;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  width: auto;
}

.header-search-category svg {
  color: #888;
  pointer-events: none;
}

.header-search-form input {
  flex: 1;
  border: none;
  height: 100%;
  padding: 0 14px;
  font-size: 13px;
  color: #333;
  background: transparent;
}

.header-search-form input::placeholder {
  color: #aaa;
}

.header-search-form input:focus {
  border-color: transparent;
  outline: none;
}

.header-search-form button {
  width: 46px;
  height: 100%;
  background: var(--wd-primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.header-search-form button:hover {
  background: var(--wd-primary-dark);
}

/* Arama Önerileri */
.search-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--wd-border-color);
  box-shadow: var(--wd-shadow-lg);
  z-index: 1050;
  display: none;
}

.search-suggestions.active {
  display: block;
}

.search-suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--wd-border-color-light);
  transition: background 0.2s ease;
  cursor: pointer;
}

.search-suggestion-item:last-child {
  border-bottom: none;
}

.search-suggestion-item:hover {
  background: var(--wd-gray-100);
}

.search-suggestion-item img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  flex-shrink: 0;
}

.search-suggestion-item .title {
  font-size: 13px;
  font-weight: 500;
  color: var(--wd-text-color);
}

.search-suggestion-item .price {
  font-size: 12px;
  color: var(--wd-primary-color);
  font-weight: 600;
}

.search-suggestions-footer {
  padding: 10px 14px;
  text-align: center;
  font-size: 12px;
  color: var(--wd-primary-color);
  font-weight: 600;
  background: var(--wd-gray-100);
  cursor: pointer;
}

.search-suggestions-footer:hover {
  background: var(--wd-gray-200);
}

/* Header Sağ Aksiyonlar */
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.header-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 10px;
  color: rgba(255,255,255,0.8);
  transition: color 0.25s ease;
  position: relative;
  text-decoration: none;
}

.header-action-btn:hover {
  color: #fff;
}

.header-action-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.header-action-count {
  position: absolute;
  top: 2px;
  right: 4px;
  min-width: 17px;
  height: 17px;
  background: var(--wd-primary-color);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 2px;
}

/* ── Nav Bar ─────────────────────────────────────────────────────────────── */

.header-nav {
  background: #1a1a1a;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.header-nav__inner {
  max-width: var(--wd-container-width);
  margin: 0 auto;
  padding: 0 var(--wd-container-padding);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 13px;
  height: var(--wd-navbar-height);
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: #fff;
  background: rgba(255,255,255,0.05);
}

.nav-menu > li > a .arrow {
  opacity: 0.6;
  transition: transform 0.25s ease;
}

.nav-menu > li:hover > a .arrow {
  transform: rotate(180deg);
}

.nav-whatsapp {
  color: #25d366 !important;
}

.nav-whatsapp:hover {
  background: rgba(37,211,102,0.08) !important;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-top: 2px solid var(--wd-primary-color);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.25s ease;
  z-index: 1001;
}

.nav-menu > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li a {
  display: block;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--wd-text-color);
  border-bottom: 1px solid var(--wd-border-color-light);
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.nav-dropdown li:last-child a {
  border-bottom: none;
}

.nav-dropdown li a:hover {
  background: var(--wd-gray-100);
  color: var(--wd-primary-color);
  padding-left: 24px;
}

/* Hamburger Menü */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobil Menü Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1099;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Mobil Menü Panel */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  background: #1a1a1a;
  z-index: 1100;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu-header img {
  height: 28px;
}

.mobile-menu-close {
  width: 32px;
  height: 32px;
  color: rgba(255,255,255,0.7);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  color: #fff;
}

.mobile-nav-list {
  padding: 10px 0;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s ease;
}

.mobile-nav-list li a:hover {
  color: var(--wd-primary-color);
}

.mobile-nav-list .mobile-dropdown {
  background: rgba(0,0,0,0.2);
  display: none;
}

.mobile-nav-list .mobile-dropdown.open {
  display: block;
}

.mobile-nav-list .mobile-dropdown a {
  padding: 11px 20px 11px 36px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--wd-footer-bg);
  color: rgba(255,255,255,0.75);
  margin-top: auto;
}

.footer-main {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr 1.5fr;
  gap: 40px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Footer Sütun 1 — Marka */
.footer-brand .logo {
  display: block;
  margin-bottom: 16px;
}

.footer-brand .logo img {
  height: 32px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}

.footer-contact-item svg,
.footer-contact-item i {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--wd-primary-color);
  width: 15px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.65);
  transition: color 0.25s ease;
}

.footer-contact-item a:hover {
  color: var(--wd-primary-color);
}

/* Footer Blog Yazıları */
.footer-posts .post-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-posts .post-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer-posts .post-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-posts .post-title {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.footer-posts .post-title a {
  color: inherit;
  transition: color 0.2s ease;
}

.footer-posts .post-title a:hover {
  color: var(--wd-primary-color);
}

.footer-posts .post-date {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

/* Footer Ürünler ve Genel Bilgi Linkleri */
.footer-links li {
  margin-bottom: 9px;
}

.footer-links li a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links li a:hover {
  color: var(--wd-primary-color);
  padding-left: 5px;
}

/* Footer Sosyal Medya */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  border-radius: var(--wd-border-radius);
  transition: background 0.25s ease, color 0.25s ease;
}

.footer-social a:hover {
  background: var(--wd-primary-color);
  color: #fff;
}

/* Footer Alt Bar */
.footer-bottom {
  background: var(--wd-footer-bottom-bg);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom .copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom .copyright a {
  color: rgba(255,255,255,0.5);
}

.footer-bottom .copyright a:hover {
  color: var(--wd-primary-color);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.7);
}

/* ── İçerik Alan Bileşenleri ─────────────────────────────────────────────── */

.page-header {
  background: var(--wd-gray-100);
  padding: 30px 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--wd-border-color-light);
}

.page-header h1 {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.page-header .subtitle {
  color: var(--wd-text-light);
  font-size: var(--wd-font-size-sm);
}

/* Sidebar / İçerik Yan Yana */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: calc(var(--wd-header-height) + 20px);
}

.sidebar-widget {
  background: #fff;
  border: 1px solid var(--wd-border-color-light);
  padding: 20px;
  margin-bottom: 20px;
}

.sidebar-widget-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wd-heading-color);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--wd-primary-color);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 1200px) {
  .nav-menu > li > a {
    padding: 0 9px;
    font-size: 10.5px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 992px) {
  /* Header: nav bar ve arama gizlenir, hamburger gösterilir */
  .header-nav { display: none; }
  .header-search-wrap { display: none; }
  .hamburger { display: flex; }

  /* Topbar ve header yüksekliği azaltılır */
  :root {
    --wd-header-total: 108px; /* topbar(36) + mainbar(72) */
  }

  .header-action-label { display: none; }

  .content-with-sidebar {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  /* Topbar gizlenir */
  .header-topbar { display: none; }
  :root {
    --wd-header-total: 72px; /* sadece mainbar */
  }
  .site-header { top: 0; }

  .header-main__inner { gap: 12px; }
  .site-logo img { height: 32px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-main { padding: 40px 0 30px; }

  .col-3, .col-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-8, .col-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .col-3, .col-4, .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Mobil bottom nav açıkken footer padding */
  .site-footer { padding-bottom: var(--wd-mobile-nav-height); }
}

/* ── Mobil Alt Navigasyon Çubuğu ─────────────────────────────────────────── */

.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: #fff;
  border-top: 1px solid var(--wd-border-color);
  height: var(--wd-mobile-nav-height);
}

.mobile-bottom-nav__inner {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.mobile-bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  color: var(--wd-gray-500);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.mobile-bottom-nav__item:hover,
.mobile-bottom-nav__item.active {
  color: var(--wd-primary-color);
}

.mobile-bottom-nav__item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.mobile-bottom-nav__item .nav-badge {
  position: absolute;
  top: 6px;
  right: calc(50% - 16px);
  min-width: 16px;
  height: 16px;
  background: var(--wd-primary-color);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* WhatsApp butonu — yeşil */
.mobile-bottom-nav__item.whatsapp {
  background: #25d366;
  color: #fff;
}

.mobile-bottom-nav__item.whatsapp:hover {
  background: #22be5c;
  color: #fff;
}

@media (max-width: 992px) {
  .mobile-bottom-nav { display: flex; }

  /* Bottom nav yüksekliğini içeriğe ekle */
  .site-content { padding-bottom: var(--wd-mobile-nav-height); }
}

/* ── Footer Mobil Accordion ──────────────────────────────────────────────── */

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-col {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  /* İlk sütun (marka) her zaman açık */
  .footer-col:first-child { border-bottom: none; }

  .footer-col-title {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 14px 0;
    border-bottom: none;
    user-select: none;
  }

  .footer-col-title::after {
    content: '';
    width: 10px;
    height: 6px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.5)'/%3E%3C/svg%3E") no-repeat center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
  }

  .footer-col.accordion-open .footer-col-title::after {
    transform: rotate(180deg);
  }

  .footer-col-body {
    display: none;
    padding-bottom: 14px;
  }

  .footer-col.accordion-open .footer-col-body {
    display: block;
  }

  /* İlk sütun her zaman görünür */
  .footer-col:first-child .footer-col-body { display: block; }
  .footer-col:first-child .footer-col-title { cursor: default; }
  .footer-col:first-child .footer-col-title::after { display: none; }
}

/* ── Footer Ödeme İkonları ───────────────────────────────────────────────── */

.footer-payment {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.footer-payment img {
  height: 24px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(0.2);
}

.footer-payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 7px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}
