/* ================================================================
   WINMEDAL.EU — header-new.css
   New dark header — desktop + mobile
   ================================================================ */

/* ----------------------------------------------------------------
   CSS VARIABLES
   ---------------------------------------------------------------- */
:root {
  --wm-dark:       #0d0d0d;
  --wm-dark-soft:  #1a1a1a;
  --wm-red:        #d32f2f;
  --wm-red-dark:   #b71c1c;
  --wm-white:      #ffffff;
  --wm-gray-500:   #9e9e9e;
  --wm-gray-100:   #f5f5f5;
  --wm-font-display: 'Montserrat', sans-serif;
  --wm-font-body:    'DM Sans', sans-serif;
  --wm-header-h:   68px;
  --wm-banner-h:   38px;
  --wm-z-header:   1000;
  --wm-z-mega:     999;
  --wm-z-offcanvas: 1100;
  --wm-z-overlay:  1050;
}


/* ----------------------------------------------------------------
   TOP BANNER
   ---------------------------------------------------------------- */
.wm-banner {
  position: relative;
  background: #111;
  color: rgba(255,255,255,0.85);
  font-family: var(--wm-font-body);
  font-size: 13px;
  font-weight: 500;
  height: var(--wm-banner-h);
  overflow: hidden;
  display: flex;
  align-items: center;
  letter-spacing: 0.3px;
}

.wm-banner-marquee {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.wm-banner-marquee span {
  display: inline-block;
  animation: wmMarquee 28s linear infinite;
  padding-left: 100%;
}

@keyframes wmMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.wm-banner-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 20px;
  line-height: 1;
  padding: 0 14px;
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.2s;
}
.wm-banner-close:hover { color: #fff; }

.wm-banner.wm-banner--hidden {
  display: none;
}


/* ----------------------------------------------------------------
   HEADER
   ---------------------------------------------------------------- */
.wm-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--wm-z-header);
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  height: var(--wm-header-h);
  transition: box-shadow 0.3s, background 0.3s;
}

.wm-header.wm-header--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}

.wm-header-inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 24px;
}


/* ----------------------------------------------------------------
   LOGO
   ---------------------------------------------------------------- */
.wm-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 32px;
  text-decoration: none;
}

.wm-logo img {
  height: 44px;
  width: auto;
  display: block;
}


/* ----------------------------------------------------------------
   DESKTOP NAV
   ---------------------------------------------------------------- */
nav {
  flex: 1;
}

.wm-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  height: var(--wm-header-h);
}

.wm-nav > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.wm-nav > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 13px;
  height: 100%;
  font-family: var(--wm-font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--wm-dark);
  text-decoration: none;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}

.wm-nav > li > a:hover,
.wm-nav > li:hover > a {
  color: var(--wm-red);
  border-bottom-color: var(--wm-red);
}

.wm-chevron {
  font-size: 9px;
  transition: transform 0.25s;
}

.wm-nav > li:hover .wm-chevron {
  transform: rotate(180deg);
}


/* ----------------------------------------------------------------
   DROPDOWN
   ---------------------------------------------------------------- */
.wm-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-top: 2px solid var(--wm-red);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  z-index: 10;
}

.wm-nav > li:hover .wm-dropdown {
  display: block;
  animation: wmDropIn 0.18s ease;
}

@keyframes wmDropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wm-dropdown li a {
  display: block;
  padding: 9px 18px;
  font-family: var(--wm-font-body);
  font-size: 13.5px;
  color: var(--wm-dark);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.wm-dropdown li a:hover {
  background: var(--wm-gray-100);
  color: var(--wm-red);
}

.wm-badge {
  display: inline-block;
  background: var(--wm-red);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 4px;
}


/* ----------------------------------------------------------------
   MEGA MENU — SPORTS
   ---------------------------------------------------------------- */
.wm-mega {
  display: none;
  position: fixed;
  top: calc(var(--wm-banner-h) + var(--wm-header-h));
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid var(--wm-red);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  z-index: var(--wm-z-mega);
}

.wm-nav > li:hover .wm-mega {
  display: block;
  animation: wmDropIn 0.2s ease;
}

.wm-mega-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 32px 32px;
}

