/* ==========================================================================
   AKNAS — shop, search, and the flat pages (about, contact, thank you, 404)
   Same four signatures as the homepage: hairline grids, one inverted band per
   page, no radius, no shadow, oxblood only on money.
   ========================================================================== */

/* ── page head ────────────────────────────────────────────────────────── */
.akn-phead { padding: clamp(34px,4.4vw,72px) var(--akn-pad) clamp(24px,3vw,40px); }
.akn-phead .akn-lbl { color: var(--akn-grey); }
.akn-phead h1 { font-size: clamp(38px,6vw,86px); margin: 16px 0 0; }
.akn-phead h1 i { font-style: italic; color: var(--akn-grey); }
.akn-phead p { color: var(--akn-soft); margin-top: 18px; max-width: 46ch; font-size: 15.5px; line-height: 1.64; }
.akn-phead--rule { border-bottom: 1px solid var(--akn-line); }

/* ── shop toolbar: count, categories, sort ────────────────────────────── */
.akn-tools {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px;
  border-block: 1px solid var(--akn-line);
  padding: 13px var(--akn-pad);
}
.akn-tools .akn-count { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--akn-grey); }
/* Horizontal chip scroller. flex-shrink:0 is the whole trick: flex items shrink
   by default, and with `white-space: nowrap` a squashed chip does not wrap — its
   label just overflows the box and lands on top of the next chip. With eight
   categories on a phone that is exactly what happened. */
.akn-cats {
  display: flex; gap: 8px; margin-right: auto;
  overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  max-width: 100%;
}
.akn-cats::-webkit-scrollbar { display: none; }
.akn-cats a {
  flex: 0 0 auto; scroll-snap-align: start;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--akn-soft); white-space: nowrap;
  border: 1px solid var(--akn-line); padding: 9px 15px; transition: .16s;
}

/* On a phone the chips get the full width and their own row; the count and the
   sort select drop underneath rather than fighting for the same line. The strip
   bleeds to the page edge so it reads as scrollable. */
@media (max-width: 767px) {
  .akn-tools { gap: 12px; padding: 12px 0; }
  .akn-cats {
    flex: 1 1 100%;
    padding: 0 var(--akn-pad);
    scroll-padding-left: var(--akn-pad);
  }
  .akn-tools .akn-count,
  .akn-tools .akn-sort { padding-inline: var(--akn-pad); }
  .akn-tools .akn-count { margin-right: auto; }
  .akn-sort select { max-width: 46vw; }
}
.akn-cats a:hover { border-color: var(--akn-soft); color: var(--akn-ink); }
.akn-cats a.akn-on { background: var(--akn-ink); color: var(--akn-paper); border-color: var(--akn-ink); }
.akn-sort { display: inline-flex; align-items: center; gap: 10px; }
.akn-sort label { font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--akn-grey); }
.akn-sort select {
  border: 1px solid var(--akn-line); background: var(--akn-paper);
  padding: 9px 12px; font-family: Jost, system-ui, sans-serif; font-size: 12px;
  letter-spacing: .1em; color: var(--akn-ink);
}

/* ── product grid ─────────────────────────────────────────────────────────
   Hairline grid, same as trust/proof: 1px gap over --akn-line, cells on paper.
   No cards. 2 up on a phone, because a one-up column on a clothing store makes
   the buyer scroll for a minute to see six pieces. */
