
:root{
  --dfv-pink:#b90067;
  --dfv-text:#191919;
  --dfv-muted:#60606b;
  --dfv-border:#e6e6ea;
  --dfv-soft:#f7f7fb;
  --dfv-shadow:0 10px 30px rgba(0,0,0,.06);
}
.dfv-app{
  font-family: inherit;
  color: var(--dfv-text);
}
.dfv-tabs{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
  flex-wrap:wrap;
  margin-bottom:18px;
}
.dfv-tab{
  border:0;
  padding:14px 22px;
  border-radius:12px;
  background:#fff;
  color:#222;
  font-size:18px;
  font-weight:800;
  box-shadow:var(--dfv-shadow);
  cursor:pointer;
}
.dfv-tab.is-active{
  background:var(--dfv-pink);
  color:#fff;
}
.dfv-pill-group{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.dfv-pill{
  border:0;
  background:#fff;
  color:#222;
  padding:12px 16px;
  border-radius:24px;
  box-shadow:var(--dfv-shadow);
  cursor:pointer;
  min-width:150px;
  font-weight:700;
  line-height:1.15;
  text-align:center;
}
.dfv-pill small{
  display:block;
  font-size:12px;
  opacity:.75;
  margin-top:4px;
}
.dfv-pill.is-active{
  background:var(--dfv-pink);
  color:#fff;
}
.dfv-card{
  background:#fff;
  border-radius:20px;
  box-shadow:var(--dfv-shadow);
  padding:18px;
}
.dfv-shape-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:space-between;
  align-items:flex-start;
  padding:8px 6px 16px;
}
.dfv-shape{
  width:78px;
  border:0;
  background:transparent;
  cursor:pointer;
  text-align:center;
  color:#202026;
  padding:4px 0 0;
}
.dfv-shape-ico{
  display:block;
  width:46px;
  height:46px;
  margin:0 auto 6px;
  border:2px solid #8c8c96;
  border-radius:50%;
  position:relative;
  box-sizing:border-box;
}
.dfv-shape-ico::after{
  content:'';
  position:absolute;
  inset:8px;
  border:1px solid rgba(140,140,150,.65);
  border-radius:inherit;
}
.dfv-shape-label{
  display:block;
  font-size:12px;
  font-weight:700;
  color:#202026;
}
.dfv-shape.is-active .dfv-shape-ico{
  border-color:var(--dfv-pink);
}
.dfv-shape.is-active .dfv-shape-label{
  color:var(--dfv-pink);
}
.shape-princess,.shape-emerald,.shape-asscher{
  border-radius:7px;
}
.shape-cushion{
  border-radius:16px;
}
.shape-oval{
  border-radius:50% / 42%;
}
.shape-pear{
  border-radius:50% 50% 50% 0;
  transform:rotate(45deg);
}
.shape-heart{
  border-radius:50%;
  transform:rotate(-45deg);
}
.shape-marquise{
  border-radius:50% / 20%;
  transform:scaleX(.58);
}
.shape-radiant{
  border-radius:8px;
}
.dfv-grid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:8px;
}
.dfv-grid3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.dfv-subcard{
  background:var(--dfv-soft);
  border:1px solid #eee;
  border-radius:14px;
  padding:16px;
}
.dfv-headline{
  text-align:center;
  font-weight:800;
  margin-bottom:10px;
  color:#111;
}
.dfv-dots{
  justify-content:space-between;
  align-items:flex-start;
}
.dfv-dot{
  width:54px;
  border:0;
  background:transparent;
  cursor:pointer;
  text-align:center;
  color:#202026;
  padding:4px 0 0;
}
.dfv-dot-ico{
  width:30px;
  height:30px;
  border:2px solid #8c8c96;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 6px;
  font-size:13px;
  font-weight:800;
  color:#2a2a2f;
  background:#fff;
}
.dfv-dot.kind-fancy .dfv-dot-ico{
  background:radial-gradient(circle at 30% 30%, #ff9ad5, #7657ff 55%, #0fd2c8);
  color:#fff;
  border-color:transparent;
}
.dfv-dot.is-active .dfv-dot-ico{
  border-color:var(--dfv-pink);
  color:var(--dfv-pink);
}
.dfv-dot-label{
  display:block;
  font-size:12px;
  font-weight:700;
}
.dfv-segmented{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  background:#fff;
  border:1px solid var(--dfv-border);
  border-radius:8px;
  overflow:hidden;
}
.dfv-seg{
  border:0;
  background:#fff;
  color:#222;
  padding:12px 10px;
  cursor:pointer;
  border-right:1px solid var(--dfv-border);
  font-size:13px;
  font-weight:800;
}
.dfv-seg:last-child{
  border-right:0;
}
.dfv-seg.is-active{
  background:var(--dfv-pink);
  color:#fff;
}
.dfv-range{
  margin-top:8px;
}
.dfv-range-head{
  text-align:center;
  font-weight:800;
  margin-bottom:10px;
}
.dfv-range-track-wrap{
  position:relative;
  height:34px;
}
.dfv-range-track-wrap input[type="range"]{
  position:absolute;
  left:0;
  top:8px;
  width:100%;
  pointer-events:none;
  -webkit-appearance:none;
  appearance:none;
  background:transparent;
  margin:0;
  height:18px;
}
.dfv-range-track-wrap input[type="range"]::-webkit-slider-thumb{
  pointer-events:auto;
  -webkit-appearance:none;
  width:20px;
  height:20px;
  border-radius:50%;
  background:#fff;
  border:1px solid #ddd;
  box-shadow:0 3px 8px rgba(0,0,0,.12);
}
.dfv-range-track-wrap input[type="range"]::-moz-range-thumb{
  pointer-events:auto;
  width:20px;
  height:20px;
  border-radius:50%;
  background:#fff;
  border:1px solid #ddd;
  box-shadow:0 3px 8px rgba(0,0,0,.12);
}
.dfv-range-bar{
  position:relative;
  height:4px;
  border-radius:4px;
  background:#b6b6be;
  margin:4px 0 10px;
}
.dfv-range-fill{
  position:absolute;
  top:0;
  height:4px;
  border-radius:4px;
  background:var(--dfv-pink);
  left:0;
  right:0;
}
.dfv-range-labels{
  display:flex;
  justify-content:space-between;
  font-size:12px;
  color:#2a2a2f;
}
.dfv-price-row{
  margin-top:16px;
}
.dfv-advanced-wrap{
  text-align:center;
  margin-top:16px;
}
.dfv-advanced-btn{
  border:0;
  background:var(--dfv-pink);
  color:#fff;
  padding:10px 18px;
  border-radius:6px;
  cursor:pointer;
  font-weight:800;
  box-shadow:0 8px 20px rgba(185,0,103,.22);
}
.dfv-advanced-panel{
  display:none;
  margin-top:16px;
}
.dfv-cta-row{
  text-align:center;
  margin-top:18px;
}
.dfv-cta{
  border:0;
  background:var(--dfv-pink);
  color:#fff;
  font-weight:800;
  padding:11px 18px;
  border-radius:7px;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(185,0,103,.22);
}
.dfv-summary{
  margin:18px 0 12px;
  background:#fff;
  border:1px solid var(--dfv-border);
  border-radius:16px;
  padding:14px 16px;
  box-shadow:var(--dfv-shadow);
}
.dfv-summary-title{
  font-size:14px;
  font-weight:800;
  margin-bottom:10px;
  color:#111;
}
.dfv-summary-chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.dfv-summary-empty{
  color:var(--dfv-muted);
  font-size:13px;
}
.dfv-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid #ddd;
  background:#fff;
  color:#222;
  padding:8px 10px;
  border-radius:999px;
  cursor:pointer;
  font-size:13px;
  font-weight:700;
}
.dfv-chip strong{
  color:#111;
}
.dfv-chip em{
  font-style:normal;
  color:var(--dfv-pink);
  font-size:18px;
  line-height:1;
}
.dfv-results-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  margin:18px 0 12px;
}
.dfv-view-switch{
  display:flex;
  gap:8px;
}
.dfv-view{
  width:38px;
  height:38px;
  border:1px solid #ddd;
  background:#fff;
  border-radius:6px;
  cursor:pointer;
  font-size:18px;
  color:#222;
}
.dfv-view.is-active{
  background:var(--dfv-pink);
  color:#fff;
  border-color:var(--dfv-pink);
}
.dfv-table{
  width:100%;
  border-collapse:collapse;
  min-width:1180px;
  background:#fff;
}
.dfv-table th,.dfv-table td{
  border:1px solid #e6e6e6;
  padding:12px 10px;
  font-size:14px;
  text-align:left;
  vertical-align:middle;
  color:#222;
}
.dfv-table thead th{
  background:#fafafa;
  font-weight:800;
}
.dfv-price-col{
  color:var(--dfv-pink);
  font-weight:800;
  white-space:nowrap;
}
.dfv-thumb,.dfv-card-thumb{
  display:block;
  width:140px;
  height:140px;
  object-fit:cover;
  border-radius:10px;
  background:#f0f0f0;
}
.dfv-empty{
  padding:20px;
  background:#fafafa;
  border:1px dashed #ddd;
  border-radius:12px;
}
.dfv-card-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.dfv-card-product{
  border:1px solid #ededed;
  border-radius:16px;
  padding:14px;
  background:#fff;
}
.dfv-card-link{
  color:inherit;
  text-decoration:none;
}
.dfv-card-product h3{
  margin:10px 0 8px;
  font-size:16px;
  color:#111;
}
.dfv-card-meta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6px 10px;
  font-size:13px;
  color:#444;
}
.dfv-card-price{
  margin-top:12px;
  color:var(--dfv-pink);
  font-weight:800;
  font-size:18px;
}
.dfv-toggle-row{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:center;
}
.dfv-toggle{
  border:1px solid var(--dfv-border);
  background:#fff;
  color:#222;
  padding:10px 14px;
  border-radius:8px;
  cursor:pointer;
  font-weight:700;
}
.dfv-toggle.is-active{
  background:var(--dfv-pink);
  color:#fff;
  border-color:var(--dfv-pink);
}
.dfv-text{
  width:100%;
  border:1px solid var(--dfv-border);
  border-radius:10px;
  padding:12px 12px;
  color:#111;
}
@media (max-width: 1100px){
  .dfv-grid2,.dfv-grid3{
    grid-template-columns:1fr;
  }
  .dfv-card-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width: 720px){
  .dfv-tabs{
    flex-direction:column;
    align-items:stretch;
  }
  .dfv-pill-group{
    width:100%;
  }
  .dfv-pill{
    min-width:0;
    flex:1 1 0;
  }
  .dfv-card-grid{
    grid-template-columns:1fr;
  }
  .dfv-shape-row{
    justify-content:center;
  }
  .dfv-shape{
    width:72px;
  }
  .dfv-segmented{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
