/*
Theme Name: ConstruShopping
Theme URI: https://construshopping.destellobinario.com
Author: Construshopping
Description: Theme a medida basado en la propuesta de rebranding v2 (paleta Grafito/Papel/Ámbar, tipografía Archivo). WooCommerce ready.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: construshopping
*/

/* ===== Design tokens (Guía de Estilo v2) ===== */
:root {
  --ink: #1A1815;      /* Grafito: fondos oscuros, texto principal, botones */
  --paper: #F2F0E9;    /* Papel: fondo general cálido */
  --card: #FBFAF6;     /* Tarjeta: superficies sobre el papel */
  --line: #DAD3C6;     /* Línea: hairlines, bordes, separadores */
  --muted: #8A8478;    /* Neutro: textos secundarios y etiquetas */
  --accent: #C87E12;   /* Ámbar: acento, usar con moderación */
  --ink-70: #4E4A40;
  --ink-80: #3E3A32;
  --paper-line: #E7E1D5;
  --card-line: #E2DBCD;
  --img-bg: #E9E4DA;
}

/* ===== Reset base ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Archivo', sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--ink); color: var(--paper); }

.cs-wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 900px) { .cs-wrap { padding: 0 20px; } }

/* ===== Typography scale ===== */
.cs-lbl {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.cs-disp {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  letter-spacing: -.03em;
}

/* ===== Links / interactions ===== */
.cs-lk { position: relative; text-decoration: none; }
.cs-lk::after {
  content: ''; position: absolute; left: 0; bottom: -3px; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.cs-lk:hover::after { transform: scaleX(1); transform-origin: left; }
.cs-arrow-lk:hover .cs-arrow { transform: translateX(4px); }
.cs-arrow { transition: transform .25s; }
.cs-nav-a { transition: color .18s; }
.cs-nav-a:hover { color: var(--ink); }
.cs-wa:hover { background: var(--ink) !important; color: var(--paper) !important; }

@keyframes csRiseIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.cs-rise { animation: csRiseIn .8s cubic-bezier(.2,.75,.2,1) both; }

/* ===== Top bar ===== */
.cs-topbar { background: var(--ink); color: #B8B1A3; }
.cs-topbar-in {
  height: 38px; display: flex; align-items: center; justify-content: space-between; font-size: 12px;
}
.cs-topbar-right { display: flex; gap: 26px; align-items: center; }
.cs-topbar-sep { width: 1px; height: 12px; background: rgba(255,255,255,.16); }

/* ===== Header ===== */
.cs-header { background: var(--paper); border-bottom: 1px solid var(--line); }
.cs-header-in { padding: 22px 0; display: flex; align-items: center; gap: 44px; }
.cs-logo { flex-shrink: 0; }
.cs-logo img { height: 40px; }
.cs-search { flex: 1; max-width: 440px; display: flex; align-items: center; gap: 12px; border-bottom: 1.5px solid var(--ink); padding-bottom: 9px; }
.cs-search input { flex: 1; border: 0; outline: 0; background: transparent; font-family: inherit; font-size: 14px; color: var(--ink); }
.cs-header-actions { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.cs-header-actions a { display: flex; align-items: center; gap: 8px; color: var(--ink); text-decoration: none; font-size: 13px; font-weight: 500; }
.cs-cart-badge {
  position: absolute; top: -6px; right: -8px; background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700; width: 15px; height: 15px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cs-navbar { border-top: 1px solid var(--paper-line); }
.cs-navbar-in { height: 46px; display: flex; align-items: center; gap: 34px; overflow-x: auto; }
.cs-navbar a { color: #6E685C; text-decoration: none; letter-spacing: .13em; font-size: 11.5px; white-space: nowrap; }
.cs-navbar .cs-offers { margin-left: auto; color: var(--accent); }

/* ===== Hero ===== */
.cs-hero { display: grid; grid-template-columns: 1.02fr .98fr; border-bottom: 1px solid var(--line); }
.cs-hero-copy { padding: 78px 60px 70px 40px; display: flex; flex-direction: column; justify-content: space-between; }
.cs-hero-kicker { display: flex; align-items: center; gap: 14px; }
.cs-hero-kicker .sep { flex: 1; height: 1px; background: var(--line); max-width: 120px; }
.cs-hero h1 { font-size: 56px; line-height: 1.02; margin: 36px 0 0; max-width: 15ch; }
.cs-hero h1 span { color: var(--accent); }
.cs-hero p { font-size: 16.5px; line-height: 1.6; color: var(--ink-70); max-width: 44ch; margin: 26px 0 0; }
.cs-hero-ctas { display: flex; align-items: center; gap: 34px; margin-top: 44px; }
.cs-btn-dark {
  display: inline-flex; align-items: center; gap: 14px; background: var(--ink); color: var(--paper);
  text-decoration: none; padding: 16px 26px; font-size: 13px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; border: 1px solid var(--ink);
}
.cs-btn-outline {
  display: inline-flex; align-items: center; gap: 14px; background: transparent; color: var(--paper);
  text-decoration: none; padding: 15px 26px; font-size: 13px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; border: 1px solid rgba(242,240,233,.3);
}
.cs-hero-img { position: relative; min-height: 600px; border-left: 1px solid var(--line); background: var(--img-bg); overflow: hidden; }
.cs-hero-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cs-hero-stat {
  position: absolute; left: 0; bottom: 0; background: var(--paper); padding: 20px 28px 18px;
  display: flex; align-items: center; gap: 22px; border-top: 1px solid var(--line); border-right: 1px solid var(--line);
}
.cs-hero-stat b { font-size: 34px; line-height: 1; color: var(--accent); font-weight: 800; }
.cs-hero-stat span { font-size: 12.5px; line-height: 1.35; color: var(--ink-70); }

/* ===== Section heading row ===== */
.cs-sec-head {
  display: flex; align-items: flex-end; justify-content: space-between; border-bottom: 1px solid var(--line);
  padding-bottom: 20px; margin-bottom: 34px; gap: 20px; flex-wrap: wrap;
}
.cs-sec-head h2 { font-size: 38px; line-height: 1; margin: 12px 0 0; }
.cs-sec-head .cs-eyebrow { color: var(--muted); }
.cs-sec-more { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-size: 13px; font-weight: 600; padding-bottom: 6px; }

/* ===== Categories ===== */
.cs-cats-section { padding: 76px 0 20px; }
.cs-cats-lg { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.cs-cats-sm { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 900px) { .cs-cats-lg, .cs-cats-sm { grid-template-columns: 1fr 1fr; } }
.cs-cat { position: relative; display: block; overflow: hidden; text-decoration: none; background: var(--img-bg); }
.cs-cat.lg { height: 340px; }
.cs-cat.sm { height: 210px; }
.cs-cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.cs-cat:hover img { transform: scale(1.05); }
.cs-cat:hover .cs-cat-idx { color: var(--accent); }
.cs-cat-overlay.lg { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,24,21,.72) 0%, rgba(26,24,21,.05) 46%); }
.cs-cat-overlay.sm { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,24,21,.68) 0%, rgba(26,24,21,.02) 52%); }
.cs-cat-idx { position: absolute; color: #F2F0E9; transition: color .3s; font-weight: 800; letter-spacing: -.03em; }
.cs-cat.lg .cs-cat-idx { top: 22px; left: 26px; font-size: 30px; }
.cs-cat.sm .cs-cat-idx { top: 16px; left: 18px; font-size: 22px; }
.cs-cat-info { position: absolute; color: #F2F0E9; }
.cs-cat.lg .cs-cat-info { left: 26px; bottom: 24px; right: 26px; display: flex; align-items: flex-end; justify-content: space-between; }
.cs-cat.sm .cs-cat-info { left: 18px; bottom: 16px; right: 18px; }
.cs-cat.lg .cs-cat-name { font-size: 22px; font-weight: 700; letter-spacing: -.01em; }
.cs-cat.sm .cs-cat-name { font-size: 15.5px; font-weight: 700; }
.cs-cat-count { font-size: 12.5px; color: rgba(242,240,233,.72); margin-top: 3px; }
.cs-cat.sm .cs-cat-count { font-size: 11.5px; margin-top: 2px; }

/* ===== Feature banner ===== */
.cs-feature { margin: 80px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink); color: var(--paper); }
.cs-feature-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: .92fr 1.08fr; }
.cs-feature-copy { padding: 70px 60px; display: flex; flex-direction: column; justify-content: center; }
.cs-feature-copy h2 { font-size: 42px; line-height: 1.04; margin: 22px 0 0; }
.cs-feature-copy p { font-size: 15.5px; line-height: 1.65; color: #B8B1A3; max-width: 42ch; margin: 22px 0 0; }
.cs-feature-img { position: relative; min-height: 460px; border-left: 1px solid rgba(242,240,233,.14); overflow: hidden; }
.cs-feature-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .cs-feature-grid { grid-template-columns: 1fr; } .cs-feature-img { min-height: 320px; } }

/* ===== Product cards ===== */
.cs-prod-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; }
@media (max-width: 1100px) { .cs-prod-grid { grid-template-columns: repeat(2,1fr); } }
.cs-prod { text-decoration: none; color: var(--ink); display: block; }
.cs-prod-img-wrap { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--img-bg); border: 1px solid var(--card-line); }
.cs-prod-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.cs-prod:hover .cs-prod-img-wrap img { transform: scale(1.04); }
.cs-prod:hover .cs-prod-name { text-decoration: underline; text-underline-offset: 3px; }
.cs-prod-tag {
  position: absolute; top: 12px; left: 12px; background: var(--ink); color: var(--paper);
  font-size: 9.5px; letter-spacing: .12em; padding: 6px 10px; text-transform: uppercase; font-weight: 600;
}
.cs-prod-body { padding: 16px 2px 0; }
.cs-prod-cat { color: var(--muted); font-size: 10.5px; }
.cs-prod-name { font-size: 14.5px; font-weight: 500; line-height: 1.35; margin: 8px 0 0; min-height: 40px; display: block; }
.cs-prod-price { font-size: 23px; line-height: 1; margin-top: 12px; font-weight: 800; letter-spacing: -.03em; }

/* ===== Services ===== */
.cs-services-section { padding: 88px 0 20px; }
.cs-services-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
.cs-services-grid h2 { font-size: 38px; line-height: 1.06; margin: 18px 0 0; }
.cs-service { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 26px 0; border-top: 1px solid var(--line); align-items: baseline; }
.cs-service .idx { font-size: 24px; color: var(--accent); font-weight: 800; }
.cs-service .title { font-size: 18px; font-weight: 700; }
.cs-service .desc { font-size: 14.5px; line-height: 1.6; color: var(--ink-70); margin-top: 6px; max-width: 52ch; }
@media (max-width: 900px) { .cs-services-grid { grid-template-columns: 1fr; } }

/* ===== Footer ===== */
.cs-footer { margin-top: 88px; background: var(--ink); color: #B8B1A3; }
.cs-footer-in { padding: 56px 0 34px; }
.cs-footer-brands {
  display: flex; align-items: center; gap: 40px; padding-bottom: 40px; margin-bottom: 48px;
  border-bottom: 1px solid rgba(242,240,233,.12); flex-wrap: wrap;
}
.cs-footer-brands span.tag { color: #8A8478; flex-shrink: 0; }
.cs-footer-brands-list { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.cs-footer-brands-list span { font-size: 17px; font-weight: 700; color: #6E685C; letter-spacing: .01em; }
.cs-footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 52px; }
@media (max-width: 900px) { .cs-footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.cs-footer-grid img { height: 40px; margin-bottom: 20px; }
.cs-footer-grid p { font-size: 14px; line-height: 1.65; max-width: 32ch; color: #9C9689; }
.cs-footer-branch .tag { color: var(--accent); margin-bottom: 18px; display: block; }
.cs-footer-branch-row { display: flex; flex-direction: column; gap: 13px; font-size: 13.5px; color: #9C9689; }
.cs-footer-branch-row .row { display: flex; gap: 11px; align-items: flex-start; }
.cs-footer-bottom {
  margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(242,240,233,.12); display: flex;
  align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12px; color: #777166;
}
.cs-footer-bottom-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cs-footer-bottom-left a { color: #777166; text-decoration: none; }
.cs-pays { display: flex; align-items: center; gap: 7px; }
.cs-pays span { background: var(--paper); color: var(--ink); font-size: 9.5px; font-weight: 800; letter-spacing: .02em; padding: 5px 9px; border-radius: 4px; }

/* ===== Category / shop archive ===== */
.cs-cat-header { background: var(--ink); color: var(--paper); border-bottom: 1px solid var(--line); }
.cs-cat-header-in { padding: 40px 0 44px; }
.cs-breadcrumb { color: #8A8478; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.cs-breadcrumb a { color: #8A8478; text-decoration: none; }
.cs-breadcrumb .current { color: var(--paper); }
.cs-cat-title-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-top: 20px; flex-wrap: wrap; }
.cs-cat-title-row h1 { font-size: 52px; line-height: 1; margin: 0; }
.cs-cat-title-row p { font-size: 15px; line-height: 1.6; color: #B8B1A3; max-width: 52ch; margin: 16px 0 0; }
.cs-cat-count-box { text-align: right; flex-shrink: 0; }
.cs-cat-count-box .n { font-size: 40px; line-height: 1; color: var(--accent); font-weight: 800; }
.cs-cat-count-box .lbl { color: #8A8478; margin-top: 6px; }

.cs-shop-body { padding: 44px 0 20px; display: grid; grid-template-columns: 248px 1fr; gap: 52px; align-items: start; }
@media (max-width: 900px) { .cs-shop-body { grid-template-columns: 1fr; } }
.cs-side-title { color: var(--muted); padding-bottom: 16px; border-bottom: 1px solid var(--ink); }
.cs-side-cat-item { border-bottom: 1px solid var(--card-line); }
.cs-side-cat-item summary { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; cursor: pointer; list-style: none; font-size: 14px; font-weight: 500; color: var(--ink-70); }
.cs-side-cat-item summary::-webkit-details-marker { display: none; }
.cs-side-cat-item summary:hover { color: var(--ink); }
.cs-side-cat-item.current-cat > summary { font-weight: 700; color: var(--ink); }
.cs-side-cat-item summary .chev { transition: transform .25s; flex-shrink: 0; }
.cs-side-cat-item[open] summary .chev { transform: rotate(180deg); }
.cs-side-subcats { padding: 2px 0 14px 2px; display: flex; flex-direction: column; gap: 11px; }
.cs-side-subcats a { font-size: 13.5px; text-decoration: none; color: #6E685C; display: flex; align-items: center; gap: 9px; }
.cs-side-subcats a:hover, .cs-side-subcats a.current { color: var(--ink); font-weight: 700; }
.cs-side-subcats a.current::before { content: ''; width: 6px; height: 6px; background: var(--accent); flex-shrink: 0; }
.cs-side-flat > a { font-size: 14px; font-weight: 500; color: var(--ink-70); display: block; padding: 14px 0; text-decoration: none; }
.cs-side-flat > a:hover, .cs-side-flat.current > a { font-weight: 700; color: var(--ink); }

.cs-price-filter { margin-top: 34px; }
.cs-price-list { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.cs-price-list a { display: flex; align-items: center; gap: 11px; font-size: 13.5px; color: var(--ink-70); text-decoration: none; }
.cs-price-box { width: 15px; height: 15px; border: 1.5px solid #C7BFB0; flex-shrink: 0; }
.cs-price-list a.active .cs-price-box { background: var(--ink); border-color: var(--ink); }
.cs-price-list a.active { color: var(--ink); font-weight: 600; }

.cs-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.cs-toolbar-count { font-size: 13.5px; color: var(--ink-70); }
.cs-toolbar-count strong { color: var(--ink); }
.cs-toolbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cs-view-opts { display: flex; gap: 6px; }
.cs-view-opts a {
  width: 34px; height: 34px; border: 1px solid var(--line); background: var(--card); color: var(--muted);
  display: flex; align-items: center; justify-content: center; text-decoration: none;
}
.cs-view-opts a.active { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.cs-sort-select { font-family: inherit; font-size: 13px; font-weight: 500; color: var(--ink); background: var(--card); border: 1px solid var(--line); padding: 9px 12px; cursor: pointer; outline: none; }

.cs-shop-grid { display: grid; gap: 26px; margin-top: 32px; }
.cs-shop-grid.cols-2 { grid-template-columns: repeat(2,1fr); }
.cs-shop-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
.cs-shop-grid.cols-4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 700px) { .cs-shop-grid.cols-3, .cs-shop-grid.cols-4 { grid-template-columns: repeat(2,1fr); } }

.cs-pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 56px; }
.cs-pagination a, .cs-pagination span {
  min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--line); background: var(--card); color: var(--ink-70);
  font-family: inherit; font-size: 13.5px; font-weight: 600; text-decoration: none; transition: all .18s;
  display: flex; align-items: center; justify-content: center;
}
.cs-pagination .current { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.cs-pagination a:hover { border-color: var(--ink); }

/* ===== Single product ===== */
.cs-breadcrumb-bar { padding: 22px 0 0; }
.cs-product-section { padding: 32px 0 20px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .cs-product-section { grid-template-columns: 1fr; } }
.cs-gallery { display: grid; grid-template-columns: 84px 1fr; gap: 16px; }
@media (max-width: 500px) { .cs-gallery { grid-template-columns: 1fr; } .cs-gallery-thumbs { flex-direction: row !important; overflow-x: auto; } }
.cs-gallery-thumbs { display: flex; flex-direction: column; gap: 12px; }
.cs-thumb { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--img-bg); border: 1.5px solid var(--card-line); cursor: pointer; transition: border-color .18s; }
.cs-thumb:hover, .cs-thumb.active { border-color: var(--ink); }
.cs-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cs-main-img { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--img-bg); border: 1px solid var(--card-line); }
.cs-main-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.cs-product-info .sku { color: var(--muted); }
.cs-product-info h1 { font-size: 38px; line-height: 1.04; margin: 12px 0 0; }
.cs-rating { display: flex; align-items: center; gap: 14px; margin-top: 14px; }
.cs-stars { display: flex; gap: 3px; }
.cs-rating-text { font-size: 13px; color: var(--muted); }
.cs-price-row { display: flex; align-items: baseline; gap: 12px; margin-top: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.cs-price-row .price { font-size: 40px; line-height: 1; font-weight: 800; letter-spacing: -.03em; }
.cs-price-row .unit { font-size: 14px; color: var(--muted); }
.cs-product-desc { font-size: 15px; line-height: 1.65; color: var(--ink-70); margin: 22px 0 0; max-width: 52ch; }
.cs-quick-specs { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 26px; }
.cs-quick-specs > div { background: var(--card); padding: 16px 18px; }
.cs-quick-specs .k { color: var(--muted); font-size: 9.5px; }
.cs-quick-specs .v { font-size: 14.5px; font-weight: 600; margin-top: 6px; }
.cs-buy-row { display: flex; align-items: stretch; gap: 14px; margin-top: 26px; }
.cs-qty { display: flex; align-items: center; border: 1px solid var(--line); background: var(--card); }
.cs-qty button { width: 46px; height: 52px; border: 0; background: transparent; font-size: 20px; color: var(--ink); cursor: pointer; transition: background .15s; }
.cs-qty button:hover { background: #EDE6D8; }
.cs-qty input { width: 44px; text-align: center; font-size: 15px; font-weight: 700; border: 0; background: transparent; font-family: inherit; -moz-appearance: textfield; }
.cs-qty input::-webkit-outer-spin-button, .cs-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cs-add-cart {
  flex: 1; height: 52px; background: var(--ink); color: var(--paper); border: 0; cursor: pointer; font-family: inherit;
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; display: flex; align-items: center;
  justify-content: center; gap: 12px; transition: background .15s;
}
.cs-add-cart:hover { background: #000; }
.cs-wa-btn {
  margin-top: 12px; height: 50px; display: flex; align-items: center; justify-content: center; gap: 11px;
  border: 1px solid var(--ink); color: var(--ink); text-decoration: none; font-size: 13px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; transition: all .18s;
}
.cs-wa-btn:hover { background: var(--ink); color: var(--paper); }
.cs-badges { display: flex; gap: 24px; margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.cs-badge { display: flex; gap: 11px; align-items: center; }
.cs-badge .ico { width: 34px; height: 34px; background: #EDE6D8; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cs-badge .t { font-size: 13px; font-weight: 700; }
.cs-badge .d { font-size: 12px; color: var(--muted); }

.cs-tabs-section { padding: 56px 0 0; }
.cs-tabs-nav { display: flex; gap: 36px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.cs-tabs-nav button {
  background: transparent; border: 0; border-bottom: 2px solid transparent; color: #A79F8D; font-weight: 800;
  letter-spacing: -.03em; font-size: 19px; padding: 0 0 16px; cursor: pointer; margin-bottom: -1px; font-family: inherit;
}
.cs-tabs-nav button.active { color: var(--ink); border-bottom-color: var(--accent); }
.cs-tab-panel { padding: 36px 0 0; max-width: 900px; display: none; }
.cs-tab-panel.active { display: block; }
.cs-tab-panel p { font-size: 15.5px; line-height: 1.75; color: var(--ink-80); margin: 0 0 18px; }
.cs-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; }
@media (max-width: 600px) { .cs-specs-grid { grid-template-columns: 1fr; } }
.cs-spec-row { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--card-line); }
.cs-spec-row .k { font-size: 14px; color: var(--muted); }
.cs-spec-row .v { font-size: 14px; font-weight: 600; text-align: right; }

.cs-related-section { padding: 76px 0 20px; }

/* ===== WooCommerce notices (kept minimal, on-brand) ===== */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  max-width: 1280px; margin: 20px auto; padding: 16px 24px; list-style: none;
  background: var(--card); border: 1px solid var(--line); color: var(--ink); font-size: 14px;
}
.woocommerce-error { border-color: #C0392B; }
