/* Add custom CSS styles below */ 
/* SOLD COUNTER */
#custom-sold-count {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  margin-top: 16px;
  margin-bottom: 8px;
  font-family: sans-serif;
}

/* MAIN CONTAINER */
#custom-markettool {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 13.5px;
  line-height: 1.6;
  font-family: sans-serif;
  color: #333;
  margin: 0 auto 20px auto;
}

/* RESET UL */
#custom-markettool ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* EACH ITEM */
#custom-markettool ul li {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

/* ICON STYLE */
#custom-markettool ul li img.icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.9;
}

/* FLAG IMAGE */
#custom-markettool ul li img.flag {
  width: 14px;
  height: 10px;
  object-fit: cover;
  border-radius: 2px;
  margin: 0 4px;
}

/* BOLD TEXT */
#custom-markettool ul li b {
  font-weight: 600;
  color: #000;
}

/* LIGHT GRAY TEXT */
#custom-markettool ul li i {
  color: #888;
  font-style: normal;
}

/* REMOVE BOTTOM MARGIN FROM LAST ITEM */
#custom-markettool ul li:last-child {
  margin-bottom: 0;
}

/* INLINE FIX FOR BUYER INFO LINE */
#custom-markettool .buyer-info {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4px;
  white-space: nowrap;
}
#secure-checkout-icons {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
  font-family: sans-serif;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

#secure-checkout-icons h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  color: #111;
  letter-spacing: 0.5px;
}

#secure-checkout-icons .icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 12px;
}

#secure-checkout-icons .icon-box {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 10px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
  border: 1px solid #eee;
}

#secure-checkout-icons .icon-box:hover {
  background: #f0f0f0;
  transform: scale(1.03);
}

#secure-checkout-icons .icon-box img {
  max-height: 28px;
  max-width: 80px;
  object-fit: contain;
  display: block;
}
.icon-box img {
  max-height: 28px;
  max-width: 80px;
  object-fit: contain;
}
/* يخفي sold فوق صندوق */
#custom-sold-count {
  display: none;
}
.floating-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-family: sans-serif;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.floating-notification.hide {
  opacity: 0;
  transform: translateY(-20px);
}

.floating-notification img.notif-flag {
  width: 18px;
  height: 12px;
  border-radius: 2px;
}