/* ---- Design Tokens ---- */
:root {
  --brand: #003366;
  --accent: #003366;
  --accent-hover:#C96D1D;
  --bg: #fff;
  --text: #222;
  --muted: #9aa0a6;
  --border: #eee;
  --elev: 0 6px 20px rgba(0,0,0,.18);
  --elev-lg: 0 10px 26px rgba(0,0,0,.22);
  --z-overlay: 9999;
  --z-drawer: 10000;
  --z-fab: 10001;
  --radius: 12px;
  --gap: 16px;
  --grid-min: 220px;
  --thumb: 14px;
}

/* ---- Base ---- */


.wrapper {
  max-width: 1200px;
  margin: 10px auto;
/*  padding: 0 16px;*/
}

/* ---- Floating purple CTA ---- */
.filters-fab {
  position: fixed;
/*left: 16px;*/
  top: 45vh;
  z-index: var(--z-fab);
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 70px;
  height: 70px;
  padding: 10px 14px;
  box-shadow: var(--elev);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  flex-direction: column;
}
.filters-fab:hover { transform: translateY(-1px); box-shadow: var(--elev-lg); }
.filters-fab .fab-label { font-weight: 600; }

/* ---- Overlay & Drawer ---- */
.filters-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.38);
  z-index: var(--z-overlay);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.filters-overlay.show { opacity: 1; pointer-events: auto; }

.filters-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  max-width: 86vw;
  background: #fff;
  z-index: var(--z-drawer);
  box-shadow: 2px 0 20px rgba(0,0,0,.18);
  transform: translateX(-105%);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
}
.filters-drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.close-btn {
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.filters-form { padding: 14px 16px; overflow: auto; }
.filter-group { margin: 14px 0; }
.filter-group h4 { margin: 10px 0 6px; font-size: 16px; text-align: left; }

/* ---- Chips ---- */
.chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 6px 8px;
}
.chips label {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
}
.chips input { accent-color: var(--brand); }

/* ---- Actions ---- */
.actions { display: flex; gap: 10px; margin-top: 6px; }
.btn-primary, .btn-outline {
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  font-size: 14px;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-outline { background: #fff; color: var(--brand); border-color: var(--brand); }

/* ---- Grid ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--grid-min), 1fr));
  gap: 18px;
  margin-left: 80px;
}
.product-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  text-decoration: none;
  color: inherit;
}
.product-card:hover { border-color: var(--accent); border-width: 2px; }
.product-card .card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  padding: 0 20px;
  border-radius: 8px;
  background:  #fff;
  display: block;
  margin: 0 auto;
}
.product-card h5 { margin: 10px 0 6px; font-size: 16px; }
.product-card p { margin: 0; color: #555; font-size: 14px; }

/* ---- Collapsible "See all" ---- */
.chips .is-hidden { display: none; }
.filter-seeall {
  background: transparent;
  border: none;
  color: var(--brand);
  font-weight: 600;
  cursor: pointer;
  padding: 6px 0;
  margin-top: 4px;
  text-align: left;
}
.filter-seeall:focus { outline: none; outline-offset: 2px; }

/* ---- Price range slider (dual thumb) ---- */
/*.price-slider { padding-top: 6px; }
.range-wrap { position: relative; height: 36px; }
.range {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 12px;
  width: 100%;
  height: 0;
  background: none;
  pointer-events: auto;
}
.range.min { z-index: 3; }
.range.max { z-index: 4; }
.range::-webkit-slider-thumb,
.range::-moz-range-thumb {
  height: var(--thumb);
  width: var(--thumb);
  border-radius: 50%;
  background: var(--accent);
  border: 0;
  box-shadow: 0 0 0 4px rgba(255,77,162,.15);
  cursor: pointer;
  position: relative;
  z-index: 5;
}
.range::-webkit-slider-runnable-track { height: 0; }
.range::-moz-range-track { height: 0; }

.range.max {
        accent-color: #C96D1D;
    }
	
.range.min {
        accent-color: #C96D1D;
    }

.slider-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 21px;
  height: 2px;
  background: #e9e9ee;
  border-radius: 2px;
  z-index: 1;
}
.slider-track::before {
  content: "";
  position: absolute;
  height: 2px;
  border-radius: 2px;
  z-index: 2;
  background: var(--secondary);
  left: var(--filled-left, 0%);
  right: var(--filled-right, 100%);
}
.price-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  font-weight: 700;
}
.price-labels .currency { color: var(--muted); margin-right: 6px; font-weight: 400; }
.price-left, .price-right { color: var(--muted); }
.price-left span:last-child, .price-right span:last-child { color: var(--accent); font-weight: 400; }*/

@media (max-width: 768px) {
  .filters-fab { top: 70vh; left: 12px; }
}


/* --- Virtualized list helpers --- */
.list-reset { list-style: none; padding: 0; margin: 0 0 40px 80px; }
.list-reset > li { margin: 0; padding: 0; }
.sentinel { height: 1px; }


/* --- Reuest a quote sample --- */
	.request-heading {
    color: darkgoldenrod;
  }
  .intro {
  color: darkgoldenrod; /* A grey hex code */
}

/*
.request { padding: 0px 0px 0px 80px; }
.why-choose { padding: 0px 0px 0px 80px; } */


.btn.call-btn {
    background-color: #013E74;   /* brand blue */
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  .btn.call-btn:hover {
    background-color: #C96D1D;   /* hover orange */
  }

  .btn.call-btn i {
    margin-right: 6px; /* space between icon and number */
  }
  
  .apparel-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  width: 100%;
}