/* Local Icon Font for Novoshop Theme - CSS-Only Icons */

/* Base Icon Styles */
[class^="icon-"], [class*=" icon-"] {
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  text-decoration: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 16px;
  height: 16px;
  text-align: center;
}

/* Search Icon - Magnifying Glass */
.icon-search:before { 
  content: "🔍"; 
  font-size: 16px;
  line-height: 1;
}

/* User Icon - Person */
.icon-user:before { 
  content: "👤"; 
  font-size: 16px;
  line-height: 1;
}

/* Shopping Cart Icon */
.icon-shopping-cart:before { 
  content: "🛒"; 
  font-size: 16px;
  line-height: 1;
}

/* Shopping Bag Icon */
.icon-shopping-bag:before { 
  content: "🛍️"; 
  font-size: 16px;
  line-height: 1;
}

/* Envelope Icon */
.icon-envelope:before { 
  content: "✉️"; 
  font-size: 16px;
  line-height: 1;
}

/* Phone Icon */
.icon-phone:before { 
  content: "📞"; 
  font-size: 16px;
  line-height: 1;
}

/* Shuffle/Compare Icon */
.icon-shuffle:before { 
  content: "🔄"; 
  font-size: 16px;
  line-height: 1;
}

/* Heart/Wishlist Icon */
.icon-heart:before { 
  content: "❤️"; 
  font-size: 16px;
  line-height: 1;
}

/* Moon/Dark Mode Icon */
.icon-moon:before { 
  content: "🌙"; 
  font-size: 16px;
  line-height: 1;
}

/* Sun/Light Mode Icon */
.icon-sun:before { 
  content: "☀️"; 
  font-size: 16px;
  line-height: 1;
}

/* Truck/Track Orders Icon */
.icon-truck:before { 
  content: "🚚"; 
  font-size: 16px;
  line-height: 1;
}

/* Alternative classes for compatibility */
.fa-search:before { content: "🔍"; font-size: 16px; line-height: 1; }
.fa-user:before { content: "👤"; font-size: 16px; line-height: 1; }
.fa-shopping-cart:before { content: "🛒"; font-size: 16px; line-height: 1; }
.fa-shopping-bag:before { content: "🛍️"; font-size: 16px; line-height: 1; }
.fa-envelope:before { content: "✉️"; font-size: 16px; line-height: 1; }
.fa-phone:before { content: "📞"; font-size: 16px; line-height: 1; }
.fa-shuffle:before { content: "🔄"; font-size: 16px; line-height: 1; }
.fa-heart:before { content: "❤️"; font-size: 16px; line-height: 1; }
.fa-moon:before { content: "🌙"; font-size: 16px; line-height: 1; }
.fa-sun:before { content: "☀️"; font-size: 16px; line-height: 1; }
.fa-truck:before { content: "🚚"; font-size: 16px; line-height: 1; }

/* Icon positioning and spacing */
.header-contact-item i,
.header-actions i,
.action-icon i,
.search-submit i {
  margin-left: 8px;
  vertical-align: middle;
}

/* RTL Support */
html[dir="rtl"] .header-contact-item i,
html[dir="rtl"] .header-actions i,
html[dir="rtl"] .action-icon i,
html[dir="rtl"] .search-submit i {
  margin-left: 0;
  margin-right: 8px;
}
