@charset "UTF-8";
/* =============================================
   ZMIENNE GLOBALNE
   ============================================= */
:root {
  /* Kolory — profil v2 */
  --ep-v2-primary: #2563eb;
  --ep-v2-success: #10b981;
  --ep-v2-text-dark: #1e293b;
  --ep-v2-text-light: #64748b;
  --ep-v2-bg-card: #fff;
  --ep-v2-border: #f1f5f9;
  /* Breakpointy */
  --bp-sm: 576px;
  --bp-md: 768px;
  --bp-lg: 992px;
  --bp-xl: 1200px;
  /* Kolory bazowe */
  --primary: #1969b9;
  --primary-dark: #3a5f9e;
  --primary-hover: #2563eb;
  --primary-light: #60a5fa;
  --accent-blue: #007bff;
  --accent-blue-light:#358edb;
  /* Job-specific */
  --job-blue: #1969b9;
  --job-card: #deedfb96;
  --job-success: #c0c0c0;
  --job-bg: #f8fafc;
  --job-border: #e2e8f0;
  --job-primary: #5072e1;
  --job-text-dark: #cccccc;
  --job-text-muted: #7f8694;
  /* Powierzchnia i tekst */
  --surface: #fff;
  --text-main: #1e293b;
  --text-muted: #6b7280;
  --text-gray: #475569;
  --text-light: #64748b;
  --text-color: #1f2937;
  /* Szarości / neutralne */
  --border: #e2e8f0;
  --light: #f8fafc;
  --gray-light: #f1f5f9;
  --gray: #94a3b8;
  --gray-dark: #64748b;
  --dark: #1e293b;
  --dark-color: #2d3748;
  --background-light: #f9fafb;
  /* Statusy */
  --secondary: #c0c0c0;
  --accent: #8b5cf6;
  --success: #c0c0c0;
  --danger: #ef4444;
  /* Cienie */
  --shadow: 0 4px 20px #00014;
  --shadow-sm: 0 1px 3px 0 #0001a, 0 1px 2px 0 #0000f;
  --shadow-md: 0 4px 6px -1px #0001a, 0 2px 4px -1px #0000f;
  --shadow-lg: 0 10px 15px -3px #0001a, 0 4px 6px -2px #0000d;
  /* Zaokrąglenia */
  --radius: 12px;
  --br-sm: 4px;
  --br-md: 6px;
  --br-lg: 8px;
  --br-xl: 12px;
  --br-full: 20px;
  /* Odstępy */
  --sp-xs: 2px;
  --sp-sm: 4px;
  --sp-md: 8px;
  --sp-lg: 12px;
  --sp-xl: 15px;
  --sp-2xl: 20px;
  --sp-3xl: 30px;
  /* Rozmiary fontów */
  --fs-xs: .7rem;
  --fs-sm: .8em;
  --fs-md: 1em;
  --fs-lg: 1.15em;
  --fs-xl: 14px;
  /* Inne */
  --transition: all .3s ease;
  --footer-link: inherit;
}

/* =============================================
   FONT & ANIMACJE
   ============================================= */
@font-face {
  font-family: ikony;
  src: url(/font/ikony.woff2) format("woff2");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}
@keyframes zoom {
  0% {
    transform: scale(0.1);
  }
  to {
    transform: scale(1);
  }
}
@keyframes shine-effect {
  0% {
    left: -75%;
  }
  50% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =============================================
   RESET / BAZA
   ============================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
  font-size: 12px;
  background: #f1eee8 url(images/tlo.webp) 0 0 repeat-x;
}
@media (max-width: 480px) {
  body {
    padding: 1px;
  }
}

a, a:hover {
  color: #039;
  text-decoration: none;
}

:focus {
  outline: 0;
}

form {
  margin: 0;
}

input, option, select, textarea {
  font-family: Verdana, sans-serif;
}

textarea {
  font-size: 14px;
  box-sizing: border-box;
  resize: vertical;
  width: 100%;
  height: 150px;
  padding: 10px;
}

button {
  color: #fff;
  background-color: var(--accent-blue-light);
  border: 1px outset #006595;
  font-family: Verdana, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

td {
  font-size: 14px;
}

h1 {
  font-size: 16pt;
  font-weight: 700;
}

h2, h3, h4 {
  font-size: 16px;
  font-weight: 700;
}

h4 {
  color: #039;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  display: inline;
}

h2 {
  color: #039;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  display: inline;
}

h3 {
  color: #333;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  display: inline;
}
h3 a {
  font-weight: 700;
  text-decoration: none;
}
h3 a:hover {
  color: #039;
  text-decoration: none;
}
/* Układ główny: treść + sidebar obok siebie */
.layout-main {
    display: flex;
    align-items: flex-start;
    gap: 16px;          /* odstęp między treścią a sidebarem, dopasuj */
}
.pagination { display: flex; gap: 4px; align-items: center; }
.pagination .current { font-weight: bold; padding: 4px 8px; }
main#content {
    flex: 1;
    min-width: 0;       /* chroni przed overflow długich słów */
}
.p-offer-section::after {
    content: '\e800'; /* kod ikony chevron */
    font-family: 'ikony';
}
/* Sidebar prawy — zachowaj oryginalną szerokość z CSS */
#sidebar_right_cities,
#sidebar_right {
    flex: 0 0 300px;    /* zamień 280px na wartość z Twojego starego CSS */
    width: 300px;
}
/* =============================================
   LAYOUT
   ============================================= */
#wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4px;
}
@media (max-width: 1210px) {
  #wrapper {
    width: auto;
    padding: 0;
  }
}

#header {
  padding: 0;
}

#content {
  padding: 10px;
}
@media (max-width: 1210px) {
  #content {
    padding: 0;
    width: 50%;
  }
}

#sidebar_right {
  background: #fff;
  border-radius: 12px;
  width: 300px;
  height: 100%;
  min-height: 583px;
  padding: 0;
  box-shadow: 5px 5px 5px #d4d9ea;
}

.container {
  background-color: #f5f5f5;
  max-width: 860px;
  margin: 0 auto;
  padding: 11px 11px 1px;
}
@media (max-width: 768px) {
  .container {
    padding: 11px 5px 0;
  }
}

.company-card {
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
  padding: 20px;
  padding-bottom: 0;
}

.cc-verified {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  background: #1D9E75;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-verified svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
}

.location-card-modern {
  border-radius: var(--radius);
  transition: var(--transition);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.0509803922);
  padding: 12px;
}

.location-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1019607843);
}

.location-header {
  background: var(--gray-light);
  align-items: center;
  gap: 15px;
  padding: 20px;
  display: flex;
}

.location-flag {
  border-radius: 8px;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1019607843);
}

.location-flag img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.location-name {
  margin-bottom: 5px;
  font-size: 1.2rem;
  font-weight: 700;
}

.location-info {
  padding: 20px;
}

.stat {
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  display: flex;
}

.stat i {
  color: var(--primary);
  text-align: center;
  width: 20px;
}

/* === BADGES === */
.cc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
  justify-content: center;
}

.cc-badgesprofil {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
  margin-top: 10px;
}

.cc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}

.cc-badgeprofil {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 20px;
  line-height: 1.4;
}

.cc-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 20px;
  line-height: 1.4;
}

.cc-badge svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.cc-badgeprofil svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.cc-badge--agency {
  background: #E6F1FB;
  color: #185FA5;
}

.cc-badge--direct {
  background: #F1EFE8;
  color: #5F5E5A;
}

.cc-badge--kraz {
  background: #EAF3DE;
  color: #3B6D11;
}

.cc-badge--recommended {
  background: #EEEDFE;
  color: #3C3489;
}

/* === ACTIONS === */
.cc-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: auto;
  margin-bottom: 20px;
}

.cc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
  cursor: pointer;
  border: none;
  background: transparent;
  border: 1px solid #c4800d;
  border-radius: 16px;
  margin-left: -20px;
  margin-right: -20px;
}

.cc-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.cc-btn--secondary {
  color: #666;
  border-right: 0.5px solid rgb(255, 152, 0);
}

.cc-btn--secondary:hover {
  background: #f5f5f3;
  color: #111;
}

.cc-btn--primary {
  color: #185FA5;
}

.cc-btn--primary:hover {
  background: #E6F1FB;
  color: #0C447C;
}

.cc-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.container-oferty {
  background-color: #f5f5f5;
  max-width: 1165px;
  margin: 0 auto;
  padding: 11px 11px 1px;
}

.firma-doswiadczenie {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #e6f7e6;
  color: #2e7d32;
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #a5d6a7;
  margin-bottom: 5px;
  margin-top: 10px;
}

.firma-sprawdzony {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #e6f0ff;
  color: #0052a3;
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #a5d6a7;
  margin-bottom: 5px;
  margin-top: 10px;
}

.firma-ekspert {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #fff3e0;
  color: #9d550a;
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #a5d6a7;
  margin-bottom: 5px;
  margin-top: 10px;
}

.kraz-icon {
  background: #4f7ab8;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.kraz-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.kraz-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #6c757d;
  letter-spacing: 0.5px;
}

.kraz-number {
  font-size: 14px;
  color: #2d6cdf;
  font-weight: 700;
}

.kraz-cert {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0px solid #dbe7ff;
  border-radius: 8px;
  padding: 10px;
  margin-top: 12px;
  justify-content: center;
}

.container-firmy {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px;
}

.main-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
  align-items: start;
  padding-bottom: 50px;
}
@media (min-width: 993px) {
  .main-layout {
    grid-template-columns: minmax(0, 1fr) 350px;
  }
}

