/* =========================================================
   DiMasi Vintage — tienda
   ========================================================= */

/* ---------- Barra superior ---------- */
.topbar { background: var(--sand); font-family: var(--sans); font-size: 12.5px; color: var(--ink-2); }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; min-height: 36px; gap: 16px; }
.topbar-msg { display: flex; align-items: center; gap: 10px; }
.topbar-msg .icon { width: 18px; height: 18px; }
.topbar-links { display: flex; align-items: center; gap: 14px; }
.topbar-links span { color: var(--line); }
.topbar-sale { background: var(--ink); color: #fff; padding: 2px 10px; border-radius: 99px; font-size: 11.5px; letter-spacing: .08em; }

/* ---------- Header ---------- */
.header { background: var(--surface); border-bottom: 1px solid var(--line-soft); position: sticky; top: 0; z-index: 40; }
.header .wrap { display: flex; align-items: center; gap: 32px; min-height: 86px; }

.nav { flex: 1; display: flex; justify-content: center; gap: 34px; font-size: 15.5px; }
.nav a { position: relative; padding: 6px 0; white-space: nowrap; }
.nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--ink); }

.search { position: relative; width: 240px; flex: none; }
.search .icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--ink-2); }
.search input {
  width: 100%; padding: 10px 12px 10px 38px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); font-family: var(--text); font-size: 13.5px; outline: none;
}
.search input:focus { border-color: var(--taupe); }
.header-icons { display: flex; align-items: center; gap: 18px; flex: none; }
.header-icons a, .header-icons button { position: relative; display: inline-flex; background: none; border: 0; padding: 4px; cursor: pointer; }
.header-icons .icon { width: 23px; height: 23px; }
.badge {
  position: absolute; top: -6px; right: -9px; min-width: 19px; height: 19px; padding: 0 5px;
  border-radius: 99px; background: var(--ink); color: #fff; font-family: var(--sans); font-size: 11px;
  display: flex; align-items: center; justify-content: center; border: 2px solid var(--surface);
}
.menu-toggle { display: none !important; }

/* menú de cuenta */
.account-menu { position: relative; }
.account-menu[open] > summary + .dropdown { display: block; }
.account-menu summary { list-style: none; cursor: pointer; display: inline-flex; padding: 4px; }
.account-menu summary::-webkit-details-marker { display: none; }
.dropdown {
  display: none; position: absolute; right: -8px; top: calc(100% + 12px); min-width: 220px; z-index: 50;
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); padding: 8px 0;
  font-family: var(--sans); font-size: 14px;
}
.dropdown .who { padding: 10px 18px 12px; border-bottom: 1px solid var(--line-soft); margin-bottom: 6px; }
.dropdown .who strong { display: block; font-weight: 500; }
.dropdown a, .dropdown button { display: block; width: 100%; text-align: left; padding: 9px 18px; background: none; border: 0; cursor: pointer; font-size: 14px; }
.dropdown a:hover, .dropdown button:hover { background: var(--bg); color: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; background: #d9cec2; overflow: hidden; }
.hero-img {
  position: absolute; inset: 0 0 0 auto; width: 64%; height: 100%; object-fit: cover; object-position: 30% 60%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 22%); mask-image: linear-gradient(to right, transparent 0, #000 22%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, #cfc3b6 0%, #ddd3c8 38%, rgba(221,211,200,0) 60%);
}
.hero .wrap { position: relative; min-height: 400px; display: flex; flex-direction: column; justify-content: center; padding-top: 48px; padding-bottom: 48px; }
.hero-copy { max-width: 470px; }
.hero h1 { font-size: clamp(40px, 5vw, 60px); line-height: 1.02; margin-bottom: 16px; }
.hero p { font-size: 18px; color: var(--ink-2); margin-bottom: 30px; }

/* ---------- Layout con sidebar ---------- */
.with-sidebar { display: grid; grid-template-columns: 200px 1fr; gap: 56px; padding-top: 44px; padding-bottom: 12px; }
.sidebar h4 { font-family: var(--sans); font-size: 12.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; margin: 0 0 14px; }
.cat-list { list-style: none; margin: 0 0 36px; padding: 0; font-size: 14.5px; }
.cat-list a { display: flex; justify-content: space-between; padding: 5px 16px; border-radius: var(--radius); }
.cat-list a.active { background: var(--sand); }
.cat-list .count { color: var(--muted); font-family: var(--sans); font-size: 12px; }
.filter { border-bottom: 1px solid var(--line); }
.filter summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; font-family: var(--sans); font-size: 14px;
}
.filter summary::-webkit-details-marker { display: none; }
.filter summary .icon { width: 15px; height: 15px; transition: transform .2s; }
.filter[open] summary .icon { transform: rotate(180deg); }
.filter-body { padding: 4px 0 16px; font-family: var(--sans); font-size: 14px; }
.filter-body .price-row { display: flex; gap: 8px; }
.filter-body .price-row input { width: 100%; padding: 8px 10px; border: 1px solid var(--line); background: var(--paper); font-size: 13.5px; }
.filter-body label { display: flex; align-items: center; gap: 9px; padding: 3px 0; cursor: pointer; }
.filter-body input[type=radio] { accent-color: var(--ink); }
.filter-actions { display: flex; gap: 10px; margin-top: 18px; align-items: center; }

