/* SVG icon system (mask + currentColor) — no icon fonts */
:root {
    --icon-chevron-down: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.29289 8.29289C4.68342 7.90237 5.31658 7.90237 5.70711 8.29289L12 14.5858L18.2929 8.29289C18.6834 7.90237 19.3166 7.90237 19.7071 8.29289C20.0976 8.68342 20.0976 9.31658 19.7071 9.70711L12.7071 16.7071C12.3166 17.0976 11.6834 17.0976 11.2929 16.7071L4.29289 9.70711C3.90237 9.31658 3.90237 8.68342 4.29289 8.29289Z' fill='%23000000'/%3E%3C/svg%3E");
    --icon-chevron-left: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M10 4L6 8l4 4'/%3E%3C/svg%3E");
    --icon-chevron-right: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M6 4l4 4-4 4'/%3E%3C/svg%3E");
    --icon-arrow-left: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M10 3L5 8l5 5M5 8h8'/%3E%3C/svg%3E");
    --icon-arrow-right: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M6 3l5 5-5 5M3 8h8'/%3E%3C/svg%3E");
    --icon-eye: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8S1 12 1 12z'/%3E%3Ccircle cx='12' cy='12' r='3' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E");
    --icon-heart: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M20.8 4.6a5.5 5.5 0 0 0-7.8 0L12 5.6l-1-1a5.5 5.5 0 0 0-7.8 7.8l1 1L12 21l7.8-7.6 1-1a5.5 5.5 0 0 0 0-7.8z'/%3E%3C/svg%3E");
    --icon-heart-fill: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M20.8 4.6a5.5 5.5 0 0 0-7.8 0L12 5.6l-1-1a5.5 5.5 0 0 0-7.8 7.8l1 1L12 21l7.8-7.6 1-1a5.5 5.5 0 0 0 0-7.8z'/%3E%3C/svg%3E");
    --icon-cross: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath stroke='%23000' stroke-width='2' stroke-linecap='round' d='M4 4l8 8M12 4l-8 8'/%3E%3C/svg%3E");
    --icon-play: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M8 5v14l11-7L8 5z'/%3E%3C/svg%3E");
}

/* Shared SVG mask icon helper */
.icon-arrow-left,
.icon-arrow-right {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  vertical-align: middle;
  background-color: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.icon-arrow-left {
  -webkit-mask-image: var(--icon-arrow-left);
  mask-image: var(--icon-arrow-left);
}

.icon-arrow-right {
  -webkit-mask-image: var(--icon-arrow-right);
  mask-image: var(--icon-arrow-right);
}

/* Nav / Bootstrap dropdown chevron */
.dropdown-toggle::after,
.dropdown-toggle::before {
  font-family: inherit !important;
  content: "" !important;
  border: 0 !important;
  width: 14px;
  height: 14px;
  background-color: currentColor;
  -webkit-mask: var(--icon-chevron-down) center / contain no-repeat;
  mask: var(--icon-chevron-down) center / contain no-repeat;
  margin-inline-start:5px;
}

.dropdown-toggle::before {
  display: none;
}

.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.3rem;
  -webkit-mask-image: var(--icon-chevron-left);
  mask-image: var(--icon-chevron-left);
}

.dropstart .dropdown-toggle::after {
  display: none;
}

.dropend .dropdown-toggle::after {
  -webkit-mask-image: var(--icon-chevron-right);
  mask-image: var(--icon-chevron-right);
}

.dropup .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Breadcrumb separator */
.breadcrumb-alt .breadcrumb-item + .breadcrumb-item::before {
  font-family: inherit !important;
  content: "" !important;
  display: inline-block;
  width: 0.65em;
  height: 0.65em;
  margin-top: 0.0625rem;
  background-color: currentColor;
  -webkit-mask: var(--icon-chevron-right) center / contain no-repeat;
  mask: var(--icon-chevron-right) center / contain no-repeat;
}

/* Password visibility toggle */
.password-toggle-btn .password-toggle-indicator {
  font-family: inherit !important;
}

.password-toggle-btn .password-toggle-indicator::before {
  content: "" !important;
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  background-color: currentColor;
  -webkit-mask: var(--icon-eye) center / contain no-repeat;
  mask: var(--icon-eye) center / contain no-repeat;
  vertical-align: middle;
}

/* Gallery video play badge — orange circle with white play SVG */
.gallery-item.video-item::after {
  font-family: inherit !important;
  content: "" !important;
  padding-left: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  background-color: #f26b25 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M8 5v14l11-7L8 5z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 55% center !important;
  background-size: 1rem 1rem !important;
}

/* Wishlist heart */
.btn-wishlist::before {
  font-family: inherit !important;
  content: "" !important;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask: var(--icon-heart) center / contain no-repeat;
  mask: var(--icon-heart) center / contain no-repeat;
  vertical-align: middle;
}

.btn-wishlist.active::before {
  content: "" !important;
  -webkit-mask-image: var(--icon-heart-fill);
  mask-image: var(--icon-heart-fill);
}

/* Active filter dismiss */
.active-filter::before {
  font-family: inherit !important;
  content: "" !important;
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-top: -0.25rem;
  margin-right: 0.5rem;
  vertical-align: middle;
  background-color: currentColor;
  -webkit-mask: var(--icon-cross) center / contain no-repeat;
  mask: var(--icon-cross) center / contain no-repeat;
}

/* Media grid play affordance */
.media-grid-inner::after {
  font-family: inherit !important;
  content: "" !important;
  border: 0 !important;
  width: 1.25rem !important;
  height: 1.25rem !important;
  line-height: 0 !important;
  background-color: #fff;
  -webkit-mask: var(--icon-play) center / contain no-repeat;
  mask: var(--icon-play) center / contain no-repeat;
}
