.underline-hover:hover {
  text-decoration: underline !important;
}

.card {
  border: 1px solid rgba(0, 0, 0, .125) !important;
  border-radius: .25rem !important;
}

a {
  text-decoration: none !important;
  color: gray !important;
}

.slide-cart .cart-icon {
  animation: slideIn 2s ease-out;
}

/* Check icon fade-in effect */
.show-check i {
  animation: fadeIn 2s ease-in;
}

/* Slide-in keyframe */
@keyframes slideIn {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Fade-in keyframe */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 10;
  }
}

.tooltippp {

  position: relative;
  right: 0;
  left: 0;
  margin-top: 5px;
  display: inline-block;
}

.tooltippp .tooltippptext {
  visibility: hidden;
  width: 300px;
  color: #ac635d;
  background-color: #f8d7da;
  border-color: #f8d7da;
  text-align: center;
  border-radius: 6px;
  padding: 11px;
  position: absolute;
  z-index: 1;
  bottom: 130%;
  left: 50%;
  margin-left: -290px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltippp .tooltippptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 10px;
  border-style: solid;
  border-color: #f8d7da transparent transparent transparent;
}

.tooltippp:hover .tooltippptext {
  visibility: visible;
  opacity: 1;
}

.min-order-badge {
  line-height: 20px;
  background-color: #f8f9fa;
  color: #198754;
  padding: 0.05rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid #198754;
}

.seller-tooltip {
  position: relative;
  display: inline-block;
  margin-left: 4px;
  cursor: pointer;
}

.tooltip-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 50%;
  background-color: #e9f7e7;
  color: #198754;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  cursor: default;
  border: 1px solid #198754;
}

.seller-tooltip .seller-tooltip-text {
  visibility: hidden;
  width: 280px;
  background-color: #e8fbe5;
  color: #2e7d32;
  text-align: left;
  border-radius: 6px;
  padding: 6px 8px;
  position: absolute;
  z-index: 10;
  top: calc(100% + 8px);
  right: -8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border: 1px solid #b9e7b1;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
}

.seller-tooltip .seller-tooltip-text::after {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 10px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent #e8fbe5 transparent;
}

.seller-tooltip:hover .seller-tooltip-text {
  visibility: visible;
  opacity: 1;
}

.p-sm-4 {
  padding: 8px !important;
}

.card {
  border: 1px solid rgba(0, 0, 0, .125) !important;
  border-radius: .25rem !important;
}

.card-title {

  font-weight: 500 !important;
}

#customSelectDropdown .btn {
  border-radius: 4px;
  font-size: 15px;
  height: 38px;
  background: #fff;
  color: #111827;
  box-shadow: none;
  padding: 0 10px;
}

#customSelectDropdown .dropdown-menu {
  font-size: 15px;
  border-radius: 4px;
}

#customSelectDropdown .dropdown-item:hover,
#customSelectDropdown .dropdown-item.active {
  background: #f3f4f6;
  color: #16a34a;
}

.shipping-dropdown .btn:focus {
  box-shadow: none;
}

.shipping-label {
  color: #23856d;
  font-size: 20px;
  font-weight: 500;
}

#shippingDropdown .bi {
  font-size: 14px;
  color: #23856d;
  transition: transform 0.2s;
}

#shippingDropdown.open .bi {
  transform: rotate(180deg);
}

.shipping-options {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#sizeDropdown .btn {
  border-radius: 6px;
  font-size: 15px;
  height: 40px;
  background: #fff;
  color: #111827;
  box-shadow: none;
  padding: 0 12px;
}

#sizeDropdown .dropdown-menu {
  font-size: 15px;
  border-radius: 6px;
}

#sizeDropdown .dropdown-item:hover,
#sizeDropdown .dropdown-item.active {
  background: #f3f4f6;
  color: #16a34a;
}

.plantimg {
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.card-edit {
  padding-top: 0;
  padding-bottom: 20px;
}

.store-product-card-detail span.card-label {
  text-wrap: nowrap;
  padding-right: 10px;
}

.store-product-card-detail span.card-value {
  text-wrap: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* Highlight Featured items on store pages */
.featured-item-card {
  border: 2px solid #198754 !important;
}