/* ==========================================================
   SVG ICON SYSTEM - PROFESSIONAL ICONS
   Reusable SVG icons for the entire site
========================================================== */

/* ==========================================================
   ICON BASE STYLES
========================================================== */
.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.icon-sm {
  width: 18px;
  height: 18px;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

.icon-xl {
  width: 40px;
  height: 40px;
}

.icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ==========================================================
   ICON COLORS
========================================================== */
.icon-white svg {
  fill: #ffffff;
  stroke: #ffffff;
}

.icon-gold svg {
  fill: #c6a667;
  stroke: #c6a667;
}

.icon-dark svg {
  fill: #1a1a1a;
  stroke: #1a1a1a;
}

.icon-muted svg {
  fill: #8a8a8a;
  stroke: #8a8a8a;
}

/* ==========================================================
   ICON BUTTONS
========================================================== */
.icon-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.icon-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  transition: all 0.3s ease;
}

.site-header.active .icon-btn,
.site-header.scrolled .icon-btn {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.3);
}

.site-header.active .icon-btn:hover,
.site-header.scrolled .icon-btn:hover {
  border-color: #c6a667;
  background: rgba(198, 166, 103, 0.15);
  box-shadow: 0 0 14px rgba(198, 166, 103, 0.3);
}

.site-header.active .icon-btn svg,
.site-header.scrolled .icon-btn svg {
  stroke: #ffffff;
}

/* ==========================================================
   CART COUNT BADGE
========================================================== */
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: #c6a667;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  border-radius: 10px;
  border: 2px solid #000;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-count:empty,
.cart-count[data-count="0"] {
  display: none;
}

.site-header.active .cart-count,
.site-header.scrolled .cart-count {
  border-color: #000;
  background: #c6a667;
}

