/* =======================================================================
   custom.css — wersja MEGA-CZYSTA
   (porządek + czytelność, bez zbędnych śmieci)

   SPIS TREŚCI:
   1) Layout / wrapper
   2) Listing / miniatury
   3) Produkt + CMS (obrazki responsywne)
   4) Formularze / checkout
   5) Menu (desktop + mobile)
   6) Typografia / wyłączenie uppercase
   7) UI: social / ceny / odstępy
   8) Zaokrąglenia
   9) Kategorie / filtry (mobile)
   10) Stopka
   11) Home SEO block
   12) Utilities (helpers)
   13) Kontener (>=1200px)
   14) Zapytaj o produkt (AAP) — UX
   15) Zwijanie opisu podsumowanie na stronie produktu "czytaj więcej"
   16) Baner - na stronie głownej (seo)
   17) Stabilność renderu - logo na stroni głownej
   18) STOPKA – BLOK REASSURANCE (3 IKONY) – PREMIUM UPGRADE
======================================================================= */


/* =======================================================================
   1) LAYOUT / WRAPPER
======================================================================= */

#header {
  color: #111212;
}

/* =======================================================================
   A11Y — kontrast: header (Szukaj + linki) / menu / stopka
======================================================================= */

/* Szukaj — placeholder + tekst (Lighthouse kontrast) */
#header input[name="s"],
#header .ui-autocomplete-input {
  color: #111212;
}

#header input[name="s"]::placeholder,
#header .ui-autocomplete-input::placeholder {
  color: #6b7280;
  opacity: 1;
}

#wrapper {
  padding-top: 0.85rem;
}


/* =======================================================================
   2) LISTING / MINIATURY
======================================================================= */

/* Block reassurance: mniejsze ikonki */
.blockreassurance .block-icon,
.blockreassurance .block-icon img,
.blockreassurance .block-icon svg {
  height: 65px;
}

/* Miniatury: wysokości / marginesy / tytuły */
.product-miniature .product-description {
  height: 90px;
}

.product-miniature .thumbnail-container .product-thumbnail img {
  margin: 0 auto;
}

.product-miniature .product-title {
  height: 38px;
  text-transform: inherit;
}

.product-miniature .product-title a {
  color: #000 !important;
}


/* =======================================================================
   3) PRODUKT + CMS (OBRAZKI RESPONSYWNE)
======================================================================= */

.product-description img,
.page-content.page-cms img,
#extra-0 img {
  max-width: 100%;
  height: auto;
}

/* Odstęp pod sekcją zakładek produktu (Opis / Parametry / Użytkowanie) */
body#product .tabs.ets-ept-list-tabs-more-info {
  margin-bottom: 15px;
}

/* Formularz (send_AAP_form): ograniczenie szerokości obrazka (jeśli moduł wstawia) */
#send_AAP_form img {
  max-width: 50%;
  height: auto;
}


/* =======================================================================
   4) FORMULARZE / CHECKOUT
   (Supercheckout USUNIĘTY — nie używasz)
======================================================================= */

/* (pusto celowo) */


/* =======================================================================
   5) MENU (DESKTOP + MOBILE)
======================================================================= */

.top-menu {
  position: relative;
  z-index: 1000;
}

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

/* Submenu — bazowo ukryte (desktop: hover je pokaże) */
.top-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;

  opacity: 0;
  visibility: hidden;

  width: auto;
  min-width: 250px;
  max-width: 350px;

  padding: 10px;
  border-radius: 5px;

  background-color: #f6f6f6;
  font-size: 1rem;

  z-index: 9999;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);

  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* Linki w submenu (kontrast na jasnym tle) */
.top-menu .sub-menu a,
.top-menu a.dropdown-submenu,
#header .header-top a[data-depth="0"] {
  color: #1f2937;
}

.top-menu .sub-menu a:hover,
.top-menu a.dropdown-submenu:hover,
#header .header-top a[data-depth="0"]:hover {
  color: #111827;
}

/* Submenu: lista pionowo */
.top-menu .sub-menu ul {
  display: flex;
  flex-direction: column;

  margin: 0;
  padding: 0;
  list-style: none;
}

/* Elementy submenu */
.top-menu .sub-menu ul[data-depth="1"] > li {
  float: none;
  display: block;
  width: 100%;
  margin-bottom: 5px;
}

/* Desktop: pokazuj submenu po hover */
@media (min-width: 992px) {
  .top-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
  }
}

/* Jeśli JS ustawi data-clicked="true" — submenu ukryte */
.top-menu > li[data-clicked="true"] > .sub-menu {
  display: none !important;
}

