@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Display:ital,wght@0,300;0,400;1,300&family=DM+Sans:wght@400;500;600;700&display=swap');

#wdc-guia {
  --pink: #f7a0c1;
  --pink-light: #fff0f6;
  --border: rgba(0,0,0,0.08);
  --black: #111;
}
#wdc-guia * { margin: 0; padding: 0; box-sizing: border-box; }
#wdc-guia {
  font-family: 'DM Sans', sans-serif;
  background: white;
  color: var(--black);
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

/* ── PAGE HEADER ── */
#wdc-guia .page-header {
  padding: 32px 0 20px;
  margin-bottom: 16px;
}
#wdc-guia .page-header h1 {
  font-family: 'Noto Serif Display', serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 300;
  font-stretch: condensed;
  line-height: 1.1;
  margin-bottom: 16px;
}
#wdc-guia .page-header p {
  font-size: 14px;
  color: #666;
  max-width: 560px;
  line-height: 1.7;
}

/* ── DISCLAIMER BANNER ── */
#wdc-guia .disclaimer {
  background: var(--pink-light);
  border-left: 3px solid var(--pink);
  padding: 14px 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  border-radius: 0 8px 8px 0;
  margin-bottom: 56px;
}
#wdc-guia .disclaimer strong { color: var(--black); }

/* ── SECTION TITLE ── */
#wdc-guia .section-title {
  font-family: 'Noto Serif Display', serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 300;
  font-stretch: condensed;
  margin-bottom: 8px;
}
#wdc-guia .section-subtitle {
  font-size: 11px;
  color: #aaa;
  font-style: italic;
  margin-bottom: 24px;
}
#wdc-guia .section-block { margin-bottom: 64px; }

/* ── TABS ── */
#wdc-guia .tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
#wdc-guia .tab {
  padding: 7px 16px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  color: #888;
  background: white;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
#wdc-guia .tab.active { border-color: var(--pink); background: var(--pink-light); color: #000; }
#wdc-guia .panel { display: none; }
#wdc-guia .panel.active { display: block; }

/* ── SIZE TABLE ── */
#wdc-guia .size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 16px;
}
#wdc-guia .size-table th {
  background: var(--pink-light);
  padding: 11px 14px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  border-bottom: 2px solid var(--pink);
  letter-spacing: 0.5px;
}
#wdc-guia .size-table th:first-child { text-align: left; }
#wdc-guia .size-table td {
  padding: 11px 14px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: #444;
}
#wdc-guia .size-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #000;
  font-size: 11px;
}
#wdc-guia .size-table tr:last-child td { border-bottom: none; }

/* MOBILE TABLE */
@media (max-width: 599px) {
  #wdc-guia .size-table { display: none; }
  #wdc-guia .size-table-mobile { display: flex; flex-direction: column; gap: 10px; }
}
@media (min-width: 600px) {
  #wdc-guia .size-table-mobile { display: none; }
}
#wdc-guia .size-card { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
#wdc-guia .size-card-header { background: var(--pink-light); padding: 10px 14px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(247,160,193,0.3); }
#wdc-guia .size-badge { background: var(--pink); color: white; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 10px; }
#wdc-guia .size-card-body { padding: 10px 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 12px; }
#wdc-guia .size-card-label { font-size: 10px; color: #888; }
#wdc-guia .size-card-value { font-size: 12px; font-weight: 700; }

/* ── NOTE ── */
#wdc-guia .note {
  background: var(--pink-light);
  border-left: 3px solid var(--pink);
  padding: 10px 16px;
  font-size: 12px;
  color: #555;
  line-height: 1.6;
  margin-top: 12px;
  border-radius: 0 6px 6px 0;
}
#wdc-guia .note + .note { margin-top: 8px; }
#wdc-guia .note strong { color: #000; }

/* ── CÓMO MEDIRSE ── */
#wdc-guia .how-block { margin-top: 32px; }
#wdc-guia .how-title {
  font-family: 'Noto Serif Display', serif;
  font-size: 22px;
  font-weight: 300;
  font-stretch: condensed;
  font-style: italic;
  margin-bottom: 16px;
}
#wdc-guia .how-inner { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
#wdc-guia .how-silhouette { width: 100%; max-width: 180px; border-radius: 8px; }
#wdc-guia .how-grid { display: flex; flex-direction: column; gap: 14px; flex: 1; padding-top: 4px; }
#wdc-guia .how-item { display: flex; gap: 12px; align-items: flex-start; }
#wdc-guia .how-letter { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: white; flex-shrink: 0; }
#wdc-guia .la { background: var(--pink); }
#wdc-guia .lb { background: #87CEEB; }
#wdc-guia .lc { background: #98d89e; }
#wdc-guia .how-label { font-size: 11px; font-weight: 700; color: var(--pink); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
#wdc-guia .how-desc { font-size: 12px; color: #666; line-height: 1.5; }

