/* HERO */
.hero { background: var(--blue); height: 480px; display: flex;
  align-items: center; color: #fff; overflow: hidden; position: relative; }
.hero::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(46,117,182,.4) 0, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(46,117,182,.25) 0, transparent 35%);
  pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 64px; align-items: center; width: 100%; position: relative; z-index: 1; }
.hero-label { display: inline-block; font-size: 11.5px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--text-light);
  margin-bottom: 20px; padding: 6px 12px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15); border-radius: 999px; }
.hero h1 { font-size: 44px; font-weight: 800; line-height: 1.12;
  letter-spacing: -.8px; margin-bottom: 20px; max-width: 560px; }
.hero-subtitle { font-size: 15px; color: var(--text-light);
  margin-bottom: 32px; max-width: 480px; }
.hero-subtitle strong { color: #fff; font-weight: 600; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-art { position: relative; height: 380px; width: 100%; }
.hero-art svg { width: 100%; height: 100%; }

/* COPY CENTRE BLOCK */
.copy-centre { display: grid; grid-template-columns: 1fr 1fr; }
.copy-left { background: var(--blue); color: #fff; padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center; }
.copy-left .mini-label { display: inline-block; font-size: 11.5px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 18px; }
.copy-left h2 { font-size: 34px; font-weight: 800;
  letter-spacing: -.5px; margin-bottom: 14px; line-height: 1.15; }
.copy-left p { color: var(--text-light); margin-bottom: 32px;
  font-size: 15px; max-width: 460px; }
.copy-chips { display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 36px; max-width: 460px; }
.chip { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  padding: 11px 14px; border-radius: 8px; font-size: 13px;
  font-weight: 500; display: inline-flex; align-items: center;
  gap: 9px; transition: background .2s ease, border-color .2s ease; cursor: pointer; }
.chip:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); }
.chip-dot { width: 6px; height: 6px; border-radius: 50%;
  background: var(--text-light); flex-shrink: 0; }
.copy-right { background: var(--blue-light); display: flex;
  align-items: center; justify-content: center; padding: 60px;
  position: relative; overflow: hidden; }
.copy-right svg { width: 100%; max-width: 460px; height: auto; }

/* CATEGORY PAGE */
.cat-hero { background: var(--blue-pale); padding: 56px 0;
  border-bottom: 1px solid var(--border); }
.cat-hero h1 { font-size: 36px; font-weight: 800;
  color: var(--blue); letter-spacing: -.5px; }
.cat-hero .lead { color: var(--text-muted); margin-top: 8px;
  font-size: 15px; max-width: 600px; }
.subcat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.subcat-card { display: flex; align-items: center; gap: 16px;
  padding: 20px; background: #fff; border: 1px solid var(--border);
  border-radius: 10px; cursor: pointer; position: relative; overflow: hidden;
  transition: border-color .2s ease, transform .2s ease; }
.subcat-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--blue-mid); transition: width .2s ease; }
.subcat-card:hover { border-color: var(--blue-mid); }
.subcat-card:hover::before { width: 4px; }
.subcat-icon { width: 44px; height: 44px; border-radius: 10px;
  background: var(--blue-pale); display: flex; align-items: center;
  justify-content: center; font-size: 20px; flex-shrink: 0; }
.subcat-name { font-size: 14px; font-weight: 600; color: var(--text); flex: 1; }
.subcat-arrow { color: var(--blue-mid); font-weight: 600; font-size: 13px; }
.subcat-count { font-size: 11px; color: var(--text-muted); display: block; margin-top: 2px; font-weight: 400; }

/* LISTING / FILTERS */
.listing-grid { display: grid; grid-template-columns: 240px 1fr;
  gap: 32px; padding: 40px 0 80px; }
.filter-box { background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 18px 18px 14px; margin-bottom: 16px; }
.filter-h { font-size: 12px; font-weight: 700;
  text-transform: uppercase; color: var(--blue); letter-spacing: .8px;
  margin-bottom: 12px; }
