/* ==========================================================================
   Base styles (global)
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #111;
    font-weight: 400;
}

.italianno {
    font-family: 'Italianno', cursive;
}

.text-pink {
    color: #e6256e !important;
}

.text-pink-secondary,
.text-pink-secondary:link,
.text-pink-secondary:visited {
    color: #d60b52;
}

.text-pink-secondary:hover,
.text-pink-secondary:focus {
    color: #b40843 !important;
}

.social-links a {
    all: unset;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #1d1d1d;
    text-decoration: none;
    cursor: pointer;
}

.social-links a img {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
}

.social-links a span {
    display: inline;
    font-size: 1rem;
    color: #1d1d1d;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
    outline: none;
}

input[type="email"]:focus {
    border: 0;
}

.hover-bold{
    transition:transform 0.3s ease;
}

.hover-bold:hover{
    transform: scale(1.05);
}

.btn-filter {
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: #2C2C2C;
    border: none;
    border-radius:0;
    text-transform: uppercase;
    font-weight: 500;
}

.my-small-qty {
  width: 60px;
  height:40px;
  padding: 4px;
  font-size: 14px;
  text-align:center;
}

/* kontener kroków */
.checkout-steps{
  position: relative;
}

/* JEDNA linia pod spodem, na pełną szerokość
   16px z lewej/prawej = połówka kółka (32px) */
.checkout-steps::before{
  content:"";
  position:absolute;
  left:16px;                 /* <-- dostosuj do połowy średnicy kółka */
  right:16px;                /* <-- j.w. */
  top:50%;
  height:1px;
  background:#E1E1E1;
  transform:translateY(-50%);
  z-index:0;                 /* linia POD treścią */
}


.checkout-steps .icon-wrapper.active{
  background:#CFF5D0; border-color:#CFF5D0;
}

/* etykieta – też z białym tłem nad linią */
.step-label, .icon-wrapper{
  display:inline-block;
  background:#fff;           /* maskuje linię pod tekstem */
  padding:0 6px;             /* mały margines po bokach */
  position:relative; z-index:1;
}

.logo-40 { transform:scale(0.8);}


/* Kontener i typografia */
.problem-page .container,
.cf7-problem.container { max-width: 920px; }

.cf7-problem select,
.cf7-problem textarea {
  width: 100%;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 16px;
  outline: none;
  background: #fff;
}

.cf7-problem select { height: 48px; }
.cf7-problem textarea { min-height: 160px; resize: vertical; }

/* Odstępy między polami */
.wpcf7-form-control-wrap { display:block; margin-bottom: 16px; }

/* Uploader */
#cf7-attachments-input { 
  position: absolute; width:1px; height:1px; padding:0; margin:-1px; 
  overflow:hidden; clip:rect(0,0,0,0); border:0;
}

#cf7-files-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px dashed #eee;
}

#cf7-files-list li:last-child { border-bottom: 0; }

#cf7-files-list .file-icon {
  width: 22px; height: 22px; flex: 0 0 22px; opacity: .8;
}

#cf7-files-list .file-name {
  flex: 1 1 auto; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

#cf7-files-list .file-remove {
  font-size: 14px; text-decoration: none; color: #6c757d;
}
#cf7-files-list .file-remove:hover { color: #dc3545; }

/* Przycisk akcji */
.btn-pink {
  background: #ff2f84; color: #fff; border: none;
  padding: 12px 24px; border-radius: 10px; font-weight: 600;
}
.btn-pink:hover { filter: brightness(0.95); color:#fff; }

/* Link „Powrót” */
.back-link { color: #000; text-decoration: none; }
.back-link:hover { text-decoration: underline; }

/* Walidacja CF7 */
.wpcf7-not-valid { border-color: #dc3545; }
.wpcf7-not-valid-tip { color:#dc3545; margin-top:6px; font-size: 14px; }
.wpcf7 form .wpcf7-response-output { margin: 16px 0 0; }


/* Pasek logotypów – jedna wysokość, szerokość auto (zachowanie proporcji) */
:root { --logo-h: 32px; }                 /* xs */
@media (min-width: 768px){ :root { --logo-h: 20px; } }  /* md */
@media (min-width: 992px){ :root { --logo-h: 28px; } }  /* lg */
@media (min-width: 1400px){ :root { --logo-h: 36px; } } /* xl+ */

.logo-box {
  height: var(--logo-h);
}

.logo-box > img {
  height: 100%;       /* klucz: obraz dopasowuje się do wysokości */
  width: auto;        /* szerokość wynika z proporcji */
  display: block;
  margin:0 10px;
}

.footer-info-menu a{ display:block; }