/*
Theme Name: Zelax
Theme URI: https://zelax.com
Author: Zelax
Description: Original Zelax storefront theme. Calm, spacious, commerce-first. Presentation only — business logic lives in zelax-core.
Version: 0.9.1
Requires PHP: 8.1
License: Proprietary
Text Domain: zelax
*/

:root {
  --z-bg: #ffffff;
  --z-ink: #111114;
  --z-ink-soft: #55555e;
  --z-line: #e6e6ea;
  --z-accent: #FFDE59;
  --z-accent-ink: #111114;
  --z-red: #e51c21;
  --z-cream: #FFF9E8;
  --z-radius: 10px;
  --z-max: 1200px;
  --z-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--z-font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--z-ink);
  background: var(--z-cream);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { opacity: .8; }

.z-wrap { max-width: var(--z-max); margin: 0 auto; padding: 0 24px; }

/* ============ Site frame (Solution B): header + tape ============ */
.zb-hd { background: var(--z-cream); border-bottom: 2px solid var(--z-ink); position: sticky; top: 0; z-index: 50; }
body.admin-bar .zb-hd { top: 32px; }
.zb-hd-in { max-width: var(--z-max); margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.zb-nav { display: flex; gap: 24px; align-items: center; font-size: 15px; font-weight: 700; }
.zb-right { margin-left: auto; display: flex; align-items: center; gap: 20px; font-size: 15px; font-weight: 700; }
.zb-iclink { display: inline-flex; align-items: center; gap: 6px; }
.zb-ic { display: inline-block; width: 20px; height: 20px; background-repeat: no-repeat; background-size: contain; }
.zb-ic-search { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111114' stroke-width='2.4'><circle cx='10.5' cy='10.5' r='6.5'/><path d='M15.5 15.5 L21 21'/></svg>"); }
.zb-ic-cart { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111114' stroke-width='2.2'><path d='M2 3h3l2.6 12.5a1.5 1.5 0 0 0 1.5 1.2h8.6a1.5 1.5 0 0 0 1.5-1.2L21 7H6'/><circle cx='9.5' cy='20' r='1.6' fill='%23111114'/><circle cx='17.5' cy='20' r='1.6' fill='%23111114'/></svg>"); }
.zb-cart-n { background: var(--z-accent); border: 2px solid var(--z-ink); border-radius: 999px; padding: 0 8px; font-weight: 800; font-size: 12.5px; }
.zb-tape { background: var(--z-ink); color: var(--z-accent); font-weight: 800; font-size: 13.5px; letter-spacing: .08em; padding: 9px 0; white-space: nowrap; overflow: hidden; }

/* Hero */
.z-hero { padding: 96px 0 72px; text-align: center; }
.z-hero h1 {
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  font-weight: 800;
}
.z-hero p { font-size: 20px; color: var(--z-ink-soft); margin: 0 auto 36px; max-width: 560px; }
.z-cta { display: inline-block; padding: 14px 30px; border-radius: var(--z-radius); font-weight: 600; font-size: 16px; }
.z-cta-primary { background: var(--z-accent); color: var(--z-accent-ink); }
.z-cta-secondary { color: var(--z-ink); margin-left: 16px; }

/* Sections */
.z-section { padding: 64px 0; }
.z-section-title { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 32px; }
.z-divider { border: 0; border-top: 1px solid var(--z-line); margin: 0; }

/* Product grids (WooCommerce) */
.woocommerce ul.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin: 0; padding: 0; list-style: none; }
.woocommerce ul.products li.product { text-align: left; }
.woocommerce ul.products li.product img { border-radius: var(--z-radius); border: 1px solid var(--z-line); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 16px; font-weight: 600; margin-top: 12px; }
.woocommerce ul.products li.product .price { color: var(--z-ink-soft); font-size: 15px; }
.woocommerce ul.products li.product .button { display: none; }
@media (max-width: 900px) { .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .woocommerce ul.products { grid-template-columns: 1fr; gap: 20px; } }

/* Woo general */
.woocommerce .z-wrap { padding-top: 40px; padding-bottom: 64px; }
.woocommerce button.button, .woocommerce a.button, .woocommerce input.button, .woocommerce #respond input#submit {
  background: var(--z-accent); color: var(--z-accent-ink); border-radius: var(--z-radius);
  font-weight: 600; padding: 12px 24px; border: 0;
}
.woocommerce nav.woocommerce-pagination ul { border: 0; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }

/* Content pages */
.z-content { max-width: 720px; margin: 0 auto; padding: 56px 24px 88px; }
.z-content h1 { font-size: 36px; letter-spacing: -0.02em; }

/* ============ Site frame (Solution B): ribbon + footer ============ */
.zb-ribbon { display: grid; grid-template-columns: repeat(6, 1fr); height: 12px; margin-top: 64px; }
.zb-ribbon i { display: block; }
.p-dots { background: #1c1c26; background-image: radial-gradient(#fff 2.6px, transparent 3.1px); background-size: 26px 26px; }
.p-candy { background: repeating-linear-gradient(45deg, #e51c21 0 16px, #fff 16px 32px, #FFDE59 32px 48px); }
.p-y2k { background: conic-gradient(#ff6ec7 0 25%, #fff 0 50%, #ff6ec7 0 75%, #fff 0 100%); background-size: 38px 38px; }
.p-gal { background: #141a3a; background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.95) 1.4px, transparent 2px), radial-gradient(circle at 70% 60%, rgba(255,222,89,.95) 1.3px, transparent 1.9px); background-size: 42px 42px, 56px 56px; }
.p-zod { background: #241a38; background-image: radial-gradient(circle at 30% 40%, #fff 1.6px, transparent 2.2px), radial-gradient(circle at 75% 25%, #FFDE59 1.5px, transparent 2.1px); background-size: 52px 52px, 64px 64px; }
.r-know { background: #1c1c26; background-image: repeating-linear-gradient(0deg, transparent 0 8px, rgba(255,222,89,.55) 8px 9px), repeating-linear-gradient(90deg, transparent 0 8px, rgba(255,222,89,.55) 8px 9px); }
.zb-ft { background: var(--z-ink); color: #d5d5dc; padding: 52px 0 36px; font-size: 14px; }
.zb-ft-in { max-width: var(--z-max); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.4fr; gap: 30px; }
.zb-ft h4 { color: var(--z-accent); font-size: 14.5px; margin: 0 0 10px; }
.zb-ft a { display: block; margin-bottom: 8px; }
.zb-socials { display: flex; flex-wrap: wrap; gap: 10px; max-width: 280px; }
.zb-socials a.zb-soc { display: inline-block; border: 2px solid #3a3a42; border-radius: 999px; padding: 6px 16px; font-weight: 700; font-size: 13.5px; color: #eee; margin: 0; }
.zb-apps { display: flex; gap: 16px; }
.zb-ft a.zb-appqr { display: flex; flex-direction: column; align-items: center; gap: 9px; margin: 0; }
.zb-appqr img { width: 88px; height: 88px; background: #fff; border: 2px solid #3a3a42; border-radius: 12px; padding: 5px; display: block; }
.zb-appqr span { border: 2px solid #3a3a42; border-radius: 999px; padding: 3px 14px; font-weight: 700; font-size: 12.5px; color: #eee; }
.zb-ft-note { max-width: var(--z-max); margin: 30px auto 0; padding: 0 24px; font-size: 12.5px; color: #8a8a94; }

@media (max-width: 900px) {
  .zb-hd-in { gap: 16px; }
  .zb-nav { gap: 16px; font-size: 14px; }
  .zb-right { gap: 14px; font-size: 14px; }
  .zb-lbl { display: none; }
  .zb-ft-in { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 782px) {
  body.admin-bar .zb-hd { top: 46px; }
}
@media (max-width: 700px) {
  .z-hero { padding: 64px 0 48px; }
}
@media (max-width: 560px) {
  .zb-nav { gap: 12px; }
  .zb-hide-s { display: none; }
  .zb-ft-in { grid-template-columns: 1fr; gap: 26px; }
}

/* Logo image (header) */
img.z-logo-img { height: 44px !important; width: auto !important; max-width: none !important; display: block; }

/* Content tables */
.z-content table { border-collapse: collapse; width: 100%; margin: 16px 0; font-size: 15px; }
.z-content td, .z-content th { border: 1px solid var(--z-line); padding: 8px 10px; text-align: left; vertical-align: top; }

/* ============ Homepage (Solution B) ============ */
.zh-hero { padding: 56px 0 46px; }
.zh-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.zh-copy h1 { font-size: clamp(36px, 4.6vw, 56px); font-weight: 900; letter-spacing: -.03em; line-height: 1.16; margin: 0 0 18px; }
.zh-stick { display: inline-block; background: var(--z-accent); border: 2px solid var(--z-ink); border-radius: 999px; padding: 0 18px; transform: rotate(-2deg); box-shadow: 4px 4px 0 var(--z-ink); }
.zh-copy p { font-size: 18px; color: #55555e; margin: 0 0 26px; font-weight: 600; }
.zh-hint { font-size: 13.5px; color: #8a8a94; font-weight: 700; }
.zh-fan { position: relative; height: 400px; }
.zh-fcard { position: absolute; width: 240px; height: 310px; border: 2px solid var(--z-ink); border-radius: 18px; box-shadow: 8px 8px 0 var(--z-ink); overflow: hidden; background: #fff; display: block; }
img.zh-fimg { width: 100%; height: 100%; object-fit: contain; background: #fff; display: block; }
.zh-f1 { left: 2%; top: 52px; transform: rotate(-8deg); }
.zh-f2 { left: 30%; top: 8px; transform: rotate(2deg); z-index: 2; }
.zh-f3 { left: 58%; top: 60px; transform: rotate(9deg); }
.zh-new { position: absolute; top: 10px; right: 10px; z-index: 3; background: var(--z-accent); border: 2px solid var(--z-ink); border-radius: 999px; padding: 3px 14px; font-weight: 800; font-size: 13.5px; transform: rotate(6deg); box-shadow: 3px 3px 0 var(--z-ink); }
.zh-sec { padding: 64px 0; }
.zh-h2 { font-size: 30px; font-weight: 900; letter-spacing: -.02em; margin: 0; }
.zh-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 34px; }
.zh-scard { position: relative; background: #fff; border: 2px solid var(--z-ink); border-radius: 16px; box-shadow: 6px 6px 0 var(--z-ink); display: block; }
.zh-scard:nth-child(odd) { transform: rotate(-1.4deg); }
.zh-scard:nth-child(even) { transform: rotate(1.2deg); }
.zh-ptile { display: block; height: 150px; border-radius: 13px 13px 0 0; }
.zh-sname { position: absolute; top: 118px; left: 14px; background: var(--z-accent); border: 2px solid var(--z-ink); border-radius: 999px; padding: 1px 14px; font-weight: 800; font-size: 14.5px; transform: rotate(-2deg); box-shadow: 3px 3px 0 var(--z-ink); }
.zh-scard p { margin: 0; padding: 22px 16px 14px; font-size: 13.5px; color: #55555e; }
.zh-band { background: var(--z-accent); border-top: 2px solid var(--z-ink); border-bottom: 2px solid var(--z-ink); padding: 52px 0; text-align: center; }
.zh-numrow { display: flex; gap: 34px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.zh-num { width: 130px; height: 130px; border-radius: 50%; background: #fff; border: 2.5px solid var(--z-ink); box-shadow: 6px 6px 0 var(--z-ink); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.zh-num b { font-size: 34px; font-weight: 900; line-height: 1; }
.zh-num span { font-size: 12.5px; color: #55555e; font-weight: 700; margin-top: 5px; line-height: 1.3; }
.zh-seehead { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.zh-btn { display: inline-block; border: 2px solid var(--z-ink); border-radius: 999px; padding: 12px 28px; font-weight: 800; font-size: 15px; background: var(--z-accent); box-shadow: 4px 4px 0 var(--z-ink); text-align: center; }
.zh-btn-ghost { background: #fff; }
.zh-pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.zh-pcard { position: relative; background: #fff; border: 2px solid var(--z-ink); border-radius: 16px; box-shadow: 5px 5px 0 var(--z-ink); padding: 12px; display: flex; flex-direction: column; }
img.zh-pimg { width: 100%; height: 200px; object-fit: contain; background: #fff; border-radius: 10px; display: block; }
.zh-ptag { position: absolute; top: -10px; right: -8px; z-index: 2; background: var(--z-accent); border: 2px solid var(--z-ink); border-radius: 999px; padding: 2px 12px; font-weight: 800; font-size: 13.5px; transform: rotate(3deg); box-shadow: 3px 3px 0 var(--z-ink); }
.zh-pt { font-size: 14.5px; font-weight: 700; line-height: 1.35; margin-top: 10px; }
.zh-quote { max-width: 660px; margin: 0 auto; text-align: center; transform: rotate(-1deg); background: #fff; border: 2px solid var(--z-ink); border-radius: 18px; box-shadow: 6px 6px 0 var(--z-ink); padding: 38px 34px; }
.zh-quote h3 { font-size: 26px; font-weight: 900; margin: 0 0 10px; letter-spacing: -.02em; }
.zh-quote p { color: #55555e; margin: 0 0 20px; }
@media (max-width: 1020px) {
  .zh-grid { grid-template-columns: 1fr; gap: 26px; }
  .zh-fan { height: 300px; transform: scale(.72); transform-origin: top left; }
  .zh-wall { grid-template-columns: 1fr 1fr; }
  .zh-pgrid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 560px) {
  .zh-wall { grid-template-columns: 1fr; }
  .zh-num { width: 100px; height: 100px; }
  .zh-num b { font-size: 26px; }
  .zh-numrow { gap: 18px; }
  .zh-sec { padding: 44px 0; }
}

/* ============ Shop & category pages (Solution B) ============ */
.zc-crumb { max-width: var(--z-max); margin: 0 auto; padding: 16px 24px 0; font-size: 13px; color: #8a8a94; font-weight: 600; }
.zc-crumb b { color: var(--z-ink); }
.zc-head { max-width: var(--z-max); margin: 0 auto; padding: 28px 24px 6px; }
.zc-head h1 { font-size: 40px; font-weight: 900; letter-spacing: -.03em; margin: 0 0 6px; }
.zc-sub { color: #55555e; font-size: 16px; font-weight: 600; margin: 0; }
.zc-chips { max-width: var(--z-max); margin: 0 auto; padding: 22px 24px 4px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.zc-chip { border: 2px solid var(--z-ink); border-radius: 999px; padding: 8px 18px; font-size: 14px; font-weight: 800; background: #fff; display: inline-block; }
.zc-chip.on { background: var(--z-accent); box-shadow: 3px 3px 0 var(--z-ink); }
.zc-spacer { margin-left: auto; }
.zc-lbl { font-size: 12.5px; color: #8a8a94; font-weight: 700; }
.zc-count { max-width: var(--z-max); margin: 0 auto; padding: 14px 24px 18px; font-size: 13px; color: #8a8a94; font-weight: 700; }
.zc-wrap { max-width: var(--z-max); margin: 0 auto; padding: 0 24px 10px; }
.zc-pag { text-align: center; margin: 38px 0 10px; }
.zc-pag ul.page-numbers { list-style: none; display: inline-flex; gap: 10px; margin: 0; padding: 0; }
.zc-pag ul.page-numbers li { display: inline-block; }
.zc-pag a.page-numbers, .zc-pag span.page-numbers { display: inline-block; border: 2px solid var(--z-ink); border-radius: 999px; padding: 8px 16px; font-weight: 800; font-size: 14px; background: #fff; }
.zc-pag span.page-numbers.current { background: var(--z-accent); box-shadow: 3px 3px 0 var(--z-ink); }
.zc-empty { max-width: 560px; margin: 34px auto 14px; text-align: center; background: #fff; border: 2px solid var(--z-ink); border-radius: 18px; box-shadow: 6px 6px 0 var(--z-ink); padding: 38px 30px; transform: rotate(-1deg); }
.zc-empty h3 { font-size: 24px; font-weight: 900; margin: 0 0 8px; }
.zc-empty p { color: #55555e; margin: 0 0 20px; }
@media (max-width: 560px) {
  .zc-head h1 { font-size: 32px; }
  .zc-spacer { margin-left: 0; }
}

/* ============ Single product page (Solution B) ============ */
.zp-notices { max-width: var(--z-max); margin: 0 auto; padding: 0 24px; }
.zp-notices .woocommerce-message, .zp-notices .woocommerce-info, .zp-notices .woocommerce-error li, .zp-notices .woocommerce-error { background: #fff; border: 2px solid var(--z-ink); border-radius: 12px; padding: 12px 18px; margin: 14px 0 0; list-style: none; font-weight: 600; font-size: 14.5px; }
.zp-notices .woocommerce-message a.button, .zp-notices a.button, .zp-notices .wc-forward { float: right; background: var(--z-accent); border: 2px solid var(--z-ink); border-radius: 999px; padding: 4px 14px; font-weight: 800; font-size: 13px; margin-left: 12px; }
.zp { max-width: var(--z-max); margin: 0 auto; padding: 22px 24px 6px; display: grid; grid-template-columns: 52% 1fr; gap: 42px; align-items: start; }
.zp-main { border: 2px solid var(--z-ink); border-radius: 18px; box-shadow: 8px 8px 0 var(--z-ink); overflow: hidden; background: #fff; }
img.zp-mimg { width: 100%; height: 520px; object-fit: contain; background: #fff; display: block; }
.zp-thumbs { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.zp-thumb { width: 72px; height: 72px; border: 2px solid var(--z-ink); border-radius: 12px; overflow: hidden; background: #fff; padding: 0; cursor: pointer; box-shadow: 3px 3px 0 var(--z-ink); }
.zp-thumb:nth-child(odd) { transform: rotate(-2.5deg); }
.zp-thumb:nth-child(even) { transform: rotate(2deg); }
.zp-thumb.on { outline: 3px solid var(--z-accent); }
.zp-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.zp-buy { background: #fff; border: 2px solid var(--z-ink); border-radius: 20px; box-shadow: 8px 8px 0 var(--z-ink); padding: 28px; }
.zp-buy h1 { font-size: 24px; font-weight: 900; margin: 0 0 2px; line-height: 1.25; letter-spacing: -.01em; }
.zp-col { color: #55555e; font-size: 14px; font-weight: 600; }
.zp-price { display: inline-block; background: var(--z-accent); border: 2px solid var(--z-ink); border-radius: 999px; padding: 4px 20px; font-size: 22px; font-weight: 900; transform: rotate(-2deg); box-shadow: 4px 4px 0 var(--z-ink); margin: 16px 0 4px; }
.zp-optlab { font-weight: 900; font-size: 14.5px; margin: 20px 0 10px; }
.zp-lens { display: flex; gap: 12px; flex-wrap: wrap; }
.zp-len { width: 86px; height: 86px; border-radius: 50%; border: 2px solid var(--z-ink); background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #55555e; }
.zp-len b { font-size: 19px; font-weight: 900; line-height: 1.05; color: var(--z-ink); }
.zp-len span { font-size: 10.5px; font-weight: 700; line-height: 1.3; }
.zp-len.on { background: var(--z-accent); box-shadow: 4px 4px 0 var(--z-ink); color: var(--z-ink); }
.zp-cartform { display: flex; gap: 14px; align-items: end; margin: 24px 0 10px; flex-wrap: wrap; }
.zp-qtylab { display: block; font-size: 12.5px; font-weight: 800; color: #55555e; margin-bottom: 4px; }
.zp-qty { width: 84px; border: 2px solid var(--z-ink); border-radius: 12px; padding: 10px 12px; font-size: 16px; font-weight: 800; background: #fff; font-family: var(--z-font); }
.zp-add { flex: 1; min-width: 170px; border: 2px solid var(--z-ink); cursor: pointer; font-family: var(--z-font); }
.zp-stock { font-size: 13px; color: #0f7a3d; font-weight: 700; }
.zp-stock.zp-out { color: #b3541e; }
.zp-short { margin-top: 16px; font-size: 14.5px; color: #55555e; border-top: 2px dotted #e6ddc2; padding-top: 14px; }
.zp-sec { padding: 44px 0 0; }
.zp-sec:last-of-type { padding-bottom: 20px; }
.zp-about { max-width: 680px; font-size: 15.5px; margin-top: 16px; }
.zp-rows { max-width: 560px; margin-top: 16px; }
.zp-row { display: grid; grid-template-columns: 130px 1fr; padding: 10px 0; border-bottom: 2px dotted #e6ddc2; font-size: 14.5px; }
.zp-row b { font-weight: 800; }
.zp-revs { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 16px; }
.zp-rev { background: #fff; border: 2px solid var(--z-ink); border-radius: 14px; box-shadow: 4px 4px 0 var(--z-ink); padding: 18px; }
.zp-rev:nth-child(odd) { transform: rotate(-.8deg); }
.zp-rev:nth-child(even) { transform: rotate(.8deg); }
.zp-stars { color: #e8a000; letter-spacing: 2px; font-size: 14px; }
.zp-rev p { margin: 8px 0 10px; font-size: 14.5px; }
.zp-who { font-size: 12.5px; color: #8a8a94; font-weight: 700; }
.zp-norev { color: #8a8a94; font-weight: 600; margin-top: 14px; }
@media (max-width: 900px) {
  .zp { grid-template-columns: 1fr; gap: 26px; }
  img.zp-mimg { height: 380px; }
  .zp-revs { grid-template-columns: 1fr; }
}

/* ============ My Zelax account (Solution B) ============ */
.za-wrap { max-width: var(--z-max); margin: 0 auto; padding: 30px 24px 30px; }
.za-tabs { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin: 6px 0 30px; }
.za-tab { border: 2px solid var(--z-ink); border-radius: 999px; padding: 9px 22px; font-weight: 800; background: #fff; font-size: 14.5px; }
.za-tab.on { background: var(--z-accent); box-shadow: 3px 3px 0 var(--z-ink); }
.za-tab.za-out { margin-left: auto; }
.za-greet { padding: 8px 0 26px; }
.za-greet h1 { font-size: 34px; font-weight: 900; letter-spacing: -.02em; margin: 0 0 6px; }
.za-greet p { color: #55555e; margin: 0; font-size: 16px; font-weight: 600; }
.za-card { background: #fff; border: 2px solid var(--z-ink); border-radius: 18px; box-shadow: 6px 6px 0 var(--z-ink); padding: 24px; margin-bottom: 26px; }
.za-chead { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.za-chead b { font-size: 17px; font-weight: 900; }
.za-sm { padding: 7px 18px; font-size: 13px; }
.za-meta { font-size: 13.5px; color: #8a8a94; margin-top: 4px; font-weight: 600; }
.za-track { height: 18px; border: 2px solid var(--z-ink); border-radius: 999px; background: #fff; overflow: hidden; margin: 20px 0 8px; }
.za-track i { display: block; height: 100%; background: var(--z-accent); border-right: 2px solid var(--z-ink); }
.za-steps { display: flex; justify-content: space-between; font-size: 12.5px; color: #8a8a94; font-weight: 700; }
.za-steps .on { color: var(--z-ink); }
.za-items { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.za-item { border: 2px solid #e0d9c2; border-radius: 999px; padding: 5px 14px; font-size: 13px; font-weight: 700; background: #fff; }
.za-two { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.za-kv { font-size: 14.5px; margin-top: 10px; }
.za-del { display: inline-block; font-size: 12.5px; color: #8a8a94; text-decoration: underline; margin-top: 14px; }
.za-empty { text-align: center; }
.za-empty b { font-size: 20px; font-weight: 900; }
.za-empty p { color: #55555e; margin: 6px 0 18px; }
/* generic WooCommerce account elements inside the wrap */
.za-wrap input[type="text"], .za-wrap input[type="email"], .za-wrap input[type="password"], .za-wrap input[type="tel"], .za-wrap select, .za-wrap textarea { border: 2px solid var(--z-ink); border-radius: 12px; padding: 10px 14px; font-size: 15px; background: #fff; font-family: var(--z-font); width: 100%; max-width: 420px; }
.za-wrap button, .za-wrap .button, .za-wrap .woocommerce-Button { display: inline-block; border: 2px solid var(--z-ink); border-radius: 999px; padding: 11px 26px; font-weight: 800; font-size: 14.5px; background: var(--z-accent); box-shadow: 4px 4px 0 var(--z-ink); cursor: pointer; font-family: var(--z-font); }
.za-wrap fieldset { border: 0; padding: 0; margin: 22px 0 0; }
.za-wrap legend { font-weight: 900; font-size: 16px; }
.za-wrap .form-row { margin: 0 0 16px; }
.za-wrap label { display: block; font-size: 13px; font-weight: 800; margin-bottom: 5px; }
.za-wrap table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.za-wrap table th, .za-wrap table td { text-align: left; padding: 12px 10px; border-bottom: 2px dotted #e0d9c2; }
.za-wrap table th { font-weight: 900; }
.za-wrap .woocommerce-message, .za-wrap .woocommerce-info, .za-wrap .woocommerce-error, .za-wrap .woocommerce-error li { background: #fff; border: 2px solid var(--z-ink); border-radius: 12px; padding: 12px 18px; margin: 0 0 18px; list-style: none; font-weight: 600; font-size: 14.5px; }
.za-wrap form.woocommerce-form-login, .za-wrap form.woocommerce-form-register { max-width: 440px; margin: 10px auto 20px; background: #fff; border: 2px solid var(--z-ink); border-radius: 18px; box-shadow: 6px 6px 0 var(--z-ink); padding: 28px; }
.za-wrap .u-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.za-wrap .woocommerce-address-fields, .za-wrap .edit-account { max-width: 520px; }
@media (max-width: 760px) {
  .za-two { grid-template-columns: 1fr; }
  .za-tab.za-out { margin-left: 0; }
  .za-wrap .u-columns { grid-template-columns: 1fr; }
}

/* login/register: force the two cards side by side (Woo layout CSS resets) */
.za-wrap .u-columns, .za-wrap #customer_login { display: grid !important; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; width: 100%; }
.za-wrap .u-columns::before, .za-wrap .u-columns::after, .za-wrap #customer_login::before, .za-wrap #customer_login::after { content: none; }
.za-wrap .u-column1, .za-wrap .u-column2, .za-wrap #customer_login .col-1, .za-wrap #customer_login .col-2 { float: none; width: auto; max-width: none; margin: 0; }
.za-wrap .u-columns h2, .za-wrap #customer_login h2 { font-size: 26px; font-weight: 900; letter-spacing: -.02em; text-transform: lowercase; margin: 0 0 14px; }
.za-wrap form.woocommerce-form-login, .za-wrap form.woocommerce-form-register { margin: 0; }
.za-wrap .password-input { position: relative; display: block; width: 100%; max-width: 420px; }
.za-wrap .password-input input { max-width: 100%; padding-right: 46px; }
.za-wrap .show-password-input { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); }
@media (max-width: 760px) {
  .za-wrap .u-columns, .za-wrap #customer_login { grid-template-columns: 1fr; }
}