.akn-grid {
  display: grid; gap: 1px; background: var(--akn-line);
  border-block: 1px solid var(--akn-line);
  grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (min-width: 700px)  { .akn-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1100px) { .akn-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.akn-grid .akn-pc { background: var(--akn-paper); padding: var(--akn-gpad); }
.akn-grid .akn-pc-meta { padding-top: 14px; }

/* ── pagination ───────────────────────────────────────────────────────── */
.akn-pager { display: flex; flex-wrap: wrap; gap: 7px; padding: clamp(28px,3vw,42px) var(--akn-pad); }
.akn-pager a, .akn-pager span {
  min-width: 44px; padding: 12px 10px; text-align: center;
  border: 1px solid var(--akn-line);
  font-size: 12px; letter-spacing: .1em; color: var(--akn-soft); transition: .16s;
}
.akn-pager a:hover { border-color: var(--akn-ink); color: var(--akn-ink); }
.akn-pager .current { background: var(--akn-ink); color: var(--akn-paper); border-color: var(--akn-ink); }

/* ── search page ──────────────────────────────────────────────────────── */
.akn-searchpage { padding: clamp(30px,4vw,60px) var(--akn-pad) clamp(20px,2.4vw,32px); }
.akn-searchpage .akn-searchform { padding: 0; margin-top: 22px; }
.akn-searchpage .akn-searchform input[type="search"] { font-size: clamp(24px,4.4vw,44px); }
.akn-terms { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 24px; }
.akn-terms .akn-lbl { color: var(--akn-grey); margin-right: 4px; }
.akn-terms a {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--akn-soft); border-bottom: 1px solid var(--akn-oxblood); padding-bottom: 3px;
}
.akn-terms a:hover { color: var(--akn-ink); }

/* ── notice: 404, no results, empty state ─────────────────────────────── */
.akn-notice { padding: clamp(52px,8vw,120px) var(--akn-pad); position: relative; overflow: clip; }
.akn-notice-ghost {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Bodoni Moda', Didot, Georgia, serif; font-weight: 400;
  font-size: clamp(120px,30vw,380px); line-height: .78; letter-spacing: .02em;
  color: var(--akn-ghost); white-space: nowrap;
  user-select: none; pointer-events: none; z-index: 0;
}
.akn-notice-in { position: relative; z-index: 1; max-width: 46ch; }
.akn-notice .akn-lbl { color: var(--akn-oxblood); }
.akn-notice h1 { font-size: clamp(38px,6.4vw,80px); margin: 16px 0 0; }
.akn-notice h1 i { font-style: italic; color: var(--akn-grey); }
.akn-notice p { color: var(--akn-soft); margin-top: 20px; font-size: 15.5px; line-height: 1.64; }
.akn-notice-act { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

/* ── about ────────────────────────────────────────────────────────────── */
.akn-split { display: grid; border-top: 1px solid var(--akn-line); }
.akn-split-shot { aspect-ratio: 4/5; background: var(--akn-paper-2); overflow: hidden; }
.akn-split-body { padding: clamp(32px,4vw,66px) var(--akn-pad); }
.akn-split-body .akn-lbl { color: var(--akn-grey); }
.akn-split-body h2 { font-size: clamp(30px,4.2vw,52px); margin: 14px 0 0; }
.akn-split-body h2 i { font-style: italic; color: var(--akn-grey); }
.akn-split-body p { color: var(--akn-soft); margin-top: 18px; max-width: 44ch; font-size: 15px; line-height: 1.68; }
.akn-split-body p + p { margin-top: 14px; }
@media (min-width: 940px) {
  .akn-split { grid-template-columns: 1fr 1fr; }
  .akn-split-shot { aspect-ratio: auto; min-height: 620px; }
  .akn-split-body { border-left: 1px solid var(--akn-line); align-self: center; }
  .akn-split--flip .akn-split-shot { order: 2; border-left: 1px solid var(--akn-line); }
  .akn-split--flip .akn-split-body { border-left: 0; }
}

/* numbers strip — the plain-claim version of a stats block */
.akn-figs { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--akn-line); border-block: 1px solid var(--akn-line); }
@media (min-width: 820px) { .akn-figs { grid-template-columns: repeat(4,1fr); } }
.akn-fig { background: var(--akn-paper); padding: clamp(26px,2.8vw,38px) var(--akn-gpad); }
.akn-fig b { display: block; font-family: 'Bodoni Moda', Didot, Georgia, serif; font-weight: 400; font-size: clamp(30px,3.6vw,44px); line-height: .94; }
.akn-fig span { display: block; margin-top: 10px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--akn-grey); }

