/* --- Bransoletki: delikatne podkreślenie po hover --- */

/* Główne menu Alysum / Asylium */
.menu-bransoletki a {
  position: relative;
  display: inline-block;
  color: #000 !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  font-family: inherit;
  transition: color 0.3s ease;
}

/* Linia pod tekstem */
.menu-bransoletki a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background-color: #000;
  transition: width 0.3s ease;
}

/* Efekt pojawiania się linii */
.menu-bransoletki:hover a::after {
  width: 100%;
}

/* Kolor pozostaje czarny */
.menu-bransoletki:hover a {
  color: #000 !important;
}
/* === Obniżenie ikon hover na miniaturkach produktów === */
.product-actions.show-on-hover.scale-on-hover {
  position: absolute;
  top: 70%; /* Im większy %, tym niżej – możesz dać np. 75% */
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  z-index: 5;
}

/* lekkie dostosowanie rozstawu przycisków */
.product-actions.show-on-hover.scale-on-hover a.btn {
  margin: 0 6px;
}

/* Na telefonach – wracają wyżej (żeby nie wychodziły poza zdjęcie) */
@media (max-width: 768px) {
  .product-actions.show-on-hover.scale-on-hover {
    top: 60%;
  }
}
.products-sort-order .dropdown-menu a[href*="order=product.reference.asc"],
.products-sort-order .dropdown-menu a[href*="order=product.reference.desc"] {
  display: none !important;
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.price-input {
  width: 70px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 4px 5px;
  font-size: 14px;
}

.apply-price-filter {
  margin-top: 8px;
  padding: 4px 10px;
  font-size: 13px;
  background: #d8bfa3;
  border: none;
  border-radius: 20px;
  color: white;
  transition: background 0.3s ease;
}
.apply-price-filter:hover {
  background: #c2a98f;
}
/* Wymuszenie widoczności całego slidera */
.ui-slider {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Pasek suwaka */
.ui-slider-horizontal {
  height: 6px !important;
  background: #ddd !important;
  border-radius: 4px !important;
  position: relative !important;
}

/* Zakres */
.ui-slider-range {
  background: #999 !important;
  height: 100% !important;
  border-radius: 4px !important;
}

/* Uchwyty */
.ui-slider-handle {
  width: 16px !important;
  height: 16px !important;
  background: #fff !important;
  border: 2px solid #666 !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  margin-top: -5px !important;
  box-sizing: border-box !important;
  z-index: 5 !important;
}

.ui-slider-handle:nth-child(2) {
  left: 0 !important;
}

.ui-slider-handle:nth-child(3) {
  left: 100% !important;
}

 <style>
    .delivery-options-list {
      background: #fff;
      padding: 30px 25px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }

    .delivery-option-card {
      border: 1px solid #eee;
      border-radius: 12px;
      margin-bottom: 15px;
      transition: all 0.3s ease;
      overflow: hidden;
    }

    .delivery-option-card:hover {
      border-color: #d8bfa3;
      box-shadow: 0 0 10px rgba(216,191,163,0.3);
    }

    .delivery-option-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
      padding: 15px;
    }

    .delivery-logo img {
      width: 60px;
      height: auto;
      border-radius: 6px;
    }

    .delivery-info {
      flex-grow: 1;
    }

    .delivery-name {
      font-weight: 600;
      font-size: 15px;
      display: block;
      color: #333;
    }

    .delivery-delay {
      color: #777;
      font-size: 13px;
    }

    .delivery-price {
      font-weight: 600;
      font-size: 15px;
      color: #c4a484;
    }

    .order-options {
      margin-top: 25px;
    }

    textarea {
      width: 100%;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 10px;
      font-size: 14px;
    }

    .continue-btn {
      display: block;
      margin: 30px auto 0;
      background: #d8bfa3;
      border: none;
      border-radius: 25px;
      padding: 12px 40px;
      color: #fff;
      text-transform: uppercase;
      font-size: 13px;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
    }

    .continue-btn:hover {
      background: #c8ae93;
      box-shadow: 0 4px 10px rgba(210,183,158,0.4);
    }
  </style>