.icon-trophy:before {
  content: "\e81d";
}

.icon-camera:before {
  content: "\e823";
}

.offer-cell-image {
  vertical-align: top;
  width: 180px;
  padding: 10px 0 10px 10px;
}

.offer-placeholder {
  color: #adb5bd;
  background-color: #f8f9fa;
  border: 1px dashed #ced4da;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  display: flex;
}

.offer-image-link {
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  width: 180px;
  height: 100px;
  display: block;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 10px;
}

.offer-row {
  transition: box-shadow 0.3s ease-in-out;
}

.offer-row > .offer-cell-image {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.offer-row > .offer-cell-content {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-left: 0;
  border-right-width: 1px;
}

.offer-row > td {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-right-width: 0;
}

.offer-row:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.0784313725);
}

.offer-cell-image {
  vertical-align: top;
  width: 180px;
  padding: 10px 0 10px 10px;
}

.offer-image-link {
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  width: 180px;
  height: 100px;
  display: block;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 10px;
}

.offer-img {
  object-fit: fill;
  object-position: center;
  width: 100%;
  height: 100%;
}

.offer-cell-content {
  vertical-align: top;
  min-width: 0;
  padding-left: 20px;
}

.offer-header {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5px;
  display: flex;
  position: relative;
}

.offer-title a {
  color: #1969b9;
  font-weight: 700;
  text-decoration: none;
}

.offer-title a:hover {
  color: #FF8C42;
  text-decoration: none;
}

.offer-title a:visited {
  color: #636e72;
}

.offer-footer {
  align-items: center;
  gap: 3px;
  display: flex;
}

.offer-category {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 0.85rem;
  color: #1e293b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.offer-category:hover {
  background: #e2e8f0;
  border-color: #94a3b8;
  color: #0f172a;
}

.offer-category i {
  color: #2563eb;
  font-size: 0.8rem;
}

.tt-track {
  position: relative;
  width: 56px;
  height: 28px;
  background: #1e293b;
  border-radius: 14px;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.3s;
  flex-shrink: 0;
}

.tt-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tt-icon {
  position: absolute;
  width: 14px;
  height: 14px;
  transition: opacity 0.25s, transform 0.25s;
}

.tt-sun {
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
}

.tt-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* stan jasny — dodaj klasę .light do przycisku JS-em */
.tt-track.light {
  background: #e0e7ff;
}

.tt-track.light .tt-thumb {
  transform: translateX(28px);
}

.tt-track.light .tt-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.tt-track.light .tt-moon {
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
}

.tt-track {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.titleblue {
  color: #0e467e;
  margin-bottom: -8px;
  margin-left: 0;
  padding-top: 0;
  font-family: Merriweather, serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
}

.info-text {
  margin-top: 15px;
  color: #718096;
  text-align: center;
  font-size: 0.75rem;
}

.info-icon {
  color: var(--primary);
  margin-right: 4px;
}

.info-text-bottom {
  margin-top: 1px;
  padding-bottom: 15px;
}

.form-info {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  text-align: center;
  color: #505153;
}

.form-info i {
  margin-right: 4px;
}

.titleblue h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: 500;
}

.header_t {
  height: 50px;
}

.header-table {
  width: 100%;
  border-collapse: collapse;
}

.table-full {
  width: 100%;
  border-collapse: collapse;
}

.text {
  padding-left: 15px;
}

.text-left {
  text-align: left;
}

.sidpanelpraco3 {
  vertical-align: top;
  height: 30%;
}

.hidem {
  display: none;
}

@media (min-width: 901px) {
  .hidem {
    display: block;
  }
}
/* =============================================
   TYPOGRAFIA / MISC
   ============================================= */
.header_t {
  height: 50px;
}

.nav-clear {
  clear: both;
}

.count {
  color: gray;
  margin-left: auto;
  font-size: 10px;
  font-weight: 400;
  display: block;
}
@media (max-width: 480px) {
  .count {
    font-size: 8px;
  }
}

/* ═══════════════════════════════════════════════
   NAWIGACJA
═══════════════════════════════════════════════ */
.main-navbar {
  background: #4b73ae;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1490196078);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 15px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
}
@media (max-width: 1210px) {
  .main-navbar {
    padding: 0 15px;
  }
}

.nav-brand {
  flex-shrink: 0;
}

.nav-desktop-menu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .nav-desktop-menu {
    display: none;
  }
}

.nav-wrapper {
  display: inline-block;
}

.nav-inner {
  padding: 5px 0;
}

.nav-list-top {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 0 0 auto;
  padding: 0;
}

.nav-link-top-active {
  background: rgba(255, 255, 255, 0.1490196078);
  border-bottom: 3px solid #ff9800;
}

.nav-item-top {
  position: relative;
}

.nav-text {
  color: #fff;
}

.nav-link-top {
  color: #fdfdfd;
  text-decoration: none;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 1210px) {
  .nav-link-top {
    padding: 15px 14px;
    font-size: 0.9rem;
  }
}
.nav-link-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1019607843);
  transform: translateY(100%);
  transition: transform 0.3s;
  z-index: -1;
}
.nav-link-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1490196078);
  color: #fff;
}
.nav-link-top:hover::before {
  transform: translateY(0);
}

.company-sidebar-2025 {
  max-width: 100%;
  transition: var(--transition);
  padding: 1px;
  font-family: Inter, system-ui, sans-serif;
}

.company-sidebar-2025:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1019607843);
}

.letter-header {
  color: #447fb5;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  margin: 0 0 0 -5px;
  padding-bottom: 0;
  border-bottom: 2px solid rgba(0, 123, 255, 0.1215686275);
  display: block;
  text-align: right;
}

.citylist_country {
  color: #000;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  margin-top: 2px;
  font-size: 16px;
  font-weight: 700;
  display: block;
}

.citylist_city {
  color: #000;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  font-size: 15px;
  font-weight: 600;
}

.nav-link-start {
  color: #fdfdfd;
  text-decoration: none;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #ff9800;
  border-image: linear-gradient(to right, #0000, #ff8c42, #0000) 1;
}

.favorites-link {
  position: relative;
}

.login-button {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3019607843);
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
}
.login-button:hover {
  background: rgba(255, 255, 255, 0.3019607843);
  border-color: rgba(255, 255, 255, 0.5019607843);
}

.nav-clear {
  clear: both;
}

/* Mobilne menu */
.mobile-menu-btn {
  display: none;
  background: 0 0;
  border: 0;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
}
.mobile-menu-btn.active .menu-line:first-child {
  transform: rotate(45deg) translate(6px, 6px);
}
.mobile-menu-btn.active .menu-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active .menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.menu-line {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
}
.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-overlay.active .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-panel {
  position: absolute;
  width: 90%;
  max-width: 400px;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
}

.mobile-nav-header {
  background: linear-gradient(135deg, #4f7ab8 0, #1b4386 100%);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1019607843);
}

.mobile-brand-text {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}

.mobile-close-btn {
  background: 0 0;
  border: 0;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
}
.mobile-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-nav-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px 0;
}

.mobile-nav-list {
  list-style: none;
}
.mobile-nav-list li {
  border-bottom: 1px solid #eee;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 25px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  font-size: 16px;
}
.mobile-nav-link::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #4f7ab8;
  border-bottom: 2px solid #4f7ab8;
  opacity: 0.5;
  transition: transform 0.3s;
  font-size: 16px;
}
.mobile-nav-link:hover {
  background: #f8f9fa;
  padding-left: 30px;
}
.mobile-nav-link:hover::after {
  transform: translateY(-50%) rotate(45deg);
}

.mobile-nav-active {
  background: rgba(79, 122, 184, 0.1019607843);
}

.mobile-nav-label {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 500;
}

.mobile-login {
  background: rgba(79, 122, 184, 0.1019607843);
  border: 2px solid #4f7ab8;
  margin: 15px 25px;
  border-radius: 10px;
  color: var(--primary-dark);
}
.activity-icon.success1 {
  color: #22c55e;
}
.success1 {
  color: #0f5132;
  border-color: #28a745;
}
.mobile-nav-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  text-align: center;
}
.firma-last-offer .last-offer-link {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
  display: block;
  margin-top: 11px;
  color: #2c6abd;
}
.firma-30d {
    color: var(--color-success, #27ae60);
    font-weight: 700;
}

.last-offer-link {
    color: inherit;
    text-decoration: none;
    font-size: 0.82em;
    font-weight: 500;
    max-width: 170px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.3;
}
.last-offer-link:hover {
    text-decoration: underline;
    color: var(--color-primary, #2980b9);
}
.firma-last-offer {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.firma-last-offer .activity-time {
    font-size: 12px;
    color: var(--color-muted, #888);
}
.mobile-copyright {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* desktop-only / mobile-only */
.desktop-only,
.mobile-only {
  display: flex;
}

@media (min-width: 769px) {
  .mobile-only {
    display: none;
  }
}
.op {
content-visibility: auto;
 contain: none;
}
/* =============================================
   PROFIL FIRMY — EP-V2
   ============================================= */
.ep-v2-container {
  width: 100%;
  margin-bottom: 25px;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

.ep-v2-main-card {
  background: linear-gradient(135deg, #f2f3f4 0, rgba(51, 113, 217, 0.4588235294) 100%);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--ep-v2-border);
  gap: 20px;
  display: flex; align-items: center
}
@media (min-width: 993px) {
  .ep-v2-main-card {
    flex-direction: row;
    justify-content: space-between;
    padding: 30px;
  }
}

.ep-v2-brand-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  flex: 1;
}
@media (min-width: 993px) {
  .ep-v2-brand-section {
    flex-direction: row;
    align-items: center;
  }
}

.ep-v2-avatar-wrapper {
  position: relative;
  width: 250px;
  height: 155px;
  flex-shrink: 0;
}

.ep-v2-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--ep-v2-border);
}

.ep-v2-company-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--ep-v2-text-dark);
  margin: 0;
}

.ep-v2-title-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
}
@media (min-width: 993px) {
  .ep-v2-title-row {
    flex-direction: row;
    align-items: center;
  }
}

.ep-v2-stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
@media (min-width: 993px) {
  .ep-v2-stats-grid {
    justify-content: flex-start;
  }
}

.ep-v2-stat-box {
  background: #f8fafc;
  padding: 15px 25px;
  border-radius: 12px;
  text-align: center;
  min-width: 120px;
  transition: transform 0.2s;
}
.ep-v2-stat-box:hover {
  transform: translateY(-3px);
}
@media (max-width: 480px) {
  .ep-v2-stat-box {
    width: 100%;
    justify-content: center;
  }
}

.ep-v2-stat-value {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--ep-v2-text-dark);
}