/* ── contact ──────────────────────────────────────────────────────────── */
.akn-contact { display: grid; gap: clamp(30px,4vw,54px); padding: clamp(30px,4vw,60px) var(--akn-pad) clamp(50px,6vw,90px); }
@media (min-width: 940px) { .akn-contact { grid-template-columns: .85fr 1.15fr; align-items: start; } }
.akn-chan { border-top: 1px solid var(--akn-line); }
.akn-chan li { display: grid; grid-template-columns: 22px minmax(0,1fr); gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--akn-line); align-items: start; }
.akn-chan .akn-ico { color: var(--akn-soft); margin-top: 2px; }
.akn-chan h4 { font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--akn-grey); }
.akn-chan a, .akn-chan .akn-val { display: block; margin-top: 6px; font-family: 'Bodoni Moda', Didot, Georgia, serif; font-size: 19px; color: var(--akn-ink); }
.akn-chan a:hover { color: var(--akn-oxblood); }
.akn-chan small { display: block; margin-top: 5px; font-size: 12.5px; color: var(--akn-grey); line-height: 1.6; }
.akn-form { border: 1px solid var(--akn-line); padding: clamp(22px,2.6vw,34px); }
.akn-form h3 { font-family: 'Bodoni Moda', Didot, Georgia, serif; font-weight: 400; font-size: clamp(22px,2.6vw,30px); margin-bottom: 6px; }
.akn-form > p { font-size: 13.5px; color: var(--akn-grey); line-height: 1.6; margin-bottom: 22px; }
.akn-field { margin-bottom: 16px; }
.akn-field label { display: block; font-size: 10px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--akn-grey); margin-bottom: 8px; }
.akn-field input, .akn-field select, .akn-field textarea {
  width: 100%; background: var(--akn-paper); border: 1px solid var(--akn-line);
  padding: 14px 15px; font-family: Jost, system-ui, sans-serif; font-weight: 300;
  font-size: 15px; color: var(--akn-ink); transition: border-color .18s;
}
.akn-field textarea { min-height: 130px; resize: vertical; }
.akn-field input:focus, .akn-field select:focus, .akn-field textarea:focus { border-color: var(--akn-ink); outline: none; }
.akn-form-msg { font-size: 13px; line-height: 1.6; margin-bottom: 16px; padding: 13px 15px; border: 1px solid var(--akn-line); border-top: 1px solid var(--akn-oxblood); background: var(--akn-paper-2); color: var(--akn-soft); }
.akn-hp { position: absolute; left: -9999px; }

/* map / hours block */
.akn-map { margin-top: 26px; border: 1px solid var(--akn-line); aspect-ratio: 16/9; overflow: hidden; }
.akn-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── thank you ────────────────────────────────────────────────────────── */
.akn-ty { padding: clamp(40px,5vw,84px) var(--akn-pad) clamp(50px,6vw,90px); }
.akn-ty-head { max-width: 48ch; }
.akn-ty-head .akn-lbl { color: var(--akn-oxblood); }
.akn-ty-head h1 { font-size: clamp(36px,5.4vw,72px); margin: 16px 0 0; }
.akn-ty-head h1 i { font-style: italic; color: var(--akn-grey); }
.akn-ty-head p { color: var(--akn-soft); margin-top: 20px; font-size: 15.5px; line-height: 1.64; }
.akn-ty-facts { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--akn-line); border: 1px solid var(--akn-line); margin-top: clamp(30px,3.4vw,46px); }
@media (min-width: 820px) { .akn-ty-facts { grid-template-columns: repeat(4,1fr); } }
.akn-ty-facts div { background: var(--akn-paper); padding: clamp(20px,2.2vw,28px) var(--akn-gpad); }
.akn-ty-facts .akn-lbl { color: var(--akn-grey); }
.akn-ty-facts b { display: block; margin-top: 9px; font-family: 'Bodoni Moda', Didot, Georgia, serif; font-weight: 400; font-size: 20px; }
.akn-ty-next { margin-top: clamp(30px,3.4vw,46px); border-top: 1px solid var(--akn-line); max-width: 62ch; }
.akn-ty-next li { display: grid; grid-template-columns: 34px minmax(0,1fr); gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--akn-line); font-size: 14.5px; color: var(--akn-soft); line-height: 1.6; }
.akn-ty-next li i { font-style: normal; font-family: 'Bodoni Moda', Didot, Georgia, serif; font-size: 17px; color: var(--akn-grey); }
.akn-ty-act { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(28px,3vw,40px); }
.akn-ty .woocommerce-order-details, .akn-ty .woocommerce-customer-details { margin-top: clamp(34px,4vw,56px); }