@media (min-width: 600px) {
  #wdc-guia .how-inner { flex-direction: row; align-items: flex-start; gap: 32px; }
  #wdc-guia .how-silhouette { width: 160px; flex-shrink: 0; }
}

/* ── DIVIDER ── */
#wdc-guia .divider { height: 1px; background: var(--border); margin: 48px 0; }

/* ── MODEL REFERENCE ── */
#wdc-guia .models-intro {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 560px;
}
#wdc-guia .models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
#wdc-guia .model-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
#wdc-guia .model-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #aaa;
  font-style: italic;
}
#wdc-guia .model-card-body { padding: 16px; }
#wdc-guia .model-name {
  font-family: 'Noto Serif Display', serif;
  font-size: 18px;
  font-weight: 300;
  font-stretch: condensed;
  margin-bottom: 4px;
}
#wdc-guia .model-size {
  display: inline-block;
  background: var(--pink);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 10px;
  margin-bottom: 12px;
}
#wdc-guia .model-stats { display: flex; flex-direction: column; gap: 5px; }
#wdc-guia .model-stat { display: flex; justify-content: space-between; align-items: center; font-size: 12px; border-bottom: 1px solid var(--border); padding-bottom: 5px; }
#wdc-guia .model-stat:last-child { border-bottom: none; padding-bottom: 0; }
#wdc-guia .model-stat-label { color: #888; }
#wdc-guia .model-stat-value { font-weight: 600; }

/* FILTER BUTTONS */
#wdc-guia .size-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
#wdc-guia .size-filter-btn { padding: 9px 20px; border: 1.5px solid var(--border); border-radius: 20px; font-size: 12px; font-weight: 600; cursor: pointer; color: #888; background: white; font-family: 'DM Sans', sans-serif; transition: all 0.2s; }
#wdc-guia .size-filter-btn.active { border-color: var(--pink); background: var(--pink-light); color: #000; }
#wdc-guia .size-filter-btn:hover { border-color: var(--pink); color: #000; }

/* CAROUSEL */
#wdc-guia .carousel { position: relative; width: 100%; aspect-ratio: 3/4; background: #f5f5f5; overflow: hidden; }
#wdc-guia .carousel-track { display: flex; height: 100%; transition: transform 0.35s ease; }
#wdc-guia .carousel-slide { min-width: 100%; height: 100%; position: relative; flex-shrink: 0; }
#wdc-guia .carousel-slide a { display: block; width: 100%; height: 100%; }
#wdc-guia .carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
#wdc-guia .placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; color: #bbb; font-size: 12px; font-style: italic; }
#wdc-guia .slide-label { position: absolute; bottom: 22px; z-index: 3; left: 12px; right: 12px; color: white; }
#wdc-guia .slide-product-name { display: block; font-size: 16px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
#wdc-guia .slide-cart-link { display: block; color: white; font-size: 16px; font-weight: 400; text-decoration: underline; text-transform: lowercase; pointer-events: auto; margin-top: 2px; }
#wdc-guia .slide-cart-link:hover { opacity: 0.8; }
#wdc-guia .carousel::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(transparent, rgba(0,0,0,0.5)); pointer-events: none; z-index: 2; }
#wdc-guia .carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: white; border: none; border-radius: 50%; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 14px; color: #333; box-shadow: 0 2px 8px rgba(0,0,0,0.15); z-index: 5; transition: background 0.2s; line-height: 1; }
#wdc-guia .carousel-btn:hover { background: var(--pink-light); }
#wdc-guia .carousel-btn.prev { left: 8px; }
#wdc-guia .carousel-btn.next { right: 8px; }
#wdc-guia .carousel-dots { position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); display: flex; gap: 4px; z-index: 5; }
#wdc-guia .dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.5); transition: background 0.2s; }
#wdc-guia .dot.active { background: white; }

/* ── WSP BANNER ── */
#wdc-guia .wsp-banner {
  background: var(--pink-light);
  border: 1.5px solid var(--pink);
  border-radius: 12px;
  padding: 28px 32px;
  text-align: center;
  margin-top: 64px;
}
#wdc-guia .wsp-banner p {
  font-size: 15px;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.6;
}
#wdc-guia .wsp-banner strong { color: #000; }
#wdc-guia .wsp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
}