.ep-v2-stat-label {
  font-size: 12px;
  color: var(--ep-v2-text-light);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ep-v2-stat-trend {
  font-size: 11px;
  font-weight: 600;
  color: #077b55;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.ep-v2-section-header {
  margin-bottom: 25px;
}

.ep-v2-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
}

.ep-v2-section-subtitle {
  color: #64748b;
  font-size: 14px;
}

.ep-v2-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media (min-width: 641px) {
  .ep-v2-benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

.ep-v2-benefit-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: default;
}
.ep-v2-benefit-card:hover {
  background: #fff;
  border-color: #2563eb;
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.ep-v2-benefit-icon-wrapper {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0073b1;
  font-size: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.ep-v2-benefit-info {
  display: flex;
  flex-direction: column;
}

.ep-v2-benefit-name {
  font-weight: 600;
  color: #1e293b;
  font-size: 15px;
}

.ep-v2-benefit-desc {
  font-size: 12px;
  color: #64748b;
}

.ep-v2-verified-float {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--ep-v2-primary);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 2px solid #fff;
}
 .no-results {
            text-align: center;
            padding: 50px;
            color: #666;
            font-size: 16px;
        }
        
        .no-results i {
            font-size: 48px;
            color: #ddd;
            margin-bottom: 15px;
            display: block;
        }
/* =============================================
   NAGŁÓWEK OFERT FIRMY
   ============================================= */
.company-offers-header {
  margin: 25px 0 30px;
  padding: 25px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f8fafc 0, #eef2f7 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.company-offers-header::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
}
.company-offers-header__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.company-offers-header h2 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #1e293b;
}
.company-offers-header p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}
@media (min-width: 769px) {
  .company-offers-header p {
    font-size: 16px;
  }
}
@media (min-width: 769px) {
  .company-offers-header {
    padding: 35px 40px;
  }
}

/* =============================================
   SEKCJE NAGŁÓWKOWE
   ============================================= */