.wm-mega-title {
  font-family: var(--wm-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--wm-gray-500);
  margin-bottom: 20px;
}

.wm-mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 20px 12px;
}

.wm-sport-group {
  min-width: 0;
}

.wm-sport-name {
  font-family: var(--wm-font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--wm-dark);
  margin-bottom: 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wm-sport-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.wm-sport-links a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--wm-font-body);
  font-size: 12.5px;
  color: #444;
  text-decoration: none;
  padding: 3px 0;
  transition: color 0.15s;
}

.wm-sport-links a:hover {
  color: var(--wm-red);
}

.wm-icon-medal,
.wm-icon-trophy {
  font-size: 13px;
  flex-shrink: 0;
}


/* ----------------------------------------------------------------
   HEADER ACTIONS (right side)
   ---------------------------------------------------------------- */
.wm-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
  flex-shrink: 0;
}

.wm-btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--wm-red);
  color: #fff !important;
  font-family: var(--wm-font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-decoration: none !important;
  border-radius: 6px;
  transition: background 0.2s;
  white-space: nowrap;
}
.wm-btn-contact:hover { background: var(--wm-red-dark); }

.wm-btn-catalog {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: transparent;
  color: var(--wm-dark);
  border: 1.5px solid rgba(0,0,0,0.15);
  font-family: var(--wm-font-display);
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.wm-btn-catalog:hover { border-color: var(--wm-red); color: var(--wm-red); }

.wm-catalog-drop {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-top: 2px solid var(--wm-red);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 12px 0 8px;
  z-index: 20;
}
.wm-catalog-drop.wm-open { display: block; animation: wmDropIn 0.18s ease; }

.wm-catalog-drop h6 {
  font-family: var(--wm-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--wm-gray-500);
  padding: 0 16px;
  margin: 0 0 4px;
}

.wm-catalog-drop a {
  display: block;
  padding: 8px 16px;
  font-family: var(--wm-font-body);
  font-size: 13px;
  color: var(--wm-dark);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.wm-catalog-drop a:hover { background: var(--wm-gray-100); color: var(--wm-red); }

.wm-catalog-drop hr {
  margin: 8px 0;
  border-color: rgba(0,0,0,0.07);
}


/* Language switcher */
.wm-lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  color: var(--wm-dark);
}
.wm-lang-btn img {
  width: 22px;
  height: auto;
  border-radius: 2px;
}
.wm-lang-btn i { font-size: 9px; color: var(--wm-gray-500); }

.wm-lang-drop {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 6px;
  z-index: 20;
  min-width: 60px;
}
.wm-lang-drop.wm-open { display: flex; flex-direction: column; gap: 2px; animation: wmDropIn 0.18s ease; }

.wm-lang-drop a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 4px;
  font-family: var(--wm-font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--wm-dark);
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.wm-lang-drop a:hover { background: var(--wm-gray-100); }
.wm-lang-drop a img {
  width: 20px;
  height: auto;
  border-radius: 2px;
}

/* Hamburger */
.wm-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.wm-hamburger span {
  display: block;
  height: 2px;
  background: var(--wm-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Page overlay (mega menu bg) */
.wm-page-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: calc(var(--wm-z-mega) - 1);
}
.wm-page-overlay.wm-active { display: block; }


/* ----------------------------------------------------------------
   MOBILE OFFCANVAS
   ---------------------------------------------------------------- */
.wm-offcanvas-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: calc(var(--wm-z-offcanvas) - 1);
}
.wm-offcanvas-overlay.wm-active { display: block; }

.wm-offcanvas {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 92vw);
  height: 100dvh;
  background: #fff;
  z-index: var(--wm-z-offcanvas);
  overflow-y: auto;
  transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.wm-offcanvas.wm-open { right: 0; }

.wm-offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  flex-shrink: 0;
}
.wm-offcanvas-header img {
  height: 36px;
  width: auto;
}

.wm-offcanvas-close {
  background: none;
  border: none;
  font-size: 26px;
  color: #666;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: color 0.2s;
}
.wm-offcanvas-close:hover { color: var(--wm-dark); }