.filter-list { display: flex; flex-direction: column; gap: 8px; }
.filter-item { display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--text); cursor: pointer; }
.filter-item input { width: 14px; height: 14px;
  accent-color: var(--blue-mid); cursor: pointer; }
.filter-item .count { margin-left: auto; color: var(--text-muted); font-size: 12px; }
.filter-item.active { color: var(--blue); font-weight: 600; }

.filter-cat { display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--text); cursor: pointer; padding: 4px 0;
  user-select: none; transition: color .2s ease; }
.filter-cat:hover { color: var(--blue); }
.filter-cat .chev-sm { width: 10px; height: 10px;
  margin-left: auto; color: var(--text-muted); transition: transform .2s ease; }
.filter-cat.open .chev-sm { transform: rotate(180deg); color: var(--blue); }
.filter-cat.open, .filter-cat.active { color: var(--blue); font-weight: 600; }
.filter-cat .count { color: var(--text-muted); font-size: 12px; font-weight: 400; }
.subfilter-list { max-height: 0; overflow: hidden;
  transition: max-height .25s ease; padding-left: 22px; }
.subfilter-list.open { max-height: 700px; padding-top: 6px; padding-bottom: 4px; }
.subfilter-item { font-size: 12.5px; color: var(--text-muted);
  padding: 5px 0; cursor: pointer; display: flex;
  align-items: center; gap: 8px; transition: color .2s ease; }
.subfilter-item::before { content: ""; width: 3px; height: 3px;
  border-radius: 50%; background: var(--blue-mid); opacity: .5; flex-shrink: 0; }
.subfilter-item:hover { color: var(--blue-mid); }
.subfilter-item:hover::before { opacity: 1; }
.subfilter-item.active { color: var(--blue); font-weight: 600; }
.subfilter-item.active::before { opacity: 1; width: 4px; height: 4px; }