.section-header-main {
  text-align: center;
  border-radius: 12px;
  margin-top: -10px;
  margin-bottom: 0.5rem;
  padding: 0 1rem;
}
.section-header-main h2 {
  color: transparent;
  background: linear-gradient(90deg, #1e40af, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  display: inline-block;
}
.section-header-main h2 i {
  color: #f59e0b;
  margin-right: 0.75rem;
  font-size: 2rem;
}

.section-header-side {
  text-align: center;
  background: linear-gradient(135deg, #4a90e2 0 100%);
  border-radius: 12px;
  padding: 10px;
  border-bottom: 3px solid #ff8c42;
}
.section-header-side h2 {
  color: rgba(0, 0, 0, 0);
  background: linear-gradient(90deg, #fdfdff, #bdd1f2);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-block;
  margin-top: 3px;
}
.section-header-side h2 i {
  color: #FF8C42;
  margin-right: 0.75rem;
  font-size: 2rem;
}

.section-subtitle-side {
  color: #dde4ee;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.6;
}

.section-header-show {
  text-align: center;
  background-color: #f5f5f5;
  border-radius: 12px;
  margin-top: 25px;
  margin-bottom: 0.5rem;
  padding: 0 1rem;
}
.section-header-show h2 {
  color: transparent;
  background: linear-gradient(90deg, #1e40af, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  display: inline-block;
  border-bottom: 2px solid #0073b1;
  border-image: linear-gradient(to right, #0000, #3e8bdd, #0000) 1;
}
.section-header-show h2 i {
  color: #f59e0b;
  margin-right: 0.75rem;
  font-size: 2rem;
}

.section-subtitle-show {
  color: #656c79;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.6;
}

.section-sidebar {
  text-align: center;
  background: linear-gradient(135deg, #3182ce 0, #2c5282 100%);
  border-radius: 12px;
  margin-top: 5px;
  margin-bottom: 0.5rem;
  padding: 0 1rem;
}
.section-sidebar h2 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(90deg, #e3e5ea, #a8c9ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-top: 15px;
}
.section-sidebar h2 i {
  color: #f59e0b;
  margin-right: 0.75rem;
  font-size: 2rem;
}

.section-subtitle-sidebar {
  color: #e7e9ee;
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.6;
  padding-bottom: 15px;
}

.section-title {
  color: var(--dark);
  border-bottom: 2px solid var(--gray-light);
    border-image: linear-gradient(to right, #0000, #5cce3c, #0000) 1;
  align-items: center;
  gap: 10px;
  margin: 0 0 25px;
  padding-bottom: 12px;
  font-size: 1.2rem;
  display: flex;
  margin-bottom: 20px;
  font-weight: 700;
}
.section-title i {
  color: var(--primary);
  width: 24px;
}

.section-subtitle-firmy {
  font-size: 1.125rem;
  color: #656c79;
  max-width: 950px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 600;
}
.p-padding {
padding: 0px;
}
.p-padding2 {
padding: 10px; color: #666;
}
.p-m20 {
margin-top: 0px;
}
.p-p5 {
padding: 0 5px;
}
.p-p2 {
padding: 5px 10px;
}
.p-ikony {
width: 45px; height: 40px; transform: scale(0.9); display: block;
}
.p-help {
cursor: help
}
.p-join {
font-weight: 700; color: #71a3ea;
}
.p-ofert {
text-align: center; border-left: 1px solid #e2e8f0;
}
.p-up {
font-weight: 700; color: #f59e0b; font-size: 16px;
}
.p-firmy {
font-size: 13px; color: #f44336;
}
.p-firmy2 {
display: flex; align-items: center; gap: 10px;
}
.p-f2 {
font-size: 24px; color: #2196F3;
}
.p-f3 {
font-size: 16px; color: #333;
}
.p-f4 {
display: block; font-size: 14px; color: #979494; margin-top: 5px;
}
.p-bell {
font-size: 18px
}
.p-nazwa {
color: #1b1c1b;
}
.tabela-main {
vertical-align: top;
}
/* =============================================
   KARTY INFORMACYJNE
   ============================================= */
.info-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
  border: 1px solid #e2e8f0;
  margin-bottom: 20px;
  padding: 25px;
  margin-top: 25px;
}

.tracking-card-modern {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
  margin-bottom: 20px;
  padding: 25px;
  margin-top: 25px;
}

.description-text {
  color: var(--gray-dark);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* =============================================
   META GRID
   ============================================= */
.meta-grid-modern {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}
@media (min-width: 769px) {
  .meta-grid-modern {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

.meta-item-modern {
  background: var(--gray-light);
  border-radius: var(--radius);
  transition: var(--transition);
  align-items: center;
  gap: 15px;
  padding: 15px;
  display: flex;
}
.meta-item-modern:hover {
  background: #e2e8f0;
  transform: translateY(-3px);
}

.meta-icon-modern {
  width: 48px;
  height: 48px;
  color: #2a8610;
  background: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  display: flex;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.meta-label {
  color: #344966;
  margin-bottom: 4px;
  font-size: 0.85rem;
}

.meta-value {
  color: var(--dark);
  font-weight: 600;
}

/* =============================================
   SHARE SECTION
   ============================================= */
.share-section-modern {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
  margin-top: 30px;
  padding: 20px;
}

/* =============================================
   OFERTY — LISTA
   ============================================= */
.date-separator {
  text-align: left;
  color: #333;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  border-bottom: 2px solid rgba(0, 123, 255, 0.5490196078);
  width: 12%;
  margin: -30px 0 5px -110px;
  padding-bottom: 1px;
  font-size: 1.1em;
  font-weight: 700;
  list-style: none;
}

.offers-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-table {
  width: 100%;
  border-collapse: collapse;
}

.offer-item.post1 {
  background: #fff;
}

.offer-item.post2 {
  background: #fafcff;
}

.offer-item:hover {
  border-color: #2bbf50;
  box-shadow: 0 15px 35px -10px rgba(59, 130, 246, 0.35);
}

.offer-item {
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F7FF 100%);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 25px;
  display: flex;
  gap: 0;
  position: relative;
  box-shadow: 0 8px 25px -10px rgba(59, 130, 246, 0.25);
  transition: all 0.25s ease;
}

.offer-item.post1 {
  background: #fff;
}

.offer-item.post2 {
  background: #fafcff;
}

.offer-item:hover {
  border-color: #2bbf50;
  box-shadow: 0 15px 35px -10px rgba(59, 130, 246, 0.35);
}

.offer-item.post1:hover {
  border-color: #2bbf50;
  box-shadow: 0 15px 35px -10px rgba(59, 130, 246, 0.35);
}

.offer-item.post2:hover {
  border-color: #2bbf50;
  box-shadow: 0 15px 35px -10px rgba(59, 130, 246, 0.35);
}

.offer-item:hover {
  border-color: #2bbf50;
}

.offer-content {
  flex-grow: 1;
  min-width: 0;
  padding-right: 15px;
  flex: 1;
}
@media (max-width: 600px) {
  .offer-content {
    padding-right: 0;
    margin-bottom: 10px;
  }
}

.fav-btn.active .icon-heart {
  color: #e74c3c;
}

.offer-header {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5px;
  display: flex;
}
@media (max-width: 600px) {
  .offer-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.offer-title {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  flex-basis: 100%;
  margin: var(--sp-xs);
  font-size: 1.2rem;
  font-weight: 700;
  flex-grow: 1;
  padding-right: var(--sp-xl);
}
@media (max-width: 767px) {
  .offer-title a {
    font-size: 1em;
    font-weight: 600;
    color: #1969b9;
    text-decoration: none;
    line-height: 1.3;
  }
  .offer-title a:hover {
    color: #06c;
  }
}

.offer-category {
  background: #f7fafc;
  color: #4a5568;
  border: 1px solid #edf2f7;
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--br-md);
  font-size: 12px;
}
@media (max-width: 600px) {
  .offer-category {
    margin-top: 5px;
    padding: 3px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .offer-category {
    background: #f7fafc;
    color: #4a5568;
    border: 1px solid #edf2f7;
    padding: 3px 0;
    border-radius: 6px;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .offer-category {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 1em;
  }
}

.offer-preview {
  color: #6c757d;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  margin: 5px 0 18px;
  font-size: 0.9em;
  line-height: 1.4;
  margin-top: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .offer-preview {
    font-size: 0.95em;
    margin: 6px 0;
    color: #444;
  }
}
@media screen and (max-width: 767px) {
  .offer-preview {
    font-size: 0.95em;
    color: #555;
    line-height: 1.45;
    margin: 10px 0;
  }
}

.offer-footer {
  align-items: center;
  gap: 3px;
  display: flex;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .offer-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    font-size: 0.9em;
  }
}
@media screen and (max-width: 767px) {
  .offer-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
    font-size: 0.9em;
    color: #666;
  }
}

.badge-new-lista {
  position: absolute;
  top: 0px;
  left: 5px;
  background: #4a90e2;
  color: #fff;
  padding: 2px 7px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.offer-expire-badge {
  position: absolute;
  bottom: 0px;
  right: 2px;
  padding: 1px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  z-index: 5;
}

.badge-expire-ok {
  background: #ecfdf5;
  color: #047857;
}

.badge-expire-warning {
  background: #fffbeb;
  color: #b45309;
}

.badge-expire-soon {
  background: #fef2f2;
  color: #b91c1c;
}

.badge-expire-ended {
  background: #f3f4f6;
  color: #6b7280;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .offer-favorite {
    margin-right: -15px;
  }
}
@media screen and (max-width: 767px) {
  .offer-favorite {
    margin-right: 0;
    display: flex;
    align-items: center;
  }
}

.offer-image-link {
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  width: 180px;
  height: 120px;
  display: block;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .offer-image-link {
    width: 100%;
    height: 160px;
  }
}
@media (max-width: 600px) {
  .offer-image-link {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   WYSZUKIWARKA
═══════════════════════════════════════════════ */
.job-search-container {
  background: #fff;
  border-radius: 12px;
  max-width: 1100px;
  margin: 20px auto;
  padding: 20px;
  box-sizing: border-box;
  min-height: 88px;
  box-shadow: 0 8px 25px -10px rgba(59, 130, 246, 0.25);
}
@media (max-width: 768px) {
  .job-search-container {
    padding: 20px 0;
    min-height: 88px;
  }
}

.search-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-height: 48px;
}
@media (max-width: 768px) {
  .search-wrapper {
    flex-direction: row;
    gap: 2px;
  }
  .search-wrapper .icon-briefcase::before {
    display: none;
  }
  .search-wrapper .textnazwa {
    display: none;
  }
}

.search-input-group {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  flex: 1 1 40px;
  max-width: 410px;
  padding: 8px 12px;
  position: relative;
  min-height: 44px;
  box-sizing: border-box;
}
.search-input-group:focus-within {
  background: #fff;
  border-color: #007bff;
}
.search-input-group.error {
  border: 2px solid #e53935;
  background: #fff5f5;
  animation: shake 0.3s ease;
}
.search-input-group input, .search-input-group select {
  color: #333;
  background: 0 0;
  border: 0;
  outline: 0;
  width: 100%;
  font-size: 16px;
}

.btn-search {
  background: #FF8C42;
  color: #1F1F1F;
  cursor: pointer;
  border: 0;
  border-radius: 8px;
  height: 44px;
  min-height: 44px;
  padding: 0 30px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  box-sizing: border-box;
  transition: background 0.2s ease;
}
.btn-search:hover {
  background: #218838;
  color: white;
}
@media (max-width: 768px) {
  .btn-search {
    padding: 0 20px;
  }
}

.search-icon {
  color: var(--primary);
  background: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.0509803922);
  font-size: 20px;
}

.menu-item.active {
  background-color: #2196F3;
  color: white;
  border-bottom: 3px solid #ff9800;
}

.countprofil {
  color: #535252;
  margin-left: 10%;
  font-size: 15px;
  font-weight: 400;
}

.offer-category {
  background: #f1f5f9;
  border-color: #30363d;
  color: #999ea8;
  border: 1px solid #e2e8f0;
  border-top-color: rgb(226, 232, 240);
  border-right-color: rgb(226, 232, 240);
  border-bottom-color: rgb(226, 232, 240);
  border-left-color: rgb(226, 232, 240);
  border-top-color: rgb(226, 232, 240);
  border-right-color: rgb(226, 232, 240);
  border-bottom-color: rgb(226, 232, 240);
  border-left-color: rgb(226, 232, 240);
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 0.85rem;
  color: #333;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.krajewiecej {
  padding: 12px 25px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #007bff;
  color: #1662b3;
  border-radius: 25px;
  font-weight: bold;
  transition: 0.3s;
  display: block;
  margin: 30px auto;
}
.krajewiecej:hover {
  background: #fff;
  border: 1px solid #ff8c42;
  color: #007bff;
}
/* =============================================
   FILTRY & SORTOWANIE
   ============================================= */
.filter-bar {
  background: white;
  border-radius: 16px;
  padding: 20px 25px;
  margin-bottom: 30px;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid #e2e8f0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  margin-top: 30px;
}
.filter-bar .fw-bold {
  color: #1e293b;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-bar .fw-bold i {
  color: #2563eb;
}
.filter-bar select {
  min-width: 100%;
  padding: 12px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #1e293b;
  background-color: #f8fafc;
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill=none stroke='%234b5563' stroke-width='2' stroke-linecap=round stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}
.filter-bar select:hover {
  border-color: #2563eb;
  background-color: white;
}
.filter-bar select:focus {
  outline: 0;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.filter-bar select option {
  padding: 12px;
}
@media (min-width: 769px) {
  .filter-bar select {
    min-width: 240px;
  }
}
@media (max-width: 768px) {
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
}

.filter-section {
  background: linear-gradient(135deg, #f8fafc 0, #eff6ff 100%);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(42, 125, 225, 0.1);
}

.filter-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e2b3a;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-info {
  background: #eef2ff;
  padding: 10px 22px;
  border-radius: 40px;
  margin-left: auto;
  color: #1e293b;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
  max-width: 250px;
  margin-bottom: -30px;
}
.filter-info i {
  color: #2563eb;
}
.filter-info strong {
  color: #2563eb;
  font-size: 1.1rem;
  margin: 0 3px;
}

.filter-stats-container {
  background: linear-gradient(135deg, #fff 0, #fff 100%);
  border-radius: 16px;
  padding: 20px 25px;
  margin-bottom: 25px;
  color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.filter-stats-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid #334155;
  padding-bottom: 12px;
  color: #1e1f20;
}
.filter-stats-header i {
  color: #fbbf24;
  font-size: 1.2rem;
}

.filter-profil-kraj-box {
  display: flex;
  align-items: center;
  padding: 10px 0;
  text-decoration: none;
  color: #35475c;
  border-bottom: 1px solid #f1f5f9;
}

.filter-stats-content {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.filter-profil-kraj {
  width: 200px;
  height: 30px;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-weight: 700;
  font-size: 16px;
}

.filter-profil-kraj-count {
  color: #54575c;
  font-size: 11px;
  background: #f8fafc;
  padding: 2px 6px;
  border-radius: 10px;
  border: 1px solid #eee;
}
.dark-mode .filter-profil-kraj-count {
  color: #b3bfd2;
  font-size: 11px;
  background: #1e293b;
  padding: 2px 6px;
  border-radius: 10px;
  border: 1px solid #eee;
}
.filter-profil-kraj-ikony {
  width: 45px;
  height: 30px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.filter-stat-item {
  background: #f8fafd;
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #405570;
  transition: all 0.2s ease;
}
.filter-stat-item:hover {
  background: #eef2ff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.filter-stat-icon {
  width: 40px;
  height: 40px;
  background: #2d5a8e;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-stat-icon i {
  font-size: 1.2rem;
  color: #fbbf24;
}

.filter-stat-label {
  font-weight: 500;
  color: #365d91;
  margin-right: 5px;
}

.filter-stat-value {
  font-weight: 700;
  color: white;
  background: #4b73ae;
  padding: 4px 12px;
  border-radius: 20px;
  margin: 0 5px;
  font-size: 0.95rem;
}

.filter-stat-details {
  font-size: 0.9rem;
  color: #80adea;
  margin-left: 5px;
}

.sort-bar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  background: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
@media (min-width: 769px) {
  .sort-bar {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }
}

.sort-info {
  font-weight: 700;
  color: #64748b;
  font-size: 13px;
  text-transform: uppercase;
}

.sort-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sort-item {
  padding: 6px 12px;
  border-radius: 6px;
  background: #f8fafc;
  color: #475569;
  text-decoration: none;
  font-size: 13px;
  transition: 0.2s;
  border: 1px solid #e2e8f0;
}
.sort-item:hover {
  background: #f1f5f9;
}

/* =============================================
   BREADCRUMBS
   ============================================= */
.breadcrumbs-custom {
  background: #f8f9fa;
  padding: 12px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  border: 1px solid #e9ecef;
  color: #0f3b62;
  margin-top: -10px;
}
.breadcrumbs-custom a {
  color: #1670ac;
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumbs-custom a:hover {
  color: #2c3e50;
  text-decoration: underline;
}
.breadcrumbs-custom .separator {
  margin: 0 8px;
  color: #0f3b62;
}
.breadcrumbs-custom .current {
  color: #2c3e50;
  font-weight: 500;
}

/* =============================================
   KRAJE / FLAGI
   ============================================= */
.country-filter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 20px 0;
}
.country-filter-grid::-webkit-scrollbar {
  display: none;
}
@media (min-width: 481px) {
  .country-filter-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 601px) {
  .country-filter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
@media (min-width: 769px) {
  .country-filter-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1201px) {
  .country-filter-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}
.country-filter-grid {
  /* Ostatnie breakpointy nadpisują wcześniejsze — zostawiamy max override */
}
@media (max-width: 600px) {
  .country-filter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .country-filter-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1200px) {
  .country-filter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.country-tile {
  background: #fff;
  border-radius: 12px;
  padding: 10px 5px;
  text-align: center;
  text-decoration: none;
  color: #333;
  border: 1px solid #eee;
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.country-tile:hover {
  border-color: #2a7de1;
  background: #f0f7ff;
  transform: translateY(-2px);
}
@media (min-width: 769px) {
  .country-tile {
    padding: 15px 5px;
  }
}

.country-icon {
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
}

.country-tile .flag-icon {
  margin-right: 0;
}

.country-name {
  transition: var(--transition);
  flex-grow: 1;
  font-size: var(--fs-xl);
  font-weight: 500;
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: #1e2937;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}
@media (max-width: 480px) {
  .country-name {
    font-size: 1rem;
  }
}
@media (min-width: 769px) and (max-width: 1210px) {
  .country-name {
    font-size: 17px;
  }
}
@media (max-width: 1210px) {
  .country-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    flex: 1;
    text-transform: capitalize;
  }
}

.country-offers-badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  font-weight: 600;
  font-size: 14px;
  padding: 2px 10px;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.flag-lista-sprite {
  display: inline-block;
  background-image: url(/flagi_ads.webp);
  background-repeat: no-repeat;
  background-position: 0 0;
  transition: all 0.3s ease;
  vertical-align: middle;
}

.flag-lista-sm {
  width: 30px;
  height: 20px;
  border-radius: 3px;
}

.flag-lista-md {
  width: 50px;
  height: 35px;
  border-radius: 3px;
}

.flag-icon {
  vertical-align: middle;
  background-image: url(/flagi_ads.webp);
  background-repeat: no-repeat;
  width: 40px;
  height: 35px;
  margin-right: 8px;
  display: inline-block;
}

.flag-lista-at {
  background-position: 0 0;
}

.flag-lista-be {
  background-position: -50px 0;
}

.flag-lista-cz {
  background-position: -100px 0;
}

.flag-lista-dk {
  background-position: -150px 0;
}

.flag-lista-fi {
  background-position: -200px 0;
}

.flag-lista-fr {
  background-position: -250px 0;
}

.flag-lista-es {
  background-position: -300px 0;
}

.flag-lista-nl {
  background-position: -350px 0;
}

.flag-lista-ie {
  background-position: -400px 0;
}

.flag-lista-de {
  background-position: -450px 0;
}

.flag-lista-no {
  background-position: -500px 0;
}

.flag-lista-ch {
  background-position: -550px 0;
}

.flag-lista-se {
  background-position: -600px 0;
}

.flag-lista-gb-sct {
  background-position: -650px 0;
}

.flag-lista-gb {
  background-position: -700px 0;
}

.flag-lista-it {
  background-position: -750px 0;
}

/* Sprite flagi */
.flag-lista-atm {
  background-position: -5px 0;
}

.flag-lista-bem {
  background-position: -55px 0;
}

.flag-lista-czm {
  background-position: -105px 0;
}

.flag-lista-dkm {
  background-position: -155px 0;
}

.flag-lista-fim {
  background-position: -205px 0;
}

.flag-lista-frm {
  background-position: -257px 0;
}

.flag-lista-esm {
  background-position: -305px 0;
}

.flag-lista-nlm {
  background-position: -355px 0;
}

.flag-lista-iem {
  background-position: -405px 0;
}

.flag-lista-dem {
  background-position: -455px 0;
}

.flag-lista-nom {
  background-position: -505px 0;
}

.flag-lista-chm {
  background-position: -555px 0;
}

.flag-lista-sem {
  background-position: -605px 0;
}

.flag-lista-gb-sctm {
  background-position: -655px 0;
}

.flag-lista-gbm {
  background-position: -705px 0;
}

.flag-lista-itm {
  background-position: -755px 0;
}

/* =============================================
   KARTY FIRM
   ============================================= */
.recommendation-widget {
  text-align: center;
}

.recommend-btn {
  color: #0073b1;
  cursor: pointer;
  background: #f8f9fa;
  border: 2px solid #0073b1;
  border-radius: 25px;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
}

.recommend-btn:hover {
  color: #fff;
  background: #0073b1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 115, 177, 0.2);
}

.recommendation-stats {
  background: #f8f9fa;
  border-left: 4px solid #0073b1;
  border-radius: 6px;
  margin-top: 15px;
  padding: 12px;
}

.recommendation-stats p {
  color: #555;
  align-items: flex-start;
  gap: 8px;
  margin: 8px 0;
  font-size: 13px;
  display: flex;
}

.recommendation-stats i {
  color: #0073b1;
  margin-top: 2px;
}

.recommend-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  color: #666;
  background: #ccc;
  border-color: #999;
}

.recommend-btn.disabled:hover {
  color: #666;
  box-shadow: none;
  background: #ccc;
  transform: none;
}

.recommend-btn.disabled .count {
  background: #fff;
}

.companies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
}
@media (min-width: 600px) {
  .companies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .companies-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .companies-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.filter-bar-lista {
    margin: 12px 0 16px;
    position: relative;
}
.filter-bar-toggle {
    display: none; /* widoczny tylko mobile */
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid var(--border, #ddd);
    border-radius: 8px;
    background: var(--bg, #fff);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
	color: #151515;
}
.filter-active-dot {
    width: 7px; height: 7px;
    background: #e74c3c;
    border-radius: 50%;
    display: inline-block;
}
.filter-bar-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  background-color: whitesmoke;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 8px 25px -10px rgba(59, 130, 246, 0.25);
}
.filter-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.filter-group-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-muted, #888);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.filter-tag {
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #50b524;
  font-size: 13px;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  transition: all 0.15s;
  background-color: white;
}
.filter-tag:hover {
    border-color: var(--color-primary, #3498db);
    color: var(--color-primary, #3498db);
}
.filter-tag.active {
    background: var(--color-primary, #3498db);
    border-color: var(--color-primary, #3498db);
    color: #fff;
    font-weight: 600;
}
.filter-clear {
    font-size: 13px;
    color: #e74c3c;
    text-decoration: none;
    padding: 4px 8px;
}
.filter-clear:hover { text-decoration: underline; }
.filter-clear-inline {
    margin-left: auto;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.filter-clear-inline:hover {
    color: #d33;
}
.brak-wynikow-filtr {
    text-align: center;
    padding: 48px 24px;
    background: var(--bg, #fff);
}
.brak-wynikow-ikona {
    font-size: 48px;
    margin-bottom: 16px;
}
.brak-wynikow-tytul {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--color-text, #222);
}
.brak-wynikow-podtytul {
    font-size: 14px;
    color: var(--color-muted, #888);
    margin: 0 0 28px;
}
.brak-wynikow-akcje {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.btn-brak-wynikow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
}
.btn-brak-wynikow.btn-primary {
    background: var(--color-primary, #3498db);
    color: #fff;
    border: 2px solid var(--color-primary, #3498db);
}
.btn-brak-wynikow.btn-primary:hover {
    opacity: 0.88;
}
.btn-brak-wynikow.btn-secondary {
    background: #27ae60;
    color: #fff;
    border: 2px solid #27ae60;
}
.btn-brak-wynikow.btn-secondary:hover {
    opacity: 0.88;
}
.btn-brak-wynikow.btn-outline {
    background: transparent;
    color: var(--color-text, #333);
    border: 2px solid var(--border, #ddd);
}
.btn-brak-wynikow.btn-outline:hover {
    border-color: var(--color-primary, #3498db);
    color: var(--color-primary, #3498db);
}
@media (max-width: 480px) {
    .brak-wynikow-akcje {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-brak-wynikow {
        justify-content: center;
    }
}
.dark-mode .brak-wynikow-filtr {
  background: #1e293b;
}
.dark-mode .brak-wynikow-tytul {
  color: #d0c7c7;
}
.dark-mode .btn-brak-wynikow.btn-outline {
  background: #5c9b4a00;
  color: var(--color-text, #f2efef);
  border: 2px solid #5792df;
}
.dark-mode .btn-brak-wynikow.btn-secondary {
  background: #27ae6000;
  color: #fff;
  border: 2px solid #27ae60;
}
.dark-mode .btn-brak-wynikow.btn-primary {
  background: #27ae6000;
  color: #fff;
  border: 2px solid var(--color-primary, #3498db);
}
/* Mobile */
@media (max-width: 768px) {
    .filter-bar-toggle { display: flex; }
    .filter-bar-groups {
        display: none;
        margin-top: 10px;
        flex-direction: column;
        align-items: flex-start;
    }
    .filter-bar-lista.open .filter-bar-groups {
        display: flex;
    }
}
.company-card {
  overflow: visible !important;
  margin-top: 50px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  border: 1px solid #bfdbfe;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px -12px rgba(59, 130, 246, 0.28);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.company-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 20px 45px -15px rgba(59, 130, 246, 0.4);
}
.company-card:hover .logo-wrapper {
  border-color: #2a7de1;
  transform: translateX(-50%) scale(1.1);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.logo-wrapper {
  position: absolute;
  top: -45px;
  left: 35%;
  transform: translateX(-50%);
  width: 180px;
  height: 120px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 3px solid #fff;
  visibility: visible;
  opacity: 1;
}

.company-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.no-logo {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #e0e7f0, #cdd9e9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a3b55;
  font-weight: bold;
  font-size: 2rem;
  border-radius: 15px;
}

.company-short-desc {
  color: #5e6f8d;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7rem;
}

.company-meta {
  width: 100%;
  margin: 5px 0;
  border-top: 1px solid #edf2f7;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}
@media (max-width: 480px) {
  .card-actions {
    flex-direction: column;
  }
}

.verified-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f9f9f9;
  color: #1ea02c;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 5px 12px rgba(42, 125, 225, 0.4);
  z-index: 2;
}

.company-meta .btn {
  color: #1662b3;
  cursor: pointer;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  background: #fff;
  border: 1px solid #007bff;
  border-radius: 10px;
  align-items: center;
  gap: 18px;
  width: 315px;
  margin: 0 auto;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
}

.company-meta .btn:hover {
  color: #1662b3;
  background: #fff;
  border: 1px solid #ff8c42;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1019607843);
}

.card-actions .btn {
  color: #1662b3;
  cursor: pointer;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  background: #fff;
  border: 1px solid #007bff;
  border-radius: 10px;
  align-items: center;
  gap: 18px;
  width: 275px;
  margin: 0 auto;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
}

.card-actions .btn:hover {
  color: #1662b3;
  background: #fff;
  border: 1px solid #ff8c42;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1019607843);
}

/* Przyciski kart firm */
.btn {
  flex: 1;
  padding: 12px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-primary {
  background: rgba(245, 158, 11, 0.1098039216);
  color: #2a7de1;
  border: 1px solid #f59e0b;
}
.btn-primary:hover {
  background: #f0f7ff;
  border-color: #4cbd0d;
  transform: scale(1.02);
}
.btn-secondary {
  background: white;
  color: #2866b1;
  border: 1px solid #2a7de1;
}
.btn-secondary:hover {
  background: #f0f7ff;
  border-color: #4cbd0d;
  transform: scale(1.02);
}

/* =============================================
   TAGI
   ============================================= */
.jobs-tags-section {
  background: white;
  border-radius: 20px;
  padding: 20px;
  margin: 20px 0 25px;
  box-shadow: 0 10px 25px rgba(0, 20, 50, 0.05);
  border: 1px solid rgba(42, 125, 225, 0.1);
}
@media (min-width: 481px) {
  .jobs-tags-section {
    padding: 25px;
  }
}

.tags-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.tags-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a2639;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tags-title i {
  color: #2a7de1;
  font-size: 1.3rem;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
@media (min-width: 481px) {
  .tags-cloud {
    gap: 12px;
  }
}

.tag-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #f0f4fa;
  border-radius: 40px;
  color: #2a3b55;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  border: 2px solid transparent;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.tag-item:hover {
  background: #e1e9f5;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 125, 225, 0.2);
  border-color: #2a7de1;
}
@media (min-width: 481px) {
  .tag-item {
    padding: 8px 16px;
    font-size: 0.95rem;
  }
}

.tag-count {
  background: white;
  color: #1e5ba6;
  padding: 2px 8px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  min-width: 28px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.clear-tags {
  color: #ff6b6b;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 30px;
  background: #fff0f0;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.clear-tags:hover {
  background: #ff6b6b;
  color: white;
}

/* =============================================
   PRZYCISKI AKCJI
   ============================================= */
.btn-action {
  color: #475569;
  cursor: pointer;
  white-space: nowrap;
  background-color: #f0f0f0;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  align-items: center;
  gap: 35px;
  padding: 5px 20px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  background: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  width: 270px;
  margin: 0 auto;
}
.btn-action:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1019607843);
  color: #3b82f6;
  background: #eff6ff;
  border-color: #3b82f6;
}

.action-buttons-modern {
  flex-direction: row;
  gap: 15px;
  margin-bottom: 25px;
  display: flex;
}
@media (max-width: 768px) {
  .action-buttons-modern {
    display: grid;
  }
}

.action-buttons-modern .btn-toggle {
  padding: 10px 9px;
  font-size: 15px;
}

.btn-toggle {
  color: #475569;
  cursor: pointer;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  align-items: center;
  gap: 30px;
  width: 270px;
  margin: 0 auto;
  padding: 10px 9px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s;
  display: flex;
}
.btn-toggle:hover {
  color: #3b82f6;
  background: #eff6ff;
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1019607843);
}

.btn-outline-primary {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 10px 22px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}
.btn-outline-primary:hover {
  background: #f59e0b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* =============================================
   SIDEBAR — REKOMENDACJA
   ============================================= */
.sidebar-recommendation-section {
  padding: 5px;
  margin-bottom: 0px;
}

.sidebar-section-title {
  color: #333;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  border-bottom: 2px solid #0073b1;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  border-image: linear-gradient(to right, #0000, #3e8bdd, #0000) 1;
}
.sidebar-section-title i {
  color: #0073b1;
  font-size: 20px;
}

.recommendation-widget {
  text-align: center;
}

.recommend-btn {
  color: #0073b1;
  cursor: pointer;
  background: #f8f9fa;
  border: 2px solid #0073b1;
  border-radius: 25px;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  margin-bottom: 20px;
}
.recommend-btn:hover {
  color: #fff;
  background: #0073b1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 115, 177, 0.2);
}
.recommend-btn .count {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin-left: 5px;
  padding: 2px 8px;
  font-size: 12px;
}

.recommendation-stats {
  background: #f8f9fa;
  border-left: 4px solid #0073b1;
  border-radius: 6px;
  margin-top: 15px;
  padding: 12px;
  margin-bottom: 25px;
}
.recommendation-stats p {
  color: #555;
  align-items: flex-start;
  gap: 8px;
  margin: 8px 0;
  font-size: 13px;
  display: flex;
}
.recommendation-stats i {
  color: #0073b1;
  margin-top: 2px;
}

/* =============================================
   FORMULARZE
   ============================================= */
.form-section {
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 12px;
  margin-bottom: 1rem;
  padding: 0.875rem;
  transition: all 0.3s ease;
}
.form-section:focus-within {
  border-color: #017cbb;
  box-shadow: 0 0 0 3px rgba(1, 124, 187, 0.1019607843);
}
@media (min-width: 481px) {
  .form-section {
    padding: 1rem;
  }
}
@media (min-width: 769px) {
  .form-section {
    padding: 1rem;
  }
}

.form-row {
  flex-wrap: wrap;
  gap: 1rem;
  display: flex;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .form-row {
    flex-wrap: nowrap;
  }
}
.form-row label {
  margin-bottom: 3px;
  font-size: 13px;
  font-weight: 500;
  display: block;
}
.form-row input, .form-row textarea {
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  padding: 8px;
}

.form-group {
  margin-bottom: 16px;
  flex-direction: column;
}

/* =============================================
   MODALE
   ============================================= */
.modal {
  z-index: 1;
  background-color: #000;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
  padding-top: 60px;
}

.modal-content {
  background-color: #fefefe;
  border: 1px solid #888;
  border-radius: 8px;
  width: 80%;
  max-width: 450px;
  margin: 5% auto;
  padding: 20px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  animation-name: zoom;
  animation-duration: 0.6s;
  display: block;
}
@media (min-width: 1211px) {
  .modal-content {
    width: 50%;
  }
}

.close {
  color: #aaa;
  float: right;
  cursor: pointer;
  font-size: 28px;
  font-weight: 700;
}
.close:hover, .close:focus {
  color: #000;
  cursor: pointer;
  text-decoration: none;
}

/* =============================================
   SOCIAL SHARE
   ============================================= */
.social-share-extended .share-btn {
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  font-size: 20px;
  margin-right: 5px;
}
.social-share-extended .share-btn:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.social-share-extended .share-fb {
  background: #3b5998;
}
.social-share-extended .share-twitter {
  background: #1da1f2;
}
.social-share-extended .share-linkedin {
  background: #0077b5;
}
.social-share-extended .share-pinterest {
  background: #bd081c;
}
.social-share-extended .share-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.social-icons-modern {
  display: flex;
  gap: 10px;
}

.social-icon-modern {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 20px;
  filter: grayscale(80%);
  opacity: 0.7;
  transition: all 0.3s ease;
}
.social-icon-modern:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-3px);
  color: white;
}

.instagram-bg {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

/* =============================================
   ULUBIONE
   ============================================= */
.cookie-notice {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0.8rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-notice i {
  color: #f1c40f;
}

.icon-certificate::before {
  content: "\e84b";
}

.favorites-badge {
  display: none;
  background-color: #1bd015;
  color: #000;
  padding: 0 6px;
  border-radius: 10px;
  font-size: 0.8em;
  margin-left: 6px;
}

.fav-btn-profil {
  cursor: pointer;
  color: #666;
  background: 0 0;
  border: 0;
  align-items: center;
  gap: 5px;
  font-size: 1.3rem;
  transition: transform 0.2s;
  margin: 0 auto;
  z-index: 10;
  border-radius: 35px;
}
.fav-btn-profil:hover {
  transform: scale(1.1);
}
.fav-btn-profil.active .icon-heart {
  color: #e74c3c;
}

.fav-btn {
  cursor: pointer;
  color: #666;
  background: transparent;
  border: 0 !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 1.3rem;
  transition: transform 0.2s;
  margin: 0 auto;
  z-index: 10;
  border-radius: 35px;
}

.fav-btn:hover {
  transform: scale(1.1);
}

.fav-btn.active .icon-heart {
  color: #e74c3c;
}

/* MOBILE */
@media screen and (max-width: 767px) {
  .fav-btn {
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 20px;
    color: #ccc;
    padding: 4px;
    border-radius: 50%;
    transition: color 0.2s;
    margin: 0 auto;
  }
  .fav-btn:active,
  .fav-btn:hover {
    color: #ff4081;
  }
  .fav-btn i,
  .offer-footer i {
    min-width: 16px;
    text-align: center;
  }
}
.fav-count {
  font-size: 0.9rem;
  font-weight: 700;
}

@media (max-width: 767px) {
  .fav-count {
    font-size: 0.85em;
    margin-left: 4px;
    color: #777;
    min-width: 16px;
    text-align: center;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* =============================================
   IKONY — SERCE
   ============================================= */
.icon-heart {
  color: #aaa;
  transition: color 0.2s ease, transform 0.2s ease;
  color: transparent;
  -webkit-text-stroke: 1px #aaa;
}

.fav-btn:hover .icon-heart {
  color: #ff6b6b;
}

/* =============================================
   NOTYFIKACJE
   ============================================= */
.notifications-title {
  margin-bottom: 15px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.notifications-icon {
  color: var(--primary);
}

/* =============================================
   INFORMACJE
   ============================================= */
.info-text {
  margin-top: 15px;
  color: #232d3c;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
}

.info-icon {
  color: var(--primary);
  margin-right: 4px;
}

.info-firmy {
  background: #e8f4fd;
  border-left: 4px solid #2196f3;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-message {
  animation: slideDown 0.3s ease-out;
}
.info-message strong {
  color: #1976d2;
  font-size: 16px;
}
.info-message i.fa-info-circle {
  animation: pulse 2s infinite;
}

/* =============================================
   FIRMA — DANE
   ============================================= */
.firma-serwis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 15px 0;
  border-top: 1px dashed #f59e0b;
  border-bottom: 1px dashed #f59e0b;
  border-image: linear-gradient(to right, #0000, #c4800d, #0000) 1;
  margin-bottom: 15px;
  margin-top: 15px;
}

.firma-item {
  text-align: center;
  padding: 0 16px;
  margin-top: 11px;
}

.firma-divider {
  border-left: 1px solid #e2e8f0;
}

.firma-data {
  font-weight: 700;
  color: #334155;
}

.firma-oferty {
  font-weight: 700;
  color: #f59e0b;
  font-size: 16px;
}

.firma-tekst {
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
  margin-left: 5px;
}

.firma-polecana {
  background: #4f7ab8;
  color: #f5f4f3;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
}

.firmy-srodek {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 5px;
}

/* =============================================
   TYTUŁ FIRMY
   ============================================= */
.company-title-wrapper {
  text-align: center;
  margin-bottom: 15px;
  margin-top: 75px;
}

.company-title-box {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background-color: #4f7ab8;
}

.company-title {
  margin: 0;
  font-size: 20px;
  color: #fff;
  font-weight: 800;
}

/* =============================================
   AKTYWNOŚĆ FIRMY
   ============================================= */
.company-activity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

.activity-item {
  font-size: 12px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 5px;
}
.activity-item span {
  font-weight: 600;
  color: #9fb0c8;
}
.activity-item i {
  font-size: 14px;
}

.activity-time {
  font-weight: 600;
  color: #9fb0c8;
}

.activity-icon.success {
  color: #22c55e;
}

.offer-new i {
  color: #22c55e;
}

.online-status i {
  color: #3b82f6;
}

/* =============================================
   ODZNAKI KONTA
   ============================================= */
.account-badge-wrapper {
  display: flex;
  justify-content: center;
  margin: 1px 0;
}

.account-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  backdrop-filter: blur(5px);
  border: 1px solid;
}

.badge1-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.badge1-agency {
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  border-color: rgba(79, 70, 229, 0.3);
}

.badge-text-firmy {
  color: #3773d0;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 11px;
  margin-left: 8px;
}

/* =============================================
   ODZNAKI RANKINGOWE
   ============================================= */
.profile-badges-oferty {
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  display: flex;
  width: fit-content;
}

.company-ranking-badge {
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 12px;
  margin: 15px 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.company-ranking-badge.double {
  background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
  border: 0;
  box-shadow: 0 4px 20px rgba(179, 135, 40, 0.4);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  gap: 12px;
 color: #202122;
  font-weight: 600;
}
.company-ranking-badge.double strong {
  color: #2c210a;
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.company-ranking-badge.double span {
  color: #4a3812;
  font-weight: 600;
}
.company-ranking-badge.double .badge-icon i {
  color: #b38728;
}
.company-ranking-badge.popular {
  background: linear-gradient(135deg, #4f7ab8, #3f6ea6, #74c0fc, #3a86ff);
  box-shadow: 0 6px 20px rgba(58, 134, 255, 0.35);
  background-size: 300% 300%;
  border: none;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: gradientShift 6s ease infinite;
  font-size: 16px;
  gap: 12px;
  color: #d8dde3;
}
.company-ranking-badge.popular .badge-icon i {
  color: #fff;
  z-index: 2;
}
.company-ranking-badge.popular::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine-effect 3.5s infinite;
}
.company-ranking-badge.active {
  background: linear-gradient(135deg, #68913f, #30971c, #2baa33, #22b715);
  background-size: 300% 300%;
  box-shadow: 0 6px 20px rgba(58, 134, 255, 0.35);
  border: none;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: gradientShift 6s ease infinite;
  font-size: 16px;
  gap: 12px;
  color: #d8dde3;
}
.company-ranking-badge.active .badge-icon i {
  color: #fff;
}

.badge-icon {
  font-size: 24px;
  margin-right: 15px;
  animation: championPulse 2s infinite;
}
.badge-icon i {
  color: #ff4d6d;
}

.badge-content strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #f0eeee;
  text-align: center;
}
.badge-content span {
  font-size: 12px;
  color: #d4e1d0;
}

/* =============================================
   WSTĄŻKA RANKINGOWA
   ============================================= */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.pagination a, .pagination .current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  padding: 0 12px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.pagination a {
  background: #fff;
  border: 2px solid #e2e8f0;
  color: #1e293b;
}

.pagination a:hover {
  background: linear-gradient(135deg, #4d8fe6 0%, #497dce 100%);
  border-color: #72ea7f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3019607843);
}

.pagination .current {
  background: linear-gradient(135deg, #62a222 0%, #47bf25 100%);
  color: #fff;
  border: none;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3019607843);
  font-weight: 700;
}

.pagination a, .pagination span {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.pagination a:hover {
  background: #f0f0f0;
  color: #000;
}

.pagination .active {
  background: #3b82f6;
  color: #000;
  border-color: #3b82f6;
}

.pagination .disabled {
  color: #999;
  cursor: not-allowed;
}

.tracking-card {
  position: relative;
  overflow: hidden;
}

.tracking-card:before {
  content: "";
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.tracking-form.expanded {
  max-height: 500px;
  margin: 15px;
}

.tracking-header {
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  display: flex;
}

.bell-icon {
  color: #fff;
  background: linear-gradient(135deg, #FF8C42, #FF8C42);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
width: 18px;
  height: 18px;
  font-size: 12px;
  animation: 2s ease-in-out infinite ring;
  display: flex;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3019607843);
}

.tracking-form {
  max-height: 0;
  transition: max-height 0.4s;
  overflow: hidden;
}

.form-group {
  margin-bottom: 16px;
  flex-direction: column;
}

.form-input {
  border: 1px solid var(--border);
  width: 100%;
  transition: var(--transition);
  background: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 14px;
}

.form-input:focus {
  border-color: var(--primary);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1019607843);
  background: #fff;
}

.checkbox-row label {
  color: rgba(18, 21, 26, 0.6196078431);
  cursor: pointer;
  font-size: 12px;
  line-height: 1.4;
}

.checkbox-row a {
  color: #256eb7;
  font-weight: 500;
  text-decoration: none;
}

.checkbox-row a:hover {
  text-decoration: underline;
}

.checkbox-row {
  color: var(--gray-dark);
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  font-size: 0.9rem;
  display: flex;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 12px;
}

.btn-wszystkie-show {
  color: #1662b3;
  cursor: pointer;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  background: #fff;
  border: 1px solid #007bff;
  border-radius: 10px;
  align-items: center;
  gap: 18px;
  width: 275px;
  margin: 0 auto;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
}

.btn-wszystkie-show:hover {
  color: #1662b3;
  background: #fff;
  border: 1px solid #ff8c42;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1019607843);
}

.ranking-ribbon-firma {
  width: 158px;
  height: 150px;
  overflow: hidden;
  position: absolute;
  top: 345px;
  right: 375px;
  z-index: 10;
  cursor: help;
}
.ranking-ribbon-firma span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 8px 0;
  background-color: #333;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #fff;
  font: 700 11px/1 "Open Sans", sans-serif;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  text-align: center;
  right: -50px;
  top: 45px;
  transform: rotate(45deg);
}
.ranking-ribbon-firma.popular span {
  background: linear-gradient(135deg, #4f7ab8, #3f6ea6, #74c0fc, #3a86ff);
  color: #fff;
  animation: gradientShift 6s ease infinite;
  box-shadow: 0 6px 20px rgba(58, 134, 255, 0.35);
  background-size: 300% 300%;
  border: none;
}
.ranking-ribbon-firma.active span {
  background: linear-gradient(135deg, #518f3b, #57ae38, #33db6d, #328f1f);
  color: #fff;
  animation: gradientShift 6s ease infinite;
  box-shadow: 0 6px 20px rgba(58, 134, 255, 0.35);
  background-size: 300% 300%;
  border: none;
}
.ranking-ribbon-firma.double-lider span {
  background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
  color: #000;
  font-weight: 800;
  box-shadow: 0 0 15px rgba(191, 149, 63, 0.6);
  animation: gold-shine 4s infinite linear;
}

/* =============================================
   WHY JOIN
   ============================================= */
.why-join-section {
  margin: 40px 0;
}

.emoji {
  font-size: 1.8rem;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
@media (min-width: 481px) {
  .why-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.why-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  border: 1px solid #bfdbfe4a;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.22);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
    margin-bottom: 30px;
}
.why-card:hover {
  box-shadow: 0 20px 45px -12px rgba(59, 130, 246, 0.35);
  border-color: #3b82f6;
}
.why-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e2937;
  margin-bottom: 12px;
  line-height: 1.3;
}
.why-card p {
  color: #475569;
  line-height: 1.55;
  font-size: 1.02rem;
}

/* =============================================
   STOPKA
   ============================================= */
.modern-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
margin: 0 auto;
  padding: 0 4px;
  margin-top: 120px;
  width: 100%;
  max-width: 1200px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 481px) {
  .footer-container {
    padding: 0 1.5rem;
  }
}

.footer-bottom {
  border-top: 1px solid #fff1a;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 0.3rem 0;
}
.footer-legal a:hover {
  color: var(--footer-link);
}
@media (min-width: 769px) {
  .footer-legal {
    flex-direction: row;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .trusted-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .stats-divider {
    display: none;
  }
  .badge-line {
    width: 100%;
    justify-content: center;
  }
}
.badge-line {
  animation: pulse 2s infinite;
}

.image-container, .ad-card-main {
  position: relative;
  overflow: hidden;
}

.ranking-ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 10;
}

.ranking-ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 8px 0;
  background-color: #333;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1019607843);
  color: #fff;
  font: 700 11px/1 "Open Sans", sans-serif;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  text-align: center;
  right: -50px;
  top: 55px;
  transform: rotate(45deg);
}

.ranking-ribbon.popular span {
  background: linear-gradient(135deg, #4f7ab8, #3f6ea6, #74c0fc, #3a86ff);
  color: #fff;
  animation: gradientShift 6s ease infinite;
  box-shadow: 0 6px 20px rgba(58, 134, 255, 0.35);
  background-size: 300% 300%;
  border: none;
}

.ranking-ribbon.active span {
  background: linear-gradient(135deg, #518f3b, #57ae38, #33db6d, #328f1f);
  background-size: auto;
  color: #fff;
  animation: gradientShift 6s ease infinite;
  box-shadow: 0 6px 20px rgba(58, 134, 255, 0.35);
  background-size: 300% 300%;
  border: none;
}

.ranking-ribbon:hover {
  cursor: help;
}

.ranking-ribbon.double-lider span {
  background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
  color: #333;
  font-weight: 800;
  box-shadow: 0 0 15px rgba(191, 149, 63, 0.6);
  animation: gold-shine 4s infinite linear;
}
.online-dot {
height:10px;
width:10px;
background-color:#22c55e;
border-radius:50%;
display:inline-block;
position:relative;
box-shadow:0 0 0 0 #22c55eb3;
animation:pulse-green 2s infinite
}
@keyframes gold-shine {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
  100% {
    filter: brightness(1);
  }
}
/* =============================================
   IKONY (font ikony)
   ============================================= */
[class^=icon-]:before {
  font-family: ikony;
  font-style: normal;
  font-weight: 400;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-chart-pie:before {
  content: "\e801";
}

.icon-heart:before {
  content: "\e802";
}

.icon-location:before {
  content: "\e807";
}

.icon-clock:before {
  content: "\e809";
}

.icon-bell:before {
  content: "\e80d";
}

.icon-eye:before {
  content: "\e811";
}

.icon-user-friends:before {
  content: "\e818";
}
.icon-user:before {
content:'\e804'
}
.icon-tools:before {
  content: "\e81a";
}
.icon-history:before {
content:'\e85e'
}
.icon-crown:before {
  content: "\e81b";
}
.icon-layer-group:before {
content:'\e835'
}
.icon-chevron-right:before {
  content: "\e81e";
}

.icon-award-1:before {
  content: "\e81f";
}

.icon-shield-alt:before {
  content: "\e820";
}

.icon-info-circle:before {
  content: "\e821";
}

.icon-briefcase:before {
  content: "\e826";
}

.icon-envelope:before {
  content: "\e829";
}

.icon-thumbs-up-1:before {
  content: "\e82d";
}

.icon-star:before {
  content: "\e82e";
}

.icon-check-circle:before {
  content: "\e834";
}

.icon-graduation-cap:before {
  content: "\e841";
}

.icon-laptop:before {
  content: "\e847";
}

.icon-search-1:before {
  content: "\e849";
}

.icon-certificate:before {
  content: "\e84b";
}

.icon-calendar-alt:before {
  content: "\e84e";
}

.icon-bus:before {
  content: "\e851";
}

.icon-plus-circle:before {
  content: "\e853";
}

.icon-external-link-alt:before {
  content: "\e854";
}

.icon-map-marked-alt:before {
  content: "\e855";
}

.icon-language:before {
  content: "\e856";
}

.icon-facebook-f:before {
  content: "\e87c";
}

.icon-linkedin-in:before {
  content: "\e87d";
}

.icon-instagram:before {
  content: "\e87e";
}

.icon-youtube-1:before {
  content: "\e87f";
}

.icon-twitter-1:before {
  content: "\e880";
  font-size: 21px;
}

.icon-phone:before {
  content: "\e881";
}

.icon-share-square:before {
  content: "\e882";
}

.icon-building:before {
  content: "\e883";
}

.icon-check-circle-1:before {
  content: "\e884";
}

.icon-pinterest:before {
  content: "\e885";
}

.icon-globe:before {
  content: "\e886";
}

.icon-users:before {
  content: "\e887";
}

.icon-arrow-trend-up:before {
  content: "\e888";
}

.icon-hotel:before {
  content: "\e88a";
}

.icon-utensils:before {
  content: "\e88c";
}

.icon-passport:before {
  content: "\e88d";
}

.icon-chalkboard-teacher:before {
  content: "\e88e";
}

.icon-plane:before {
  content: "\e88f";
}

.icon-gem:before {
  content: "\e890";
}

.icon-award:before {
  content: "\e81f";
}

.icon-login:before {
  content: "\e815";
}

.icon-user-circle:before {
  content: "\e827";
}

.icon-chevron-left:before {
  content: "\e871";
}

/* =============================================
   PAGINACJA
   ============================================= */
@media (max-width: 480px) {
  .pagination {
    flex-wrap: wrap;
  }
  .pagination a, .pagination .current {
    min-width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

@media (max-width: 900px) {
  .hidem {
    display: none;
  }
}
.offer-date {
	background: #f1f5f9;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 0.85rem;
  color: #865a0e;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 0px solid #e2e8f0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.compact-detail.salary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(30, 190, 115, 0.1);
  color: #27c86b !important;
  font-weight: 700 !important;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.gallery-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
	padding-top: 4px;
}
.gallery-thumb {
    width: 148px;
  height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e2e8f0;
}
.gallery-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}
.gallery-lightbox.active { display: flex; }
.gallery-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    font-weight: 300;
}