/* Mobile nav list */
.wm-mobile-nav {
  list-style: none;
  margin: 0;
  padding: 8px 0 16px;
  flex: 1;
}

.wm-mobile-nav > li > a {
  display: block;
  padding: 13px 20px;
  font-family: var(--wm-font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--wm-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color 0.2s;
}
.wm-mobile-nav > li > a:hover { color: var(--wm-red); }

.wm-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 20px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-family: var(--wm-font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--wm-dark);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.wm-mobile-toggle:hover { color: var(--wm-red); }
.wm-mobile-toggle i { transition: transform 0.25s; font-size: 10px; }
.wm-mobile-toggle.wm-open i { transform: rotate(180deg); }

.wm-mobile-sub {
  display: none;
  background: #f9f9f9;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.wm-mobile-sub.wm-open { display: block; }

.wm-mobile-sub a {
  display: block;
  padding: 9px 28px;
  font-family: var(--wm-font-body);
  font-size: 13.5px;
  color: #333;
  text-decoration: none;
  transition: color 0.15s;
  border-left: 2px solid transparent;
}
.wm-mobile-sub a:hover { color: var(--wm-red); border-left-color: var(--wm-red); }

.wm-mobile-sport-title {
  padding: 8px 28px 4px;
  font-family: var(--wm-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--wm-gray-500);
}

/* Mobile actions (bottom of offcanvas) */
.wm-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.wm-m-contact,
.wm-m-catalog {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  font-family: var(--wm-font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.wm-m-contact {
  background: var(--wm-red);
  color: #fff !important;
}
.wm-m-contact:hover { background: var(--wm-red-dark); }

.wm-m-catalog {
  background: transparent;
  color: var(--wm-dark) !important;
  border: 1.5px solid rgba(0,0,0,0.15);
}
.wm-m-catalog:hover { border-color: var(--wm-dark); }


/* ----------------------------------------------------------------
   MOBILE STICKY CTA (footer.php — poza overflow:hidden)
   ---------------------------------------------------------------- */
.wm-mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  padding: 8px 12px;
  background: rgba(255,255,255,0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 -2px 20px rgba(0,0,0,0.08);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .wm-mobile-sticky-cta {
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
  }
}

.wm-mobile-sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  background: var(--wm-red);
  color: #fff;
  font-family: var(--wm-font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
}
.wm-mobile-sticky-cta a:hover,
.wm-mobile-sticky-cta a:active {
  background: var(--wm-red-dark);
  color: #fff;
}

@media (max-width: 1100px) {
  .wm-mobile-sticky-cta { display: block; }
  body { padding-bottom: 68px; }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  @media (max-width: 1100px) {
    body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
  }
}

@media (min-width: 1101px) {
  .wm-mobile-sticky-cta { display: none !important; }
}


/* ----------------------------------------------------------------
   BREADCRUMBS — header pasek (blog, archive, itd.)
   OPCJA A: dark background
   ---------------------------------------------------------------- */
.breadcrumd-section {
  background: #111 !important;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-top: 0 !important;
}

.breadcrumd-section .container-fluid {
  padding-top: 10px;
  padding-bottom: 10px;
}

.breadcrumd-section p.breadcrumbs,
.breadcrumd-section .breadcrumbs {
  font-family: var(--wm-font-body) !important;
  font-size: 12px !important;
  color: rgba(255,255,255,0.45) !important;
  margin: 0 !important;
  padding: 0 !important;
}

.breadcrumd-section .breadcrumbs a {
  color: rgba(255,255,255,0.55) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}
.breadcrumd-section .breadcrumbs a:hover { color: #fff !important; }

.breadcrumd-section .breadcrumb_last {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 600;
}


/* ----------------------------------------------------------------
   BREADCRUMBS — inside HERO (taxonomy pages)
   ---------------------------------------------------------------- */
.wm-hero-breadcrumbs {
  margin-bottom: 12px;
}

.wm-hero-crumbs {
  font-family: var(--wm-font-body) !important;
  font-size: 12.5px !important;
  font-weight: 500;
  margin-bottom: 0 !important;
  padding: 0 !important;
  list-style: none;
}

.wm-hero-crumbs,
.wm-hero-crumbs span {
  color: rgba(255,255,255,0.5) !important;
  font-size: 12.5px !important;
}

.wm-hero-crumbs a {
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none;
  transition: color 0.2s;
  padding: 0 !important;
}
.wm-hero-crumbs a:hover { color: #fff !important; }

.wm-hero-crumbs span.breadcrumb_last {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 600;
}


/* ----------------------------------------------------------------
   BREADCRUMBS — single product pages (medals, trophies)
   ---------------------------------------------------------------- */
.wm-product-breadcrumbs {
  padding: 14px 0 6px;
}

.wm-product-crumbs {
  font-family: var(--wm-font-body) !important;
  font-size: 12px !important;
  font-weight: 500;
  color: var(--wm-gray-500) !important;
  margin-bottom: 0 !important;
  padding: 0 12px !important;
}

.wm-product-crumbs a {
  color: var(--wm-dark-soft) !important;
  text-decoration: none !important;
  transition: color 0.2s;
  padding: 0 !important;
}
.wm-product-crumbs a:hover { color: var(--wm-red) !important; }

.wm-product-crumbs span { color: var(--wm-gray-500) !important; font-size: 12px !important; }
.wm-product-crumbs span.breadcrumb_last { color: var(--wm-dark) !important; font-weight: 600; }


/* ----------------------------------------------------------------
   HIDE breadcrumbs on taxonomy pages (they have hero breadcrumbs)
   ---------------------------------------------------------------- */
.tax-dyscyplina-sportowa .breadcrumd-section,
.tax-tagi-trofeow .breadcrumd-section,
.tax-medale-tagi .breadcrumd-section {
  display: none !important;
}


/* ----------------------------------------------------------------
   HIDE old header elements if Max Mega Menu styles linger
   ---------------------------------------------------------------- */
#mega-menu-wrap-main-menu,
.medals_home_header_container,
.banner_europe {
  display: none !important;
}


/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet — hide some nav items */
@media (max-width: 1280px) {
  .wm-nav > li > a {
    padding: 0 10px;
    font-size: 12.5px;
  }
  .wm-logo { margin-right: 20px; }
  .wm-header-inner { padding: 0 16px; }
}

@media (max-width: 1100px) {
  .wm-hamburger { display: flex; }
  nav { display: none; }

  /* ============================================================
     DARK HEADER ON MOBILE
     ============================================================ */
  .wm-header {
    background: #0d0d0d !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  }
  .wm-header.wm-header--scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.4) !important;
  }

  /* ============================================================
     LAYOUT: logo LEFT | lang + hamburger RIGHT
     ============================================================ */
  .wm-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    gap: 0;
  }

  .wm-logo {
    flex: 1;
    margin-right: 0;
  }
  .wm-logo img {
    height: 40px;
    filter: brightness(1.1);
  }

  .wm-header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 0;
    flex-shrink: 0;
  }

  /* Hide contact + catalog on mobile */
  .wm-btn-contact,
  .wm-btn-catalog {
    display: none !important;
  }

  /* Lang button before hamburger */
  .wm-lang-btn {
    background: none;
    order: 1;
  }
  .wm-lang-btn i { color: rgba(255,255,255,0.5) !important; }
  .wm-lang-drop { right: 0; left: auto; }

  .wm-hamburger {
    display: flex;
    order: 2;
  }
  .wm-hamburger span { background: #ffffff !important; }
}


/* ================================================================
   BADGE — NEW (animated pulse)
   ================================================================ */
.wm-badge--new {
  background: #1565c0 !important;
  animation: wmPulseNew 2s ease-in-out infinite;
  position: relative;
}

@keyframes wmPulseNew {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(21, 101, 192, 0.6);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(21, 101, 192, 0);
    transform: scale(1.08);
  }
}

@media (max-width: 480px) {
  .wm-header-inner { padding: 0 12px; }
  .wm-logo img { height: 38px; }
  .wm-banner { font-size: 12px; }
}
