:root {
  --color-primary: #2C3A47;
  --color-primary-hover: #1E2830;
  --color-primary-light: #3D4F61;
  --color-accent: #8B8178;
  --color-accent-hover: #736A62;
  --color-accent-light: #A89E94;
  --color-cta: #4A7C59;
  --color-cta-hover: #3D6649;
  --color-background: #F5F4F2;
  --color-surface: #FFFFFF;
  --color-surface-muted: #FAFAF8;
  --color-surface-dark: #232323;
  --color-header-bar: #2C3A47;
  --color-nav-bar: #F0EEEB;
  --color-text: #2D3436;
  --color-text-muted: #636E72;
  --color-text-light: #FFFFFF;
  --color-text-on-accent: #FFFFFF;
  --color-link: #2C3A47;
  --color-link-hover: #8B8178;
  --color-border: #E0DDD8;
  --color-border-light: #EFEDEA;
  --color-border-dark: #C8C4BE;
  --color-success: #4A7C59;
  --color-danger: #C0392B;
  --color-danger-hover: #A93226;
  --color-warning: #D4A843;
  --color-info: #3D7EA6;
  --color-price: #C0392B;
  --color-rating: #D4A843;
  --color-selection: #E8DFC8;
  --sticker-new-bg: #2C3A47;
  --sticker-new-color: #FFFFFF;
  --sticker-best-bg: #3D7EA6;
  --sticker-best-color: #FFFFFF;
  --sticker-sale-bg: #C0392B;
  --sticker-sale-color: #FFFFFF;
  --sticker-out-bg: #EFEDEA;
  --sticker-out-color: #636E72;
  --font-family-base: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 13px;
  --font-size-base: 15px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 22px;
  --font-size-2xl: 28px;
  --font-size-3xl: 34px;
  --line-height-base: 1.6;
  --line-height-tight: 1.3;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(45, 52, 54, 0.06);
  --shadow-md: 0 4px 16px rgba(45, 52, 54, 0.08);
  --shadow-lg: 0 8px 32px rgba(45, 52, 54, 0.1);
  --shadow-header: 0 2px 12px rgba(45, 52, 54, 0.08);
  --shadow-card: 0 2px 8px rgba(45, 52, 54, 0.06);
  --shadow-card-hover: 0 8px 24px rgba(45, 52, 54, 0.12);
  --shadow-dropdown: 0 8px 24px rgba(45, 52, 54, 0.14);
  --container-sm: 750px;
  --container-md: 970px;
  --container-lg: 1170px;
  --container-shadow: 0 0 24px rgba(0, 0, 0, 0.06);
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --focus-ring: 0 0 0 3px rgba(44, 58, 71, 0.3);
  --focus-outline: 2px solid var(--color-primary);
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-tooltip: 600;
}

body #popup-order-okno .popup-footer a {
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
}
body #popup-order-okno .popup-footer a:hover {
  background-color: var(--color-primary-hover);
  opacity: 1;
}

body .popup-phone-wrapper {
  background-color: var(--color-cta);
  opacity: 1;
  width: 64px;
  height: 64px;
  line-height: 80px;
  border-radius: var(--radius-full);
  right: 90px;
  bottom: 90px;
  box-shadow: var(--shadow-lg);
}
body .popup-phone-wrapper i {
  font-size: 32px;
}
body .popup-phone-wrapper:hover {
  opacity: 1;
}

.whatsapp-button {
  position: fixed;
  right: 9px;
  bottom: 100px;
  transform: translate(-50%, -50%);
  background: #25D366;
  border-radius: var(--radius-full);
  width: 48px;
  height: 48px;
  color: var(--color-text-light);
  text-align: center;
  line-height: 48px;
  font-size: 27px;
  z-index: 9999;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast);
}
.whatsapp-button a {
  color: var(--color-text-light);
}
.whatsapp-button:hover {
  transform: translate(-50%, -50%) scale(1.05);
}
.whatsapp-button::before, .whatsapp-button::after {
  content: " ";
  display: block;
  position: absolute;
  border: 1px solid #25D366;
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: var(--radius-full);
  animation: whatsapp-pulse 1.5s linear infinite;
  opacity: 0;
  backface-visibility: hidden;
}
.whatsapp-button::after {
  animation-delay: 0.5s;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-button::before,
  .whatsapp-button::after {
    animation: none;
  }
}
.socis {
  display: inline-block;
  width: 130px;
  vertical-align: text-bottom;
  text-align: center;
}
.socis img {
  width: 100%;
}

.telegram,
.whatsapp {
  width: 50px;
  height: 50px;
  display: inline-block;
  margin-left: var(--spacing-sm);
}

.socisfooter img {
  width: 40px;
}
.socisfooter p {
  display: inline-block;
  margin-right: var(--spacing-sm);
  margin-left: 14px;
}

.cm-am .item-wrapper .item-title {
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  font-family: Georgia, "Times New Roman", Times, serif;
  text-decoration: underline;
}

.information-information-224 .art {
  font-size: var(--font-size-md);
  line-height: var(--line-height-base);
}
.information-information-224 .art h1 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-lg);
}
.information-information-224 .art h2 {
  font-size: var(--font-size-xl);
}
.information-information-224 .art .blstimg {
  padding: var(--spacing-md) 0 var(--spacing-xl);
}
.information-information-224 .art ul {
  padding: var(--spacing-md);
}
.information-information-224 .art p {
  margin: var(--spacing-lg) 0;
}

body .com-rbs2__wrapper {
  float: right;
}

.mobile_info {
  display: none;
}

.header_search_doptext {
  display: none;
}

@media (max-width: 1600px) {
  body .popup-phone-wrapper {
    right: 20px;
    bottom: 160px;
  }
}
@media (max-width: 900px) {
  .whatsapp-button {
    bottom: 85px;
    right: 5px;
  }
  #top3.affix {
    top: 0;
    width: 100%;
    position: fixed;
  }
}
@media (max-width: 767px) {
  body .popup-phone-wrapper {
    display: block;
    opacity: 0.95;
    right: 30px;
    bottom: 60px;
    width: 48px;
    height: 48px;
    line-height: 60px;
  }
  body .popup-phone-wrapper i {
    font-size: 24px;
  }
  body .popup-phone-wrapper:hover {
    opacity: 1;
  }
  .telegram,
  .whatsapp {
    width: 25px;
    height: 25px;
  }
  .socis {
    width: 110px;
  }
  #banner00 {
    display: none;
  }
}
@media (max-width: 768px) {
  .telegram,
  .whatsapp {
    width: 25px;
    height: 25px;
  }
  .socis {
    width: 110px;
  }
}