/* Elementy menu, które nie mają reagować hoverem */
.top-menu > li.no-hover:hover .sub-menu {
  display: none !important;
}

/* Aktywna kategoria w menu */
.top-menu > li.active > a {
  color: #24b9d7 !important;
  font-weight: bold !important;
}

/* Hover na linku menu */
.top-menu > li:hover > a {
  color: #24b9d7 !important;
}

/* Mobile: submenu sterowane klasą .expanded
   UWAGA: 991.98px = bez kolizji na granicy 992px */
@media (max-width: 991.98px) {
  .top-menu .sub-menu {
    display: none;

    position: static;
    opacity: 1 !important;
    visibility: visible !important;

    padding: 10px;
    background-color: #f6f6f6;

    box-shadow: none;
    transition: none;
  }

  .top-menu > li.expanded > .sub-menu {
    display: block !important;
  }
}


/* =======================================================================
   6) TYPOGRAFIA / WYŁĄCZENIE UPPERCASE
======================================================================= */

.top-menu a.dropdown-submenu,
.product-flags li.product-flag,
#header .header-top a[data-depth="0"],
.btn-primary,
.btn-secondary,
.block-category h1,
.h1,
.h2,
.h3,
#subcategories ul li .subcategory-name {
  text-transform: none;
}

.text-uppercase {
  text-transform: none !important;
}

/* Flagi produktowe — czytelny tekst */
.product-flags li.product-flag {
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,0.18);
}

/* =======================================================================
   7) UI: SOCIAL / CENY / ODSTĘPY
======================================================================= */

/* Social */
.block-social ul li {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;

  margin: 0.125rem;
  cursor: pointer;

  background-color: #5bc0de;
  background-repeat: no-repeat;
}

/* Cena produktu */
.product-price.h5 {
  font-size: 1.2rem;
}

/* UWAGA: NIE ruszamy globalnie .row (potrafi rozwalić layout w sklepie)
   Marginesy w siatce ustawiamy tylko na listingach (na końcu pliku). */

/* Odstępy w modułach */
.an-pf-field {
  padding: 5px 0;
}

.product-variants > .product-variants-item {
  margin: 0.5rem 0;
}

.product-discounts {
  margin-bottom: 0.5rem;
}


/* =======================================================================
   8) ZAOKRĄGLENIA
   (bez globalnego img — zaokrąglamy tylko tam, gdzie ma sens)
======================================================================= */

.btn,
.tabs,
.form-control,
.card-block,
.product-miniature .thumbnail-container,
.radio-label {
  border-radius: 10px;
}

/* Zaokrąglenia obrazków tylko w obszarach produktu/listingu */
.product-miniature .thumbnail-container img,
.product-cover img,
.product-images img,
#product-modal img {
  border-radius: 10px;
}

/* Logo bez zaokrągleń */
#header .logo {
  border-radius: 0;
  margin-left: -2px;
}


/* =======================================================================
   9) KATEGORIE / FILTRY (MOBILE)
======================================================================= */

@media (max-width: 767px) {
  #category #left-column #search_filters .facet {
    margin-left: 10px;
    margin-right: 8px;
  }
}


/* =======================================================================
   10) STOPKA
======================================================================= */

#footer {
  padding-top: 2.5rem;
  text-align: center;
}

/* Stopka — linki (kontrast) */
#footer a,
#footer .cms-page-link,
#footer #contact-infos a {
  color: #374151;
}

#footer a:hover {
  color: #111827;
}

/* =======================================================================
   11) HOME SEO BLOCK
======================================================================= */

.home-seo-block {
  margin: 28px 0 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  color: #444;
}

.home-seo-block h1 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 600;
  color: #333;
}

.home-seo-block h2 {
  margin: 0.8rem 0 0.3rem;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 600;
}

.home-seo-block h3 {
  margin: 0.2rem 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.home-seo-block p {
  margin: 0.25rem 0 0.4rem;
  font-size: 0.95rem;
  color: #374151;
}

.seo-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.seo-cta {
  margin-top: 0.2rem;
}

.seo-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 600px) {
  .home-seo-block h1 {
    font-size: 1.15rem;
  }

  .home-seo-block p {
    font-size: 0.93rem;
  }
}


/* =======================================================================
   12) UTILITIES (HELPERS)
======================================================================= */

.visually-hidden {
  position: absolute !important;

  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;

  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* =======================================================================
   13) KONTENER (>=1200px)
======================================================================= */

