.breadcrumbs { padding-top: 8px; padding-bottom: 0; }

.page-heading { padding: 8px 0 16px; }

.stepper {
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.step {
  --h: 76px;
  min-height: var(--h);
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 0 20px 0 30px;
  position: relative;
}

.step:not(:last-child) {
  border-right: 1px solid #f1f3f5;
}
.step:not(:last-child)::before,
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top:0; right: -24px;
  width:0; height: 0;
  border-top: calc(var(--h)/2) solid transparent;
  border-bottom: calc(var(--h)/2) solid transparent;
}
.step:not(:last-child)::before {
  right: -26px;
  border-left: 25px solid #e9ecef;
}
.step:not(:last-child)::after {
  border-left: 24px solid #fff;
}

/* States */
.step.active {
  background-color: #fbfbfb;
}
.step.active:not(:last-child)::after {
  border-left-color:#fbfbfb;
}
.step.active:not(:last-child)::before {
  border-left-color:#e9ecef;
}
.step.active .step-label{ font-weight:600; color:#000; }
.step .step-num{ font-weight:600; color:#222; }
.step .step-ic{ opacity:.85; }

@media (max-width: 576px){
  .step{ --h:56px; padding:0 .75rem; }
  .step .step-label{ font-size:.95rem; }
}

/* Diamond Switcher */
.switcher-title {
  font-family: 'Metropolis', sans-serif;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 15px;
  color: #010403;
}
.diamond-type-switcher {
  margin-bottom: 40px;
}

.segmented-switch{
  --seg-bg: #fbfbfb;
  --seg-border: #e8e8e8;
  --seg-active: #16423c;
  --seg-text: #010403;
  --seg-radius: 30px;

  display: inline-flex;
  gap: .25rem;
  padding: 0;
  border: 1px solid var(--seg-border);
  border-radius: var(--seg-radius);
  background: var(--seg-bg);
}

.segmented-switch .segment{
  flex:1 1 0;
  min-width:0;
  padding: 16px;
  border-radius: var(--seg-radius);
  text-align:center;
  color:var(--seg-text);
  cursor:pointer;
  user-select:none;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.segmented-switch label {
  font-family: 'Metropolis', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.segmented-switch label.fancy-colors {
  width: 310px;
}

.segmented-switch .btn-check:checked + .segment{
  background:var(--seg-active);
  color:#fff;
}

.diamond-filters {
  border-bottom: 1px solid #F4F4F4;
  margin-bottom: 20px;
}

/* UI SLIDER */

/* Pills */
.btn-pill{
  background:#fff;
  border:1px solid #E8E8E8;
  padding:.5rem 1.25rem;
  border-radius:999px;
  font-weight:600;
}
.btn-check:checked + .btn-pill{
  background:#1c4e46; color:#fff; border-color:#1c4e46;
}

.byo-shape-filter-section {
  margin-bottom: 30px;
}

/* Sliders */
#slide_filter_container {
  margin-bottom: 25px;
}

.slide-filter-container {
  min-height: 105px;
}

#slide_filter_container .carat-inputs input {
  padding: 10px 12px;
  min-height: auto;
  height: auto;
  width: 110px;
}

.slider-wrapper{ position:relative; }
.noUi-target{ height:10px; background:#e0e0e0; border:none; box-shadow:none; }
.noUi-connect{ background:#16423C !important; }
.noUi-horizontal .noUi-handle {
  width: 20px !important;
  height: 20px !important;
  right: -8px !important;
  top: -6px !important;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ccc;
  box-shadow: none;
}
.noUi-handle:after,.noUi-handle:before{ background:none; }

.noUi-target.noUi-ltr {
  height: 8px;
}

.noUi-touch-area {
  cursor: pointer;
}

.left-side-sliders {
  padding-right: 70px;
}
.right-side-sliders {
  padding-left: 70px;
}

/* Tick labels below */
.slider-labels{ display:flex; justify-content:space-between; gap:8px; font-size:14px; color:#121212; }
.slider-labels span{ flex:1; text-align:center; }

/* Misc */
.info-i{
  display:inline-flex; align-items:center; justify-content:center;
  width:18px; height:18px; border-radius:50%;
  border:1px solid #c9c9c9; font-size:11px; line-height:1; color:#606060;
}
.btn-filters{
  background:#164d45; color:#fff; border-radius:10px; padding:.6rem 1.1rem;
}

.noUi-handle:after, .noUi-handle:before { left: 13px !important;}




/* --- stripes overlay (generic) --- */
.slider-split-lines{
  position:absolute;
  top:0; left:0; right:0;
  height:10px;                 /* same height as .noUi-target */
  display:flex;
  justify-content:space-between;
  pointer-events:none;
  z-index:10;                  /* above the dark bar, below handles */
}
.slider-split-lines div{ flex:1; position:relative; }
.slider-split-lines div:not(:last-child)::after{
  content:"";
  position:absolute;
  right:0; top: 1px;
  height: 17px;
  width: 3px;
  background:#fff;             /* white stripes */
  opacity:.9;
}


/* === Diamond Card (Figma) ========================================== */
.product-card.diamond-card{
  /* card */
  display:flex; flex-direction:column; align-items:flex-start;
  padding:16px 16px 24px; gap:16px;
  background:#fff; border:1px solid #F4F4F4; border-radius:10px;
  height:100%; isolation:isolate; position:relative;
}

/* like / wishlist */
.product-card.diamond-card .wishlist-btn{
  position:absolute; right:8px; top:8px;
  width:32px; height:32px; border-radius:9.27px;
  display:flex; align-items:center; justify-content:center;
  z-index:2;
}
.product-card.diamond-card .wishlist-btn .bi{
  font-size:20px; line-height:1; color:#16423C;
}

/* image area */
.product-card.diamond-card .product-img{
  width:100%;
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  /* keep a perfect square like the mock */
  aspect-ratio:1/1;
  background:#fff;
}
.product-card.diamond-card .product-img img{
  width:100%; height:100%; object-fit:contain; border-radius:10px;
}

/* text area */
.product-card.diamond-card .product-info{ width:100%; padding:0; gap:16px; display:flex; flex-direction:column; }

/* title (H5) */
.product-card.diamond-card .product-title{
  margin:0; padding:0;
  font-weight:500; font-size:16px; line-height:20px; letter-spacing:-.03em;
  color:#010403;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}

/* chips row */
.product-card.diamond-card .product-badges{
  display:flex; gap:8px; flex-wrap:wrap;
}
.product-card.diamond-card .product-badges .badge{
  background:#CDEEEA; color:#010403; border-radius:50px;
  font-weight:400; font-size:14px; line-height:20px;
  padding:3px 7px; border:none;
}
.product-card.diamond-card .badge.bg-teal,
.product-card.diamond-card .badge.bg-beige{ background:#CDEEEA; color:#010403; }

/* prices */
.product-card.diamond-card .product-pricing{
  display:flex; align-items:center; gap:12px;
}
.product-card.diamond-card .product-price{
  font-weight:500; font-size:20px; line-height:20px; letter-spacing:-.03em;
  color:#16423C;
}
.product-card.diamond-card .product-original-price{
  font-weight:500; font-size:14px; line-height:20px; letter-spacing:-.03em;
  color:#010403; text-decoration:line-through; margin-left:0;
}
/* hide the extra helper line on small cards */
.product-card.diamond-card .d-included{ display:none !important; }



/* Settings card */
.set-card{box-sizing:border-box;display:flex;flex-direction:column;align-items:flex-start;padding:16px 16px 24px;gap:16px;width:292px;min-height:490px;background:#fff;border:1px solid #F4F4F4;border-radius:10px;position:relative}
.set-img{display:flex;justify-content:center;align-items:center;width:260px;height:271px;border-radius:10px;overflow:hidden;position:relative}
.set-img .product-img{width:100%;height:100%;object-fit:contain;transition:opacity .25s ease}
.set-like{position:absolute;right:0;top:0;width:32px;height:32px;border:0;background:#fff;border-radius:10px;display:grid;place-items:center;box-shadow:0 1px 2px rgba(0,0,0,.06)}
.set-body{display:flex;flex-direction:column;gap:16px;width:100%}

/* swatches */
.set-swatches{display:flex;gap:8px;height:30px}
.set-swatch{width:24px;height:24px;border:1px solid #E8E8E8;border-radius:50%;box-sizing:border-box;background:linear-gradient(136deg,#F4F4F4 18%,#D8D8D8 83%)}
.set-swatch.gold{background:linear-gradient(136deg,#F9E79F 18%,#F1C40F 83%)}
.set-swatch.rose{background:linear-gradient(136deg,#F8D7D7 18%,#C97E7E 83%)}
.set-swatch.steel{background:linear-gradient(136deg,#EEE 18%,#BCBCBC 83%)}
.set-swatch.platinum{background:linear-gradient(135deg,#E5E4E2 44%,#F5C518 83%)}
.set-swatch.whiterose{background:linear-gradient(135deg,#E5E4E2 44%,#E6A1A1 70%)}
.set-swatch.two{background:linear-gradient(135deg,#E5E4E2 44%,#F1C40F 83%)}

/* title */
.set-title{font:500 16px/20px Metropolis,system-ui,sans-serif;letter-spacing:-.03em;margin:0}
.set-title a{color:#010403;text-decoration:none}

/* chips */
.set-chips{display:flex;gap:8px;flex-wrap:wrap}
.set-chips .chip{background:#CDEEEA;border-radius:50px;padding:3px 7px;font:400 14px/20px Metropolis,system-ui,sans-serif;letter-spacing:-.03em;color:#010403}

/* price row */
.set-price{display:flex;align-items:center;gap:8px}
.set-price strong{color:#16423C;font:500 16px/20px Metropolis,system-ui,sans-serif;letter-spacing:-.03em}
.set-price .set-price-old{color:#010403;text-decoration:line-through;font:500 14px/20px Metropolis,system-ui,sans-serif}
.set-price .set-price-note{font:400 14px/20px Metropolis,system-ui,sans-serif;color:#010403}


/* Fancy Colored */
.byo-fancycolored-filters {
  margin-bottom: 50px;
}
.fancycolor-filter-wrap {
  padding: 8px 0 6px;
}
.fancycolor-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: auto;
  height: auto;
  border-radius: 8px;
  padding: 6px 10px;
  border: 1px solid #fff;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.fancycolor-btn:hover {
  border-color: #1E6B61;
  box-shadow: 0 0 0 1px rgba(30,107,97,.2);
}

.fancycolor-btn:focus {
  outline: 0;
  border: 1px solid #16423C;
  background-color: #E4F6F4;
}

.fancycolor-btn .fancycolor-ic {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.fancycolor-btn .fancycolor-title {
  font-family: 'Metropolis', sans-serif;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #010403;
}

.fancycolor-list > li {
  list-style: none;
}

.fancycolor-list{
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  padding-bottom: 6px;
}

.sfancycolor-list > li{
  flex: 0 0 auto;
}

.fancycolor-list::-webkit-scrollbar{
  height: 4px;
  cursor: pointer !important;
}
.fancycolor-list::-webkit-scrollbar-thumb{
  background: #16423C;
}
.fancycolor-list::-webkit-scrollbar-track{
  background: #E4E4E4;
  height: 2px;
}

.price-inputs input {
  width: 140px;
  background: url(../../img/filters/dollar-sign.svg) no-repeat scroll 7px 11px transparent;
  padding: 8px 8px 8px 22px;
}