/* ---------- Encabezado de sección ---------- */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 16px; }
.section-head h2 { font-size: 34px; margin: 0; }
.section-head p { margin: 2px 0 0; color: var(--ink-2); font-size: 14px; }
.section { padding: 44px 0 12px; }

/* ---------- Tarjeta de producto ---------- */
.grid-products { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 24px; }
.grid-products.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { position: relative; }
.card-media { position: relative; display: block; aspect-ratio: 597 / 471; background: var(--tile); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.card-media .ph { width: 100%; height: 100%; display: grid; place-items: center; color: var(--taupe); }
.fav-btn {
  position: absolute; top: 10px; right: 10px; z-index: 2; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(255,255,255,.75); border: 0; cursor: pointer; color: var(--ink);
  transition: background .2s;
}
.fav-btn:hover { background: #fff; }
.fav-btn .icon { width: 18px; height: 18px; }
.fav-btn.on .icon { fill: var(--ink); }
.tags { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 5px; z-index: 2; }
.tag { font-family: var(--sans); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; padding: 3px 8px; background: var(--paper); }
.tag-sale { background: var(--sale); color: #fff; }
.tag-dark { background: var(--ink); color: #fff; }
.card-body { padding-top: 13px; }
.card-title { font-size: 15.5px; margin: 0 0 2px; display: block; }
.price { font-family: var(--sans); font-size: 14.5px; font-weight: 500; display: flex; gap: 8px; align-items: baseline; flex-wrap: wrap; }
.price del { color: var(--muted); font-weight: 400; font-size: 13px; }
.price .now-sale { color: var(--sale); }
.swatches { display: flex; gap: 8px; margin-top: 10px; }
.swatch { width: 15px; height: 15px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.14); }

/* ---------- Promos ---------- */
.promos { display: grid; grid-template-columns: 1.43fr 1fr; gap: 14px; padding: 36px 0 56px; }
.promo { position: relative; min-height: 230px; overflow: hidden; display: flex; }
.promo-dark { background: #3b3029; color: #fff; }
.promo-dark img { position: absolute; inset: 0 auto 0 0; width: 48%; height: 100%; object-fit: cover; }
.promo-dark::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(59,48,41,0) 30%, #3b3029 50%); }
.promo-dark .promo-copy { position: relative; z-index: 1; margin-left: auto; width: 58%; text-align: center; padding: 34px 28px; align-self: center; }
.promo-dark .kicker { color: rgba(255,255,255,.85); }
.promo-dark h3 { font-size: 40px; margin-bottom: 6px; }
.promo-dark p { color: rgba(255,255,255,.82); font-size: 14.5px; margin-bottom: 20px; }
.promo-light { background: #ddd3c8; }
.promo-light img { width: 48%; object-fit: cover; }
.promo-light .promo-copy { flex: 1; padding: 34px 30px; align-self: center; }
.promo-light h3 { font-family: var(--sans); font-size: 15px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; line-height: 1.5; margin-bottom: 14px; }
.promo-light p { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin-bottom: 18px; }

/* ---------- Catálogo ---------- */
.catalog-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.catalog-head h1 { font-size: 40px; margin: 0; }
.catalog-head p { margin: 4px 0 0; color: var(--ink-2); font-size: 14px; }
.sort { display: flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 13px; color: var(--muted); }
.sort select { padding: 8px 12px; border: 1px solid var(--line); background: var(--paper); font-family: var(--sans); font-size: 13.5px; }
.active-filters { display: flex; gap: 8px; flex-wrap: wrap; margin: -8px 0 22px; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; background: var(--sand); border-radius: 99px; font-family: var(--sans); font-size: 12.5px; }
.chip .icon { width: 13px; height: 13px; }
.pagination { display: flex; justify-content: center; gap: 6px; margin: 44px 0 20px; font-family: var(--sans); font-size: 14px; }
.pagination a, .pagination span { min-width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); padding: 0 10px; }
.pagination .current { background: var(--ink); color: #fff; border-color: var(--ink); }
.empty { text-align: center; padding: 70px 20px; }
.empty h2 { font-size: 30px; }
.empty p { color: var(--muted); }
.filters-toggle { display: none; }

/* ---------- Producto ---------- */
.breadcrumbs { font-family: var(--sans); font-size: 12.5px; color: var(--muted); padding: 22px 0 0; display: flex; gap: 8px; flex-wrap: wrap; }
.product { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; padding: 26px 0 60px; align-items: start; }
.gallery-main { aspect-ratio: 597 / 471; background: var(--tile); overflow: hidden; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 10px; }
.thumbs button { padding: 0; border: 1px solid transparent; background: var(--tile); cursor: pointer; aspect-ratio: 1; overflow: hidden; }
.thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.thumbs button.on { border-color: var(--ink); }
.product-info h1 { font-size: 46px; margin-bottom: 8px; }
.product-info .price { font-size: 22px; font-weight: 400; margin: 8px 0 22px; }
.product-info .price del { font-size: 16px; }
.product-info .off { font-family: var(--sans); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; background: var(--sale); color: #fff; padding: 3px 9px; }
.product-desc { color: var(--ink-2); font-size: 15.5px; margin-bottom: 26px; white-space: pre-line; }
.opt-label { font-family: var(--sans); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 10px; display: block; }
.opt-label span { color: var(--muted); letter-spacing: .04em; text-transform: none; font-size: 13px; }
.color-pick { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.color-pick input { position: absolute; opacity: 0; pointer-events: none; }
.color-pick label { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; border: 1px solid transparent; }
.color-pick label span { width: 24px; height: 24px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.14); }
.color-pick input:checked + label { border-color: var(--ink); }
.color-pick input:focus-visible + label { outline: 2px solid var(--taupe); outline-offset: 2px; }
.buy-row { display: flex; gap: 12px; margin-bottom: 14px; }
.qty { display: inline-flex; border: 1px solid var(--line); background: var(--paper); height: 48px; }
.qty button { width: 40px; border: 0; background: none; cursor: pointer; font-size: 18px; }
.qty input { width: 44px; text-align: center; border: 0; font-family: var(--sans); font-size: 15px; outline: none; -moz-appearance: textfield; }
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.buy-row .btn { flex: 1; }
.specs { border-top: 1px solid var(--line); margin-top: 28px; font-family: var(--sans); font-size: 14px; }
.specs div { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line-soft); gap: 16px; }
.specs dt { color: var(--muted); }
.specs dd { margin: 0; text-align: right; }
.how-to { display: flex; gap: 14px; background: var(--sand-2); padding: 18px 20px; margin-top: 24px; font-family: var(--sans); font-size: 13.5px; color: var(--ink-2); }
.how-to .icon { width: 22px; height: 22px; color: var(--accent); margin-top: 2px; }
.stock-low { font-family: var(--sans); font-size: 13px; color: var(--sale); margin: -8px 0 18px; }

/* ---------- Páginas de cuenta / carrito ---------- */
.page { padding: 40px 0 70px; }
.page-title { font-size: 42px; margin-bottom: 6px; }
.page-sub { color: var(--ink-2); margin-bottom: 30px; }
.panel { background: var(--surface); border: 1px solid var(--line-soft); padding: 32px; }
.auth { max-width: 460px; margin: 0 auto; }
.auth.wide { max-width: 760px; }
.auth .panel { padding: 40px; }
.auth h1 { text-align: center; font-size: 40px; }
.auth .lead { text-align: center; color: var(--ink-2); margin-bottom: 28px; }
.auth-foot { text-align: center; font-family: var(--sans); font-size: 14px; margin-top: 22px; }
.auth-foot a { text-decoration: underline; text-underline-offset: 3px; }
.fieldset-title { font-family: var(--sans); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin: 10px 0 16px; padding-bottom: 8px; border-bottom: 1px solid var(--line-soft); }

.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.cart-line { display: grid; grid-template-columns: 110px 1fr auto; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-line:first-child { padding-top: 0; }
.cart-line .thumb { aspect-ratio: 597/471; background: var(--tile); overflow: hidden; }
.cart-line .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line h3 { font-family: var(--text); font-size: 16px; font-weight: 400; margin: 0 0 3px; }
.cart-line .meta { font-family: var(--sans); font-size: 13px; color: var(--muted); }
.cart-line .actions { display: flex; align-items: center; gap: 14px; margin-top: 10px; }
.cart-line .qty { height: 38px; }
.cart-line .qty button { width: 32px; }
.cart-line .qty input { width: 36px; }
.summary { background: var(--surface); border: 1px solid var(--line-soft); padding: 26px; position: sticky; top: 110px; }
.summary h2 { font-size: 26px; }
.summary-row { display: flex; justify-content: space-between; font-family: var(--sans); font-size: 14.5px; padding: 7px 0; }
.summary-row.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; font-size: 18px; font-weight: 500; }
.summary-row.disc { color: var(--sale); }
.summary .note { font-family: var(--sans); font-size: 12.5px; color: var(--muted); margin: 14px 0 18px; line-height: 1.5; }
.mini-lines { font-family: var(--sans); font-size: 13.5px; margin-bottom: 12px; }
.mini-lines div { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; border-bottom: 1px dashed var(--line-soft); }

.account-layout { display: grid; grid-template-columns: 220px 1fr; gap: 44px; align-items: start; }
.account-nav { font-family: var(--sans); font-size: 14.5px; display: flex; flex-direction: column; }
.account-nav a { padding: 10px 14px; border-left: 2px solid transparent; }
.account-nav a.active { border-color: var(--ink); background: var(--sand-2); }

.success {
  display: flex; gap: 18px; align-items: flex-start; background: var(--ok-bg); border: 1px solid #cfdbc8; padding: 24px 26px; margin-bottom: 28px;
}
.success .icon { width: 30px; height: 30px; color: var(--ok); }
.success h2 { font-size: 28px; margin: 0 0 4px; }
.success p { margin: 0; font-family: var(--sans); font-size: 14.5px; color: var(--ink-2); }
.order-items .cart-line { grid-template-columns: 80px 1fr auto; }
.timeline { display: flex; gap: 0; margin: 10px 0 30px; font-family: var(--sans); font-size: 12px; }
.timeline div { flex: 1; text-align: center; position: relative; color: var(--muted); padding-top: 22px; }
.timeline div::before { content: ""; position: absolute; top: 5px; left: 50%; width: 11px; height: 11px; margin-left: -5px; border-radius: 50%; background: var(--line); z-index: 1; }
.timeline div::after { content: ""; position: absolute; top: 10px; left: -50%; width: 100%; height: 1px; background: var(--line); }
.timeline div:first-child::after { display: none; }
.timeline div.done { color: var(--ink); }
.timeline div.done::before, .timeline div.done::after { background: var(--ink); }

.prose { max-width: 720px; font-size: 16.5px; color: var(--ink-2); }
.prose h2 { font-size: 30px; color: var(--ink); margin-top: 36px; }
.faq details { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq summary { cursor: pointer; font-size: 17px; color: var(--ink); }
.faq details p { margin: 10px 0 0; }

/* ---------- Footer ---------- */
.footer { background: var(--sand-2); margin-top: 20px; border-top: 1px solid var(--line-soft); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr; gap: 36px; padding-top: 40px; padding-bottom: 34px; }
.header .logo-text { padding-left: 16px; border-left: 1px solid var(--line); }
.footer .logo { margin-bottom: 16px; }
.footer .logo-mark { display: none; }
.footer .logo-text { align-items: flex-start; }
.footer .logo-name { font-size: 25px; }
.footer p { font-size: 14px; color: var(--ink-2); max-width: 280px; }
.footer h5 { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; margin: 6px 0 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; font-size: 14px; }
.footer li { margin-bottom: 7px; }
.socials { display: flex; gap: 18px; margin-top: 18px; }
.socials .icon { width: 21px; height: 21px; }
.footer-bottom { border-top: 1px solid var(--line); font-family: var(--sans); font-size: 12.5px; color: var(--ink-2); }
.footer-bottom .wrap { display: flex; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; gap: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .grid-products { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .grid-products.home > :nth-child(n+9) { display: none; }
  .nav { gap: 22px; }
  .search { width: 190px; }
}
@media (max-width: 1020px) {
  .header .wrap { gap: 18px; flex-wrap: wrap; min-height: 70px; padding-top: 12px; padding-bottom: 12px; }
  .menu-toggle { display: inline-flex !important; }
  .logo { margin-right: auto; }
  .logo-name { font-size: 25px; }
  .nav { order: 5; flex-basis: 100%; flex-direction: column; gap: 0; display: none; padding: 6px 0 4px; }
  .nav.open { display: flex; }
  .nav a { padding: 10px 0; border-top: 1px solid var(--line-soft); }
  .nav a.active::after { display: none; }
  .search { order: 4; width: 100%; }
  .with-sidebar { grid-template-columns: 1fr; gap: 20px; }
  .sidebar { display: none; }
  .sidebar.open { display: block; }
  .filters-toggle { display: inline-flex; }
  .grid-products, .grid-products.cols-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product { grid-template-columns: 1fr; gap: 30px; }
  .cart-layout, .account-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .promos { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .topbar-links { display: none; }
  .header .logo-tag { display: none; }
  .header .logo-name { font-size: 22px; }
  .header .logo-mark { height: 36px; }
  .header .logo { gap: 10px; }
  .header-icons { gap: 12px; }
  .hero .wrap { min-height: 460px; justify-content: flex-start; padding-top: 36px; }
  .hero-img { width: 100%; height: 55%; top: auto; bottom: 0; -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 35%); mask-image: linear-gradient(to bottom, transparent 0, #000 35%); }
  .hero::before { background: linear-gradient(180deg, #d9cec2 0%, #ddd3c8 45%, rgba(221,211,200,0) 70%); }
  .grid-products, .grid-products.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .section-head h2, .catalog-head h1, .page-title { font-size: 32px; }
  .promo-dark img { width: 100%; opacity: .45; }
  .promo-dark::after { display: none; }
  .promo-dark .promo-copy { width: 100%; }
  .promo-light { flex-direction: column; }
  .promo-light img { width: 100%; height: 180px; }
  .cart-line { grid-template-columns: 84px 1fr; }
  .cart-line > .num { grid-column: 2; }
  .auth .panel, .panel { padding: 24px 18px; }
  .buy-row { flex-wrap: wrap; }
  .product-info h1 { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .wrap { flex-direction: column; }
  .timeline { font-size: 10.5px; }
}

/* ---------- Mayorista ---------- */
.price-wholesale { font-family: var(--sans); font-size: 12.5px; color: var(--accent); margin-top: 3px; letter-spacing: .02em; }
.wholesale-box { border: 1px solid var(--line); background: var(--surface); padding: 16px 18px; margin: -6px 0 24px; font-family: var(--sans); font-size: 14px; }
.wholesale-box strong { font-weight: 500; }
.wholesale-box .ws-price { font-size: 18px; color: var(--ink); }
.wholesale-box p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.ws-progress { background: var(--surface); border: 1px solid var(--line-soft); padding: 16px 20px; margin-bottom: 24px; font-family: var(--sans); font-size: 14px; }
.ws-progress.done { background: var(--ok-bg); border-color: #cfdbc8; color: var(--ok); }
.ws-bar { height: 6px; background: var(--sand); border-radius: 99px; overflow: hidden; margin-top: 10px; }
.ws-bar span { display: block; height: 100%; background: var(--accent); border-radius: 99px; transition: width .3s; }
.ws-progress p { margin: 6px 0 0; font-size: 13px; color: var(--muted); }
.tag-ws { display: inline-block; font-family: var(--sans); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; background: var(--ink); color: #f3d38f; padding: 2px 7px; margin-left: 6px; vertical-align: middle; }
.summary-row.ws { color: var(--accent); }