@media (min-width: 1200px) {
  #wrapper .container,
  #wrapper .container-sm,
  #wrapper .container-md,
  #wrapper .container-lg,
  #wrapper .container-xl,
  #wrapper .container-xxl {
    width: 100% !important;
    max-width: 1320px !important;
  }
}

/* =======================================================================
   14) ZAPYTAJ O PRODUKT (AAP) — POPRAWKI UX
======================================================================= */

/* textarea */
#aapfree_question {
  min-height: 110px;
  line-height: 1.5;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
}

/* tekst pomocniczy pod textarea */
.aapfree-instruction {
  margin-top: 6px;
  font-size: 13px;
  color: #374151;
}

/* szybkie podpowiedzi (chips) */
.aapfree-quick {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.aapfree-quick .aapfree-q {
  border: 1px solid #d0d0d0;
  background: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.05s ease;
}

.aapfree-quick .aapfree-q:hover { border-color: #999; }
.aapfree-quick .aapfree-q:active { transform: scale(0.98); }

/* Focus (UX + dostępność) */
.aapfree-quick .aapfree-q:focus,
.aapfree-quick .aapfree-q:focus-visible {
  outline: 2px solid rgba(36, 185, 215, 0.35);
  outline-offset: 2px;
}

/* czas odpowiedzi */
.aapfree-response-time {
  margin-top: 12px;
  font-size: 12px;
  color: rgb(36, 185, 215);
  font-weight: 600;
  text-align: center;
}

/* Stan "loading" dla przycisku wysyłki */
#sendAAPEmail.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

/* =======================================================================
   AAP POPUP — SZEROKOŚĆ + KOLUMNY (Twoje pytanie szersze)
   (bezpieczne selektory, tylko w obrębie fancybox + #send_AAP_form)
======================================================================= */

/* Desktop: szerszy popup */
@media (min-width: 992px) {

  /* szerokość okna */
  .fancybox-wrap.fancybox-desktop {
    width: 800px !important;
  }

  /* szerokość wnętrza (żeby nie trzymało się starych wartości) */
  .fancybox-wrap.fancybox-desktop .fancybox-inner {
    width: 770px !important;     /* realna szerokość na screenie u Ciebie */
    max-width: 770px !important;
    height: auto !important;
  }

  /* NAJWAŻNIEJSZE: zdejmujemy limit 600px z formularza */
  #send_AAP_form {
    max-width: none !important;
    width: 100% !important;
  }

  /* kolumny: lewa (Twoje pytanie) szersza, prawa węższa */
  #send_AAP_form .card-block > .col-lg-6 {
    float: left;
  }

  /* lewa kolumna (Twoje pytanie) */
  #send_AAP_form .card-block > .col-lg-6:first-of-type {
    width: 50% !important;
  }

  /* prawa kolumna (imię/email/tel) */
  #send_AAP_form .card-block > .col-lg-6.send_AAP_form_content,
  #send_AAP_form .card-block > #send_AAP_form_content.col-lg-6 {
    width: 50% !important;
  }

  /* żeby po floatach kontener się domknął */
  #send_AAP_form .card-block::after {
    content: "";
    display: table;
    clear: both;
  }
}

/* =======================================================================
   AAP POPUP — kosmetyka (zdjęcie + odstęp do nazwy)
======================================================================= */

/* zdjęcie mniejsze + odstęp do nazwy */
#send_AAP_form .product img {
  max-width: 30%;
  height: auto;
  display: block;
  margin: 0 auto 14px auto; /* odstęp pod zdjęciem */
}

#send_AAP_form .product_desc {
  margin-top: 10px;         /* odstęp między zdjęciem a nazwą */
  padding-bottom: 8px;
  border-bottom: 1px solid #ececec;
}

/* =========================================================
   PRODUCT – miniatury: zaokrąglona ramka aktywnej miniatury
========================================================= */

/* Kontener miniatury */
body#product .uit-gallery-thumbs-container li,
body#product .uit-gallery-thumbs-container a {
  border-radius: 10px !important;
  overflow: hidden !important;
}

/* Obrazek miniatury */
body#product .uit-gallery-thumbs-container img {
  border-radius: 10px !important;
  display: block !important;
}

/* Aktywna / kliknięta miniaturka (ramka) */
body#product .uit-gallery-thumbs-container li.bx-active,
body#product .uit-gallery-thumbs-container li.active,
body#product .uit-gallery-thumbs-container a:focus,
body#product .uit-gallery-thumbs-container a:active {
  border-radius: 10px !important;
}

/* Jeśli ramka jest robiona outline (częsty case) */
body#product .uit-gallery-thumbs-container a {
  outline: none !important;
}