.listing-bar { display: flex; align-items: center;
  justify-content: space-between; padding-bottom: 18px;
  border-bottom: 1px solid var(--border); margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.listing-count { font-size: 14px; color: var(--text-muted); }
.listing-count strong { color: var(--text); font-weight: 700; }
.listing-controls { display: flex; align-items: center; gap: 12px; }
.sort-select { height: 36px; border: 1px solid var(--border);
  border-radius: 8px; padding: 0 12px; font-size: 13px;
  color: var(--text); background: #fff; cursor: pointer; }
.view-toggle { display: flex; border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden; }
.view-toggle button { width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); }
.view-toggle button.active { background: var(--blue-pale); color: var(--blue); }

.pagination { display: flex; gap: 6px; justify-content: center;
  margin-top: 36px; }
.pagination button { width: 38px; height: 38px;
  border: 1px solid var(--border); border-radius: 8px; background: #fff;
  color: var(--text); font-weight: 600; font-size: 13px; }
.pagination button.active { background: var(--blue); color: #fff;
  border-color: var(--blue); }
.pagination button:hover:not(.active):not(:disabled) {
  border-color: var(--blue-mid); color: var(--blue-mid); }
.pagination button:disabled { opacity: .4; cursor: not-allowed; }

.empty-state { padding: 80px 32px; text-align: center;
  background: var(--blue-pale); border-radius: 12px; }
.empty-state .em-icon { font-size: 56px; margin-bottom: 14px; }
.empty-state h3 { font-size: 20px; color: var(--blue); font-weight: 800; margin-bottom: 6px; }
.empty-state p { color: var(--text-muted); margin-bottom: 18px; }

/* PRODUCT PAGE */
.product-grid { display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 48px; padding: 32px 0 64px; }
.product-gallery { display: flex; flex-direction: column; gap: 14px; }
.product-img-main { aspect-ratio: 1; border-radius: 12px;
  border: 1px solid var(--border); display: flex;
  align-items: center; justify-content: center; font-size: 140px; }
.product-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.product-thumb { aspect-ratio: 1; border: 1.5px solid var(--border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 38px; cursor: pointer; transition: border-color .2s ease; }
.product-thumb:hover, .product-thumb.active { border-color: var(--blue-mid); }
.product-info .brand-label { font-size: 11px;
  color: var(--blue-mid); font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; }
.product-info h1 { font-size: 28px; font-weight: 800;
  color: var(--text); letter-spacing: -.4px; line-height: 1.2;
  margin: 8px 0 12px; }
.rating-row { display: flex; align-items: center;
  gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.stars { display: inline-flex; gap: 2px; color: #F59E0B; font-size: 14px; }
.review-count { font-size: 13px; color: var(--text-muted); }
.stock-pill { display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.stock-pill.in { background: var(--green-light); color: var(--green); }
.stock-pill.out { background: var(--red-light); color: var(--red); }
.stock-pill::before { content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: currentColor; }
.price-block { padding: 20px 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); margin-bottom: 22px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.price-big { font-size: 36px; font-weight: 800;
  color: var(--blue); letter-spacing: -.6px; }
.price-old-big { font-size: 18px; color: var(--text-muted);
  text-decoration: line-through; }
.price-save { font-size: 12px; color: var(--green); font-weight: 700;
  background: var(--green-light); padding: 3px 8px; border-radius: 4px; }
.price-eur-big { font-size: 20px; color: var(--text-muted);
  font-weight: 600; }
.price-novat { font-size: 13px; color: var(--text-muted);
  margin-top: 8px; line-height: 1.6; }
.price-novat strong { color: var(--text); font-weight: 700; }
.attr-table { width: 100%; margin-bottom: 22px; }
.attr-table tr { border-bottom: 1px solid var(--border); }
.attr-table td { padding: 9px 0; font-size: 13px; }
.attr-table td:first-child { color: var(--text-muted); width: 40%; }
.attr-table td:last-child { color: var(--text); font-weight: 500; }
.qty-row { display: flex; align-items: center;
  gap: 14px; margin-bottom: 18px; }
.product-ctas { display: flex; gap: 10px; margin-bottom: 22px; }
.trust-row { display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px; padding: 18px 0; border-top: 1px solid var(--border); }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text); }
.trust-item svg { color: var(--blue-mid); flex-shrink: 0; }

.tabs { display: flex; border-bottom: 1px solid var(--border);
  margin-bottom: 24px; gap: 4px; }
.tab { padding: 14px 22px; font-size: 14px; font-weight: 600;
  color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: color .2s ease, border-color .2s ease; }
.tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.tab:hover:not(.active) { color: var(--blue-mid); }
.tab-panel { padding: 8px 0 24px; font-size: 14px;
  color: var(--text); line-height: 1.7; }
.tab-panel h4 { font-size: 15px; color: var(--blue);
  margin: 18px 0 8px; font-weight: 700; }
.tab-panel p { margin-bottom: 12px; }
.review-card { padding: 18px; background: var(--blue-pale);
  border-radius: 8px; margin-bottom: 14px; }
.review-head { display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 8px; }
.review-name { font-weight: 700; color: var(--blue); font-size: 14px; }
.review-date { color: var(--text-muted); font-size: 12px; }
.review-text { font-size: 13.5px; color: var(--text); line-height: 1.6; }

/* CART */
.cart-grid { display: grid; grid-template-columns: 1fr 360px;
  gap: 32px; padding: 32px 0 80px; align-items: flex-start; }
.cart-empty { padding: 80px 32px; background: var(--blue-pale);
  border-radius: 12px; text-align: center; }
.cart-empty .em-icon { font-size: 64px; margin-bottom: 18px; }
.cart-empty h2 { font-size: 22px; font-weight: 800;
  color: var(--blue); margin-bottom: 8px; }
.cart-empty p { color: var(--text-muted); margin-bottom: 24px; }
.cart-item { display: grid; grid-template-columns: 80px 1fr auto auto auto;
  gap: 18px; padding: 18px; border: 1px solid var(--border);
  border-radius: 10px; align-items: center; margin-bottom: 12px; background: #fff; }
.cart-item-img { aspect-ratio: 1; width: 80px;
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 36px; }
.cart-item-info .brand { font-size: 11px; color: var(--blue-mid);
  font-weight: 700; text-transform: uppercase; letter-spacing: .8px; }
.cart-item-info .name { font-size: 14px; font-weight: 600;
  color: var(--text); margin: 4px 0 6px; }
.cart-item-info .unit { font-size: 12px; color: var(--text-muted); }
.cart-item-total { font-size: 17px; font-weight: 800;
  color: var(--blue); min-width: 90px; text-align: right; }
.cart-remove { width: 36px; height: 36px;
  border-radius: 8px; color: var(--text-muted); display: flex;
  align-items: center; justify-content: center; }
.cart-remove:hover { background: var(--red-light); color: var(--red); }
.cart-summary { background: var(--blue-pale); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; position: sticky; top: 20px; }
.cart-summary h3 { font-size: 16px; font-weight: 700;
  color: var(--blue); margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between;
  padding: 6px 0; font-size: 14px; color: var(--text); }
.summary-row.muted { color: var(--text-muted); font-size: 13px; }
.summary-total { display: flex; justify-content: space-between;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border);
  font-size: 18px; font-weight: 800; color: var(--blue); }
.progress-bar { height: 6px; background: var(--border);
  border-radius: 999px; overflow: hidden; margin-top: 14px; }
.progress-fill { height: 100%; background: var(--green); transition: width .3s ease; }
.progress-text { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

/* CHECKOUT */
.checkout-wrap { padding: 32px 0 80px; }
.steps { display: flex; align-items: center;
  justify-content: center; max-width: 720px; margin: 0 auto 40px;
  position: relative; gap: 0; }
.step { display: flex; flex-direction: column; align-items: center;
  gap: 8px; flex: 1; position: relative; z-index: 2; }
.step-num { width: 36px; height: 36px; border-radius: 50%;
  background: #fff; border: 2px solid var(--border); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; transition: all .3s ease; }
.step.active .step-num { background: var(--blue);
  border-color: var(--blue); color: #fff; }
.step.done .step-num { background: var(--green);
  border-color: var(--green); color: #fff; }
.step-label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.step.active .step-label, .step.done .step-label { color: var(--blue); }
.step-line { position: absolute; top: 18px; left: 0; right: 0;
  height: 2px; background: var(--border); z-index: 1; }
.step-line-fill { height: 100%; background: var(--green);
  transition: width .3s ease; }
.checkout-grid { display: grid; grid-template-columns: 1fr 360px; gap: 32px; }
.delivery-radio { display: flex; flex-direction: column; gap: 10px; }
.radio-card { display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border: 1.5px solid var(--border); border-radius: 10px; cursor: pointer; }
.radio-card:hover { border-color: var(--blue-mid); }
.radio-card.active { border-color: var(--blue); background: var(--blue-pale); }
.radio-card input { width: 16px; height: 16px; accent-color: var(--blue); }
.radio-card-icon { font-size: 24px; }
.radio-card-info { flex: 1; }
.radio-card-info .t { font-size: 14px; font-weight: 700; color: var(--text); }
.radio-card-info .s { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.radio-card .price-tag { font-size: 14px; font-weight: 700; color: var(--blue); }

.card-panel { padding: 22px; background: #fff; border-radius: 12px;
  border: 1.5px solid var(--border); position: relative; overflow: hidden; }
.card-panel::before { content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 30px; background: linear-gradient(135deg, #1F4E79, #2E75B6); }
.card-panel .card-form { margin-top: 28px; display: grid; gap: 14px; }
.stripe-badge { display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--text-muted); margin-top: 12px; }

.iban-box { padding: 18px; background: var(--blue-pale);
  border-radius: 8px; font-family: monospace; font-size: 13px;
  color: var(--blue); line-height: 1.9; }

.confirm-screen { text-align: center; padding: 80px 32px;
  max-width: 600px; margin: 0 auto; }
.check-circle { width: 100px; height: 100px;
  border-radius: 50%; background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; font-size: 56px; }
.confirm-screen h1 { font-size: 32px; color: var(--blue);
  font-weight: 800; margin-bottom: 14px; }
.confirm-screen p { color: var(--text-muted);
  font-size: 15px; margin-bottom: 8px; }
.order-num { display: inline-block; padding: 10px 22px;
  background: var(--blue-pale); color: var(--blue);
  border-radius: 8px; font-weight: 700; margin: 16px 0 24px; }

/* COPY CENTRE PAGE */
.navy-hero { background: var(--blue); color: #fff;
  padding: 80px 0; position: relative; overflow: hidden; }
.navy-hero::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(46,117,182,.4) 0, transparent 40%);
  pointer-events: none; }
.navy-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.navy-hero h1 { font-size: 44px; font-weight: 800;
  letter-spacing: -.8px; margin-bottom: 14px; line-height: 1.1; }
.navy-hero p { font-size: 16px; color: var(--text-light);
  margin-bottom: 28px; max-width: 600px; }
.navy-hero .ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 24px; cursor: pointer;
  transition: border-color .2s ease, transform .2s ease; }
.service-card:hover { border-color: var(--blue-mid); transform: translateY(-3px); }
.service-icon { width: 56px; height: 56px; border-radius: 12px;
  background: var(--blue-pale); display: flex; align-items: center;
  justify-content: center; font-size: 26px; margin-bottom: 18px; }
.service-card h3 { font-size: 16px; color: var(--blue);
  font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 14px; }
.service-card .more { color: var(--blue-mid);
  font-weight: 600; font-size: 13px; }

.quote-section { background: var(--blue-pale);
  padding: 64px 0; margin-top: 64px; }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.quote-stats { display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px; margin-top: 28px; }
.stat { padding: 18px; background: #fff;
  border-radius: 10px; border: 1px solid var(--border); }
.stat .num { font-size: 28px; font-weight: 800;
  color: var(--blue); letter-spacing: -.5px; }
.stat .lbl { font-size: 12px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .5px; margin-top: 4px; }

/* LOGIN */
.login-wrap { padding: 64px 0; min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-pale); }
.login-card { width: 100%; max-width: 440px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 36px; }
.login-tabs { display: flex; border-bottom: 1px solid var(--border);
  margin-bottom: 24px; }
.login-tab { flex: 1; text-align: center; padding: 12px;
  font-size: 14px; font-weight: 600; color: var(--text-muted);
  cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.login-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.login-card h1 { font-size: 22px; font-weight: 800;
  color: var(--blue); margin-bottom: 4px; text-align: center; }
.login-card .sub { color: var(--text-muted); font-size: 13px;
  text-align: center; margin-bottom: 24px; }
.login-row { display: flex; justify-content: space-between;
  align-items: center; margin: -2px 0 14px; }
.checkbox-line { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.checkbox-line input { width: 14px; height: 14px; accent-color: var(--blue-mid); }
.login-divider { display: flex; align-items: center;
  gap: 12px; margin: 22px 0; color: var(--text-muted); font-size: 12px; }
.login-divider::before, .login-divider::after { content: "";
  flex: 1; height: 1px; background: var(--border); }
.social-btn { width: 100%; height: 44px; border: 1.5px solid var(--border);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; gap: 10px; font-size: 14px;
  font-weight: 600; color: var(--text); margin-bottom: 10px; cursor: pointer; }
.social-btn:hover { border-color: var(--blue-mid); }

/* ACCOUNT */
.account-grid { display: grid; grid-template-columns: 280px 1fr;
  gap: 28px; padding: 32px 0 80px; }
.account-side { background: #fff; border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; }
.account-head { padding: 28px 22px; background: var(--blue);
  color: #fff; display: flex; gap: 14px; align-items: center; }
.avatar { width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; flex-shrink: 0; }
.account-head .n { font-weight: 700; font-size: 14px; }
.account-head .e { font-size: 12px; color: var(--text-light); }
.account-menu { padding: 12px; display: flex; flex-direction: column; gap: 2px; }
.account-link { display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: 8px; font-size: 14px;
  color: var(--text); cursor: pointer; }
.account-link:hover { background: var(--blue-pale); color: var(--blue); }
.account-link.active { background: var(--blue-pale); color: var(--blue); font-weight: 600; }
.account-link .ic { font-size: 16px; }
.account-main { background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; }

.order-table { width: 100%; border-collapse: collapse; }
.order-table th { font-size: 12px; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: .5px; text-align: left; padding: 10px 12px;
  border-bottom: 1px solid var(--border); }
.order-table td { padding: 14px 12px; border-bottom: 1px solid var(--border);
  font-size: 13.5px; color: var(--text); }

/* B2B */
.b2b-hero { background: linear-gradient(135deg, #15375a 0%, #1F4E79 50%, #2E75B6 100%);
  color: #fff; padding: 96px 0; position: relative; overflow: hidden; }
.b2b-hero h1 { font-size: 52px; font-weight: 800;
  letter-spacing: -1px; line-height: 1.05; margin-bottom: 16px; }
.b2b-hero .lead { font-size: 17px; color: var(--text-light);
  max-width: 580px; margin-bottom: 32px; }
.b2b-grid { display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; padding-top: 8px; }
.b2b-card { padding: 28px; background: #fff;
  border: 1px solid var(--border); border-radius: 12px; }
.b2b-card .ic { width: 48px; height: 48px;
  background: var(--blue-pale); color: var(--blue);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 16px; }
.b2b-card h4 { font-size: 15px; font-weight: 700;
  color: var(--blue); margin-bottom: 6px; }
.b2b-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* PROMO */
.promo-hero { background: linear-gradient(135deg, #B91C1C 0%, #DC2626 50%, #EF4444 100%);
  color: #fff; padding: 64px 0; }
.promo-hero h1 { font-size: 44px; font-weight: 800;
  letter-spacing: -.8px; line-height: 1.05; margin-bottom: 12px; }
.promo-hero p { font-size: 16px; opacity: .95; margin-bottom: 28px; }
.countdown { display: flex; gap: 12px; }
.cd-cell { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px; padding: 14px 22px; min-width: 88px; text-align: center; }
.cd-num { font-size: 30px; font-weight: 800; line-height: 1; }
.cd-lbl { font-size: 11px; text-transform: uppercase;
  letter-spacing: 1.5px; opacity: .85; margin-top: 6px; }

/* NEWS */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card { background: #fff; border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; cursor: pointer;
  transition: border-color .2s ease, transform .2s ease; }
.news-card:hover { border-color: var(--blue-mid); transform: translateY(-3px); }
.news-img { height: 180px; background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center; font-size: 56px; }
.news-body { padding: 22px; }
.news-date { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.news-card h3 { font-size: 16px; color: var(--blue);
  font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.news-card p { font-size: 13px; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 14px; }
.news-card .more { color: var(--blue-mid);
  font-weight: 600; font-size: 13px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; padding: 32px 0 80px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; align-content: start; }
.contact-card { padding: 22px; background: #fff;
  border: 1px solid var(--border); border-radius: 12px; }
.contact-card .ic { font-size: 28px; margin-bottom: 12px; }
.contact-card h4 { font-size: 13px; color: var(--blue);
  font-weight: 700; margin-bottom: 6px; }
.contact-card p { font-size: 13px; color: var(--text); line-height: 1.5; }
