
#dq-root,
#dq-root * {
  box-sizing: border-box;
}

#dq-root {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #f7f5f2;
  color: #1a1a1a;
  line-height: 1.6;
  isolation: isolate;
}

#dq-root img {
  max-width: 100%;
}

#dq-root .dq-wrap {
  position: relative !important;
  isolation: isolate;
}

#dq-root .dq-track {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: 100% !important;
  z-index: 1 !important;
}

/* ===== High-priority override: prevent old fixed positioning from leaking ===== */
#dq-root .dq-track {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: 100% !important;
  z-index: 1 !important;
  margin-bottom: 48px !important;
}
#dq-root #dq-root{
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #f7f5f2;
  color: #1a1a1a;
  line-height: 1.6;
}#dq-root .dq-wrap{
  max-width: 960px;
  margin:0 auto;
  padding: 32px 32px 48px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: transparent;
}#dq-root .dq-track{
  width: 100%;
  height: 5px;
  background: #e8e4e0;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  margin-bottom: 48px;
}#dq-root .dq-track-bar{
  height: 100%;
  background: #CF3665 !important;
  border-radius: 3px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}#dq-root .dq-top{
  text-align: center;
  margin-bottom: 48px;
}#dq-root .dq-top h1{
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}#dq-root .dq-top p{
  font-size: 16px;
  color: #888;
}#dq-root .dq-progress{
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}#dq-root .dq-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e8e8e8;
  transition: all 0.4s ease;
}#dq-root .dq-dot.active{
  background: #CF3665;
  transform: scale(1.2);
}#dq-root .dq-dot.completed{
  background: #1a1a1a;
}#dq-root .dq-card{
  display: none;
  animation: fadeIn 0.5s ease;
  padding-top: 8px;
}#dq-root .dq-card.active{
  display: block;
}@keyframes fadeIn{
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}#dq-root .dq-question{
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
  text-align: left;
  letter-spacing: -0.3px;
}#dq-root .dq-sub{
  font-size: 20px;
  color: #777;
  text-align: left;
  margin-bottom: 40px;
}#dq-root .dq-pills{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  margin-bottom: 28px;
}#dq-root .dq-pill{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border: 1.5px solid #ddd;
  border-radius: 100px;
  background: #fff;
  color: #444;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}#dq-root .dq-pill:hover{
  border-color: #CF3665;
  color: #CF3665;
  background: #fff5f8;
}#dq-root .dq-pill.sel{
  border-color: #CF3665;
  background: #CF3665;
  color: #fff;
  box-shadow: 0 2px 12px rgba(207, 54, 101, 0.25);
}#dq-root .dq-pill .pill-check{
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}#dq-root .dq-pill.sel .pill-check{
  background: #fff;
  border-color: #fff;
}#dq-root .dq-pill.sel .pill-check::after{
  content: '';
  width: 8px;
  height: 8px;
  background: #CF3665;
  border-radius: 50%;
}#dq-root .dq-pill .pill-check-box{
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}#dq-root .dq-pill.sel .pill-check-box{
  background: #fff;
  border-color: #fff;
}#dq-root .dq-pill.sel .pill-check-box::after{
  content: '\2713';
  color: #CF3665;
  font-size: 11px;
  font-weight: bold;
}#dq-root .dq-detail{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  opacity: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
}#dq-root .dq-detail.show{
  max-height: 200px;
  opacity: 1;
  margin-top: 8px;
  margin-bottom: 20px;
}#dq-root .dq-detail-inner{
  background: #fff5f8;
  border: 1px solid #ffd0e0;
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}#dq-root .dq-detail-inner strong{
  color: #CF3665;
  font-weight: 600;
}#dq-root .dq-nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  gap: 16px;
  position: relative;
}#dq-root .dq-nav .dq-help-link{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
}#dq-root .dq-btn{
  padding: 18px 44px;
  border-radius: 100px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}#dq-root .dq-btn-p{
  background: #CF3665;
  color: #fff;
  min-width: 160px;
}#dq-root .dq-btn-p:hover:not(:disabled){
  background: #b82e58;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(207, 54, 101, 0.3);
}#dq-root .dq-btn-p:disabled{
  background: #f0d0da;
  color: #bbb;
  cursor: not-allowed;
}#dq-root .dq-btn-s{
  background: transparent;
  color: #888;
  border: 1.5px solid #ddd;
  min-width: 120px;
}#dq-root .dq-btn-s:hover{
  border-color: #CF3665;
  color: #CF3665;
}#dq-root .dq-hint{
  text-align: left;
  font-size: 16px;
  color: #CF3665;
  margin-top: -4px;
  margin-bottom: 20px;
  font-weight: 500;
}#dq-root .dq-height-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}#dq-root .dq-height-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}#dq-root .dq-height-card:hover 
.dq-height-card:hover .dq-height-img-wrap{
  border-color: #CF3665;
  box-shadow: 0 4px 16px rgba(207, 54, 101, 0.2);
}#dq-root .dq-height-card:hover .dq-height-label{
  color: #CF3665;
}#dq-root .dq-height-card.sel .dq-height-img-wrap{
  border-color: #CF3665;
  box-shadow: 0 0 0 3px rgba(207, 54, 101, 0.25);
}#dq-root .dq-height-card.sel .dq-height-label{
  color: #CF3665;
  font-weight: 600;
}#dq-root .dq-height-img-wrap{
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 8px;
  overflow: hidden;
  border: 2.5px solid #e8e4e0;
  transition: all 0.3s ease;
  position: relative;
  background: #f0eeeb;
}#dq-root .dq-height-img-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}#dq-root .dq-height-label{
  margin-top: 14px;
  font-size: 15px;
  font-weight: 500;
  color: #444;
  text-align: center;
  line-height: 1.4;
  transition: color 0.25s ease;
}#dq-root .dq-height-desc{
  margin-top: 4px;
  font-size: 13px;
  color: #999;
  text-align: center;
  line-height: 1.4;
}@media (max-width: 768px){#dq-root .dq-height-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }#dq-root .dq-height-label{
    font-size: 14px;
  }#dq-root .dq-height-desc{
    font-size: 12px;
  }
}@media (max-width: 480px){#dq-root .dq-height-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}#dq-root .dq-res{
  display: none;
}#dq-root .dq-res.active{
  display: block;
  animation: fadeIn 0.6s ease;
}#dq-root .dq-res-h{
  text-align: left;
  margin-bottom: 30px;
}#dq-root .dq-res-h h2{
  font-size: 28px;
  font-weight: 700;
}#dq-root .dq-res-h p{
  color: #888;
  margin-top: 6px;
  font-size: 17px;
}#dq-root .dq-res-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}#dq-root .dq-res-tag{
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 16px;
  background: #fff0f3;
  color: #CF3665;
  border: 1px solid #ffd0e0;
  font-weight: 500;
}#dq-root .dq-brand{
  margin-bottom: 40px;
}#dq-root .dq-brand-bar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}#dq-root .dq-brand-name{
  font-size: 20px;
  font-weight: 700;
}#dq-root .dq-brand-name a{
  color: #1a1a1a;
  text-decoration: none;
}#dq-root .dq-brand-name a:hover{ color: #CF3665; }#dq-root .dq-match{
  background: #CF3665;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}#dq-root .dq-view{
  color: #CF3665;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}#dq-root .dq-traits{
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}#dq-root .dq-tag{
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 16px;
  background: #f5f5f5;
  color: #555;
  border: 1px solid #eee;
}#dq-root .dq-tag.hl{
  background: #fff0f3;
  color: #CF3665;
  border-color: #CF3665;
  font-weight: 600;
}#dq-root .dq-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}@media(max-width: 640px){#dq-root .dq-grid{ grid-template-columns: repeat(2, 1fr); }#dq-root .dq-wrap{ padding: 32px 18px 48px; }#dq-root .dq-question{ font-size: 26px; }#dq-root .dq-sub{ font-size: 18px; }
}@media(max-width: 400px){#dq-root .dq-grid{ grid-template-columns: 1fr; }#dq-root .dq-pill{ padding: 12px 18px; font-size: 15px; }
}#dq-root .dq-pcard{
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
  border: 1px solid #f0f0f0;
}#dq-root .dq-pcard:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}#dq-root .dq-pimg{
  position: relative;
  padding-top: 150%;
  overflow: hidden;
  background: #f8f8f8;
}#dq-root .dq-pimg img{
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}#dq-root .dq-mat{
  position: absolute;
  bottom: 8px; left: 8px;
  background: #CF3665;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
}#dq-root .dq-pinfo{ padding: 12px; }#dq-root .dq-pv{ font-size: 12px; color: #888; margin-bottom: 4px; }#dq-root .dq-pt{
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 42px;
}#dq-root .dq-prow{ display: flex; align-items: baseline; gap: 8px; }#dq-root .dq-pc{ font-size: 17px; font-weight: 700; color: #CF3665; }#dq-root .dq-pp{ font-size: 13px; color: #999; text-decoration: line-through; }#dq-root .dq-restart{ text-align: center; margin-top: 36px; }#dq-root .dq-help-link{
  margin-top: 28px;
  text-align: center;
}#dq-root .dq-help-link a{
  color: #333;
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}#dq-root .dq-help-link a:hover{
  color: #CF3665;
}#dq-root .bld-hero-banner{
  position: relative;
  width: 100%;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}#dq-root .bld-hero-banner__img{
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}#dq-root .bld-hero-banner__img--mobile{
  display: none;
}#dq-root .bld-hero-banner__overlay{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0) 100%);
  z-index: 1;
}#dq-root .bld-hero-banner__content{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 110px 60px 90px 160px;
  max-width: 900px;
}#dq-root .bld-hero-banner__subtitle{
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}#dq-root .bld-hero-banner__title{
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 22px 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  white-space: nowrap;
}#dq-root .bld-hero-banner__desc{
  font-size: 19px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 48px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}#dq-root .bld-hero-banner__buttons{
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 340px;
}#dq-root .bld-hero-banner__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 28px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}#dq-root .bld-hero-banner__btn--primary{
  background: #CF3665;
  color: #ffffff;
}#dq-root .bld-hero-banner__btn--primary:hover{
  background: #b02d55;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(207, 54, 101, 0.4);
}@media (max-width: 768px){#dq-root .bld-hero-banner__img--desktop{
    display: none;
  }#dq-root .bld-hero-banner__img--mobile{
    display: block;
  }#dq-root .bld-hero-banner__overlay{
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.7) 100%);
  }#dq-root .bld-hero-banner__content{
    top: auto;
    bottom: 0;
    padding: 0 24px 60px 24px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }#dq-root .bld-hero-banner__subtitle{
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }#dq-root .bld-hero-banner__title{
    font-size: 28px;
    margin-bottom: 12px;
    white-space: normal;
  }#dq-root .bld-hero-banner__desc{
    font-size: 14px;
    margin-bottom: 24px;
  }#dq-root .bld-hero-banner__buttons{
    max-width: 100%;
  }#dq-root .bld-hero-banner__btn{
    padding: 14px 20px;
    font-size: 14px;
  }
}#dq-root .dq-body-axis{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin: 36px 0 28px;
  padding: 0 12px;
  gap: 16px;
}#dq-root .dq-body-line{
  display: none;
}#dq-root .dq-axis-item{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  max-width: 160px;
}#dq-root .dq-axis-img{
  width: 100%;
  aspect-ratio: 2 / 3;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  border: 2.5px solid transparent;
  transition: all 0.3s ease;
  background: #f0eeeb;
}#dq-root .dq-axis-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}#dq-root .dq-axis-dot{
  display: none;
}#dq-root .dq-axis-label{
  font-size: 15px;
  font-weight: 500;
  color: #555;
  text-align: center;
  line-height: 1.3;
  transition: all 0.3s ease;
}#dq-root .dq-axis-item:hover .dq-axis-img{
  border-color: #CF3665;
  box-shadow: 0 4px 14px rgba(207, 54, 101, 0.18);
}#dq-root .dq-axis-item:hover .dq-axis-label{
  color: #CF3665;
}#dq-root .dq-axis-item.sel .dq-axis-img{
  border-color: #CF3665;
  box-shadow: 0 4px 14px rgba(207, 54, 101, 0.25);
}#dq-root .dq-axis-item.sel .dq-axis-label{
  color: #CF3665;
  font-weight: 600;
}@media (max-width: 768px){#dq-root .dq-body-axis{ gap: 10px; padding: 0 8px; }#dq-root .dq-axis-item{ max-width: 120px; }#dq-root .dq-axis-label{ font-size: 13px; }
}@media (max-width: 480px){#dq-root .dq-body-axis{ gap: 8px; padding: 0 4px; }#dq-root .dq-axis-item{ max-width: 100px; }#dq-root .dq-axis-label{ font-size: 12px; }
}#dq-root .dq-cup-axis{
  gap: 8px;
  padding: 0 4px;
}#dq-root .dq-cup-axis .dq-axis-item{
  max-width: 70px;
}#dq-root .dq-cup-axis .dq-body-line{
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 3px;
  background: #e8e4e0;
  border-radius: 2px;
  z-index: 0;
}#dq-root .dq-cup-axis .dq-axis-dot{
  display: flex;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid #ccc;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}#dq-root .dq-cup-axis .dq-axis-item:hover .dq-axis-dot{
  border-color: #CF3665;
}#dq-root .dq-cup-axis .dq-axis-item.sel .dq-axis-dot{
  background: #CF3665;
  border-color: #CF3665;
  box-shadow: 0 0 0 4px rgba(207, 54, 101, 0.2);
}#dq-root .dq-cup-axis .dq-axis-item.sel .dq-axis-label{
  color: #CF3665;
  font-weight: 600;
}@media (max-width: 768px){#dq-root .dq-cup-axis .dq-axis-item{ max-width: 56px; }#dq-root .dq-cup-axis .dq-axis-dot{ display: flex; width: 18px; height: 18px; }#dq-root .dq-cup-axis .dq-body-line{ top: 9px; display: block; }
}@media (max-width: 480px){#dq-root .dq-cup-axis .dq-axis-item{ max-width: 48px; }#dq-root .dq-cup-axis .dq-axis-dot{ display: flex; width: 16px; height: 16px; }#dq-root .dq-cup-axis .dq-body-line{ top: 8px; display: block; }#dq-root .dq-cup-axis .dq-axis-label{ font-size: 12px; }
}#dq-root .dq-weight-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}#dq-root .dq-weight-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
  padding: 20px 16px;
  border: 2px solid #e8e4e0;
  border-radius: 12px;
  background: #fff;
}#dq-root .dq-weight-card:hover{
  border-color: #CF3665;
  background: #fff5f8;
}#dq-root .dq-weight-card.sel{
  border-color: #CF3665;
  background: #fff0f3;
  box-shadow: 0 0 0 3px rgba(207, 54, 101, 0.15);
}#dq-root .dq-weight-value{
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}#dq-root .dq-weight-card.sel .dq-weight-value{
  color: #CF3665;
}#dq-root .dq-weight-label{
  font-size: 14px;
  color: #888;
  text-align: center;
  line-height: 1.4;
  min-height: 20px;
}#dq-root .dq-weight-card.sel .dq-weight-label{
  color: #CF3665;
}#dq-root .dq-weight-hint{
  background: #fff5f8;
  border: 1px solid #ffd0e0;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 28px;
}#dq-root .dq-weight-hint strong{
  color: #CF3665;
  font-weight: 600;
}@media (max-width: 640px){#dq-root .dq-weight-grid{ grid-template-columns: repeat(2, 1fr); }
}