/* =========================================================
   PRODUCT – zaokrąglenie GŁÓWNEGO zdjęcia
========================================================= */

/* Sam obraz */
body#product #zoom_html img {
  border-radius: 10px !important;
  display: block !important;
}

/* PRZYCINAMY TYLKO OBSZAR ZDJĘCIA */
body#product #zoom_html .bx-viewport {
  overflow: hidden !important;
  border-radius: 10px !important;
}

/* NIE UCINAMY PAGERA (kropek) */
body#product #zoom_html .bx-wrapper {
  overflow: visible !important;
}

/* odstęp między miniaturkami a blokami PrestaHero (Poniżej tytułu produktu) */
.uit-gallery-thumbs-container + .ets-ept-prod-tabs.other_hooks.hooks_2 {
  margin-top: 20px;
}

/* =========================================================
   PRODUCT – czytaj więcej
========================================================= */

/* PRODUKT – podsumowanie: tylko 1 linia + czytaj więcej */
body#product #product-description-short,
body#product [id^="product-description-short-"]{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;   /* dokładnie 1 linia */
  overflow: hidden;

  font-size: 13px;
  line-height: 1.45;
  color: #4b5563;
}

/* stan rozwinięty */
body#product #product-description-short.is-expanded,
body#product [id^="product-description-short-"].is-expanded{
  -webkit-line-clamp: unset;
  display: block;
}

/* link */
body#product .shortdesc-toggle{
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  color: #374151;
  cursor: pointer;
  text-decoration: underline;
}

/* =========================================================
   16) Baner - na stronie głownej (seo)
========================================================= */

.home-compact-info{
  background:#f3f2f0;
  border-radius:12px;
  padding:12px 14px;
  margin:10px 0 14px;
}

.home-compact-info .hci-row{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
}

.home-compact-info .hci-left,
.home-compact-info .hci-right{
  min-width:0;
}

.home-compact-info .hci-title{
  margin:0;
  font-size:18px;
  line-height:1.2;
  font-weight:800;
  color:#111;
}

.home-compact-info .hci-lead{
  margin:6px 0 8px;
  font-size:13px;
  line-height:1.35;
  color:#444;
}

.home-compact-info .hci-list{
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:6px 8px;
}

.home-compact-info .hci-list li{
  font-size:12px;
  line-height:1.2;
  color:#222;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:999px;
  padding:5px 9px;
  white-space:nowrap;
}

.home-compact-info .hci-right{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-end;
}

.home-compact-info .hci-cta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.home-compact-info .hci-btn{
  display:inline-block;
  font-size:12px;
  line-height:1;
  padding:8px 10px;
  border-radius:10px;
  text-decoration:none;
  border:1px solid rgba(0,0,0,.14);
  background:#111;
  color:#fff;
}

.home-compact-info .hci-btn--ghost{
  background:#fff;
  color:#111;
}

@media (max-width: 768px){
  .home-compact-info .hci-row{
    flex-direction:column;
    align-items:flex-start;
  }
  .home-compact-info .hci-right{
    align-items:flex-start;
    width:100%;
  }
  .home-compact-info .hci-cta{
    justify-content:flex-start;
  }
}

/* =====================================================
   MOBILE – Strona główna + Kategorie
   2 produkty w rzędzie + poprawa tytułu i ceny
===================================================== */
@media (max-width: 767px) {

  body#index .products,
  body#category .products {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-left: -8px;
    margin-right: -8px;
  }

  body#index .products > .js-product,
  body#category .products > .js-product {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
  }

  body#index .product-title,
  body#category .product-title {
    font-size: 13px;
    line-height: 1.25;
    margin: 10px 0 6px;
    min-height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  body#index .product-price-and-shipping,
  body#category .product-price-and-shipping {
    margin-top: 6px;
    min-height: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    line-height: 1.2;
  }

  body#index .product-price-and-shipping .price,
  body#category .product-price-and-shipping .price {
    font-size: 13px;
    line-height: 1.15;
    margin: 0;
  }

  body#index .product-price-and-shipping .regular-price,
  body#category .product-price-and-shipping .regular-price {
    font-size: 12px;
    line-height: 1.1;
    margin: 0;
  }
}

