/* دکمه‌های انتخاب ویژگی */
.attr-buttons .attr-btn {
  display: inline-block;
  border: 2px solid #2271b1;   /* آبی پررنگ */
  background: #f0f8ff;         /* آبی خیلی روشن */
  color: #2271b1;              /* رنگ متن */
  padding: .6rem 1.1rem;
  border-radius: .6rem;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 500;
  transition: all .2s ease;
}

.attr-buttons .attr-btn:hover {
  background: #2271b1;    /* پس‌زمینه آبی */
  color: #fff;            /* متن سفید */
  transform: translateY(-2px);
}

.attr-buttons .attr-btn.selected {
  background: #2271b1;    /* دکمه انتخاب‌شده آبی پررنگ */
  color: #fff;            /* متن سفید */
  font-weight: 600;
  box-shadow: 0 0 8px rgba(34,113,177,.35);
}

.attr-buttons .attr-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.variations_form .variations select {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}
