/*
Theme Name: Mimta
Theme URI: https://www.grafdom.com
Author: Grafdom Team
Description: Grafdom, a leading digital media agency in Dubai & Abu Dhabi, stands out for its expertise in Web Design, Social Media marketing, and video production.
Version: 1.0
Text Domain: mimta
*/


.payment_method_payriff img{
    height: 50px !important;
}

#payment{
    background-color: #0A5C74 !important;
}

.header-icon-wrapper {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.header-icon-wrapper:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.header-icon-wrapper i {
  font-size: 18px !important;
  color: #333;
  line-height: 1;
}

/* Adjust badges when inside the wrapper */
.header-icon-wrapper .cart-count,
.header-icon-wrapper .wishlist-badge {
  top: -5px;
  right: -5px;
  margin: 0;
}

/* Header Wishlist Section */
.header-wishlist-link {
  text-decoration: none;
  display: inline-block;
}

.header-wishlist-link .icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-wishlist-link i.bi-heart {
  font-size: 20px;
  /* Slightly larger icon */
  color: #333;
  transition: color 0.3s ease, transform 0.2s ease;
}

.header-wishlist-link:hover i.bi-heart {
  color: #fbbf24;
  /* Theme accent color on hover */
  transform: scale(1.1);
}

.wishlist-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #ff3b30;
  /* Bright red for visibility */
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border: 2px solid #fff;
  /* White border to separate from background */
  z-index: 10;
}