/* =====================================================
   MOBILE – listing: stabilne miniatury (bez “wskakiwania”)
   - stały kwadrat 1:1
   - placeholder (tło) zanim zdjęcie się wczyta
   - obraz: cover (ładniej w kafelkach)
===================================================== */
@media (max-width: 767px) {

  body#index .product-miniature .thumbnail-container .product-thumbnail,
  body#category .product-miniature .thumbnail-container .product-thumbnail,
  body#search .product-miniature .thumbnail-container .product-thumbnail {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f3f3f3;     /* placeholder */
    overflow: hidden;
    border-radius: 10px;
  }

  body#index .product-miniature .thumbnail-container .product-thumbnail img,
  body#category .product-miniature .thumbnail-container .product-thumbnail img,
  body#search .product-miniature .thumbnail-container .product-thumbnail img {
    width: 100% !important;
    height: 100% !important;
    display: block;
    object-fit: cover;
  }

  /* Dodatkowo: mniej “ciężkiego” renderu listy na scrollu */
  body#index .product-miniature,
  body#category .product-miniature,
  body#search .product-miniature {
    content-visibility: auto;
    contain-intrinsic-size: 320px; /* przybliżona wysokość kafelka */
  }
}

/* =====================================================
   Marginesy .row TYLKO na listingach (bez psucia całego sklepu)
===================================================== */
body#index .row,
body#category .row,
body#search .row {
  margin-top: 2px;
  margin-bottom: 6px;
}

/* (celowo: brak .material-icons z font-display — to ustawiamy w @font-face/preload) */

/* =======================================================================
   18) STOPKA – BLOK REASSURANCE (3 IKONY) – PREMIUM UPGRADE
======================================================================= */

#footer .blockreassurance {
  background: #f7f9fb;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 16px;
  padding: 36px 20px;
  margin-bottom: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

#footer .blockreassurance .block-icon svg,
#footer .blockreassurance .block-icon img {
  height: 60px;
  margin-bottom: 8px;
}

#footer .blockreassurance .block-title {
  font-weight: 700;
  font-size: 15px;
  color: #1f2a37;
  margin-bottom: 6px;
}

#footer .blockreassurance p {
  font-size: 13.5px;
  color: #5f6b7a;
  line-height: 1.55;
  margin: 0;
}

/* Delikatne separatory kolumn na desktop */
@media (min-width: 992px) {
  #footer .blockreassurance > .row > div:not(:last-child) {
    border-right: 1px solid rgba(0,0,0,0.05);
  }
}

/* Mobile – więcej oddechu */
@media (max-width: 991px) {
  #footer .blockreassurance {
    padding: 28px 18px;
  }
  #footer .blockreassurance > .row > div {
    margin-bottom: 22px;
  }
  #footer .blockreassurance > .row > div:last-child {
    margin-bottom: 0;
  }
}

/* =======================================================================
   SEARCH – Autocomplete (desktop) – duża miniaturka, lewo, pionowe centrowanie
======================================================================= */
@media (min-width: 992px) {

  /* kontener listy */
  ul.ui-autocomplete.ui-front {
    text-align: left !important;
    padding: 12px 0 !important;
    border-radius: 14px;
  }

  /* pojedynczy wynik */
  ul.ui-autocomplete.ui-front > li > a,
  ul.ui-autocomplete.ui-front .ui-menu-item-wrapper {
    display: flex !important;
    align-items: center !important;          /* tekst w pionie na środku miniaturki */
    justify-content: flex-start !important;  /* wszystko do lewej */
    gap: 18px !important;
    padding: 14px 18px !important;
    text-align: left !important;
  }

  /* miniaturka */
  ul.ui-autocomplete.ui-front img.autocomplete-thumbnail,
  ul.ui-autocomplete.ui-front img {
    width: 96px !important;
    height: 96px !important;
    max-width: 96px !important;
    max-height: 96px !important;
    object-fit: cover !important;
    border-radius: 14px !important;
    flex: 0 0 96px !important;
    margin: 0 !important;
  }

  /* tekst produktu */
  ul.ui-autocomplete.ui-front .product,
  ul.ui-autocomplete.ui-front span.product {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.25 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-align: left !important;
  }
}

/* ==============================
   Search – przycisk X (FINAL: 0.8, widoczność steruje JS)
============================== */

#search_widget {
  position: relative;
}

/* input – miejsce na X */
#search_widget input {
  padding-right: 44px !important;
}

/* krzyżyk */
.search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);

  width: 30px;
  height: 30px;

  display: none; /* JS pokaże tylko gdy jest tekst */
  align-items: center;
  justify-content: center;

  background: rgba(36, 185, 215, 0.8); /* transparentny firmowy */
  border-radius: 50%;

  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

/* hover – pełny kolor */
.search-clear:hover {
  background: #24b9d7;
}
/* ==============================
   Search – usuń krzyżyk z motywu
============================== */
#search_widget i.material-icons.clear {
  display: none !important;
}