/* === Кастомный селект для карточек PUMI-RUMI === */
.uc-select-wrap {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 12px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.15);
  overflow: hidden;
  cursor: pointer;
  transition: all .2s ease;
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
}

.uc-select-wrap select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.uc-select-label {
  padding: 10px 40px 10px 14px;
  font-size: 14px;
  color: #1e1e1e;
  font-weight: 500;
  pointer-events: none;
}

.uc-select-label::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: linear-gradient(135deg, #0086B3, #C4203D);
  -webkit-mask: url("data:image/svg+xml,%3Csvg fill='none' stroke='%23fff' stroke-width='2.2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg fill='none' stroke='%23fff' stroke-width='2.2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat center;
  background-size: 100%;
  opacity: 0.9;
  transition: transform .25s ease;
}

.uc-select-wrap:hover .uc-select-label::after {
  transform: translateY(-50%) rotate(180deg);
}

.uc-select-wrap:hover {
  background: #fff;
  border-color: rgba(0,0,0,0.25);
  box-shadow: 0 3px 8px rgba(0,0,0,0.06);
}
