/* 🔸 Boutons Dokan (Follow, Apply, Filter, Redirection) */
.dokan-btn,
.dokan-btn-theme,
.dokan-follow-store-button,
.dokan-store-list-filter-button {
  background: linear-gradient(135deg, #f77f00, #ff9e42) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 30px !important;
  padding: 10px 20px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 10px rgba(247, 127, 0, 0.3) !important;
  transition: all 0.3s ease-in-out !important;
  cursor: pointer !important;
}

/* 🔸 Effet au survol */
.dokan-btn:hover,
.dokan-btn-theme:hover,
.dokan-follow-store-button:hover,
.dokan-store-list-filter-button:hover {
  background: linear-gradient(135deg, #d62828, #f77f00) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 14px rgba(214, 40, 40, 0.4) !important;
}

/* 🔸 Bouton flèche circulaire (centrage du >) */
.dashicons-arrow-right-alt2 {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  font-size: 20px !important;
  background: linear-gradient(135deg, #f77f00, #ff9e42) !important;
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(247, 127, 0, 0.3) !important;
  transition: all 0.3s ease-in-out !important;
  cursor: pointer !important;
  border: none !important;
  padding: 0 !important;
}

.dashicons-arrow-right-alt2:hover {
  background: linear-gradient(135deg, #d62828, #f77f00) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 14px rgba(214, 40, 40, 0.4) !important;
}

/* 🔸 Champ de recherche vendeur */
.store-search-input {
  border: 1px solid #fcbf49 !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  font-size: 15px !important;
  background-color: #fff !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
  transition: border-color 0.3s ease !important;
}

.store-search-input:focus {
  border-color: #f77f00 !important;
  outline: none !important;
}

/* 🔸 Cercle autour de la photo de profil vendeur */
.seller-avatar img {
  border: 2px solid #fcbf49 !important;
  border-radius: 50% !important;
  padding: 2px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
  transition: border-color 0.3s ease !important;
}

.seller-avatar img:hover {
  border-color: #f77f00 !important;
}

/* 🔸 Position du bouton Follow */
.store-footer {
  position: relative;
}

.dokan-follow-store-button {
  position: absolute !important;
  top: 50px;
  right: 10px;
  z-index: 10;
}

