/* ============================================================
   DAWN — Additional Pages CSS
   cart · checkout · account · blog · search · 404 · single
   ============================================================ */

/* ── CART PAGE ────────────────────────────────────────────── */
.cart-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 40px 80px;
  flex: 1;
}
.cart-page__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.cart-page__count {
  font-size: .85rem;
  color: var(--color-base-text-light);
  margin-bottom: 40px;
}
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.cart-table-head {
  display: grid;
  grid-template-columns: 1fr 140px 120px 80px;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--color-base-text);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}
.cart-table-head .col-qty,
.cart-table-head .col-price,
.cart-table-head .col-total { text-align: center; }
.cart-table-head .col-remove { text-align: right; }

.cart-row {
  display: grid;
  grid-template-columns: 1fr 140px 120px 80px;
  gap: 16px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}
.ci-product { display: flex; gap: 20px; align-items: flex-start; }
.ci-image {
  width: 100px; height: 120px;
  border-radius: var(--border-radius);
  overflow: hidden; flex-shrink: 0; background: #f5f5f5;
}
.ci-image img { width: 100%; height: 100%; object-fit: cover; }
.ci-vendor { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--color-base-text-light); margin-bottom: 4px; }
.ci-name { font-size: .95rem; font-weight: 600; line-height: 1.35; margin-bottom: 6px; }
.ci-name a:hover { text-decoration: underline; text-underline-offset: 3px; }
.ci-variant { font-size: .78rem; color: var(--color-base-text-light); margin-bottom: 12px; }
.ci-edit { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; border-bottom: 1px solid var(--color-border); padding-bottom: 1px; color: var(--color-base-text-light); transition: color var(--transition); }
.ci-edit:hover { color: var(--color-base-text); }
.ci-price { text-align: center; }
.ci-price .price { font-size: .92rem; font-weight: 600; }
.ci-price .compare { font-size: .78rem; color: var(--color-base-text-light); text-decoration: line-through; }
.ci-qty { display: flex; justify-content: center; }
.qty-wrap { display: flex; align-items: center; border: 1.5px solid var(--color-border); border-radius: var(--border-radius); overflow: hidden; width: fit-content; }
.qb { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: background var(--transition); font-weight: 300; }
.qb:hover { background: var(--color-base-background-2); }
.qv { width: 40px; text-align: center; font-size: .9rem; font-weight: 700; border: none; outline: none; font-family: inherit; background: transparent; }
.ci-total { text-align: right; }
.ci-total .price { font-size: .95rem; font-weight: 700; }
.ci-remove-btn {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-base-text-light); transition: all var(--transition); margin-left: auto;
}
.ci-remove-btn:hover { background: var(--color-sale); color: #fff; }
.ci-remove-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* Upsell */
.cart-upsell { margin-top: 32px; padding: 20px; background: var(--color-base-background-2); border-radius: 4px; }
.cart-upsell h4 { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.upsell-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.upsell-item { background: #fff; border: 1px solid var(--color-border); border-radius: var(--border-radius); padding: 12px; display: flex; gap: 12px; align-items: center; transition: box-shadow var(--transition); }
.upsell-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.upsell-img { width: 52px; height: 62px; border-radius: 2px; overflow: hidden; flex-shrink: 0; background: #f5f5f5; }
.upsell-img img { width: 100%; height: 100%; object-fit: cover; }
.upsell-name { font-size: .78rem; font-weight: 600; line-height: 1.3; margin-bottom: 4px; }
.upsell-price { font-size: .75rem; color: var(--color-base-text-light); margin-bottom: 8px; }
.upsell-add { font-size: .68rem; letter-spacing: .08em; font-weight: 700; text-transform: uppercase; padding: 5px 10px; border: 1.5px solid var(--color-accent); border-radius: var(--border-radius); transition: all var(--transition); display: inline-block; }
.upsell-add:hover { background: var(--color-accent); color: #fff; }

/* Order Summary */
.order-summary {
  background: var(--color-base-background-2); border-radius: 4px; padding: 32px;
  position: sticky; top: calc(var(--header-height) + 24px);
}
.order-summary h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 400; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--color-border); }
.summary-rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; font-size: .88rem; }
.summary-row .label { color: var(--color-base-text-light); }
.summary-row .val { font-weight: 600; }
.summary-row.total { border-top: 2px solid var(--color-base-text); padding-top: 16px; margin-top: 4px; font-size: 1rem; }
.summary-row.total .val { font-family: var(--font-heading); font-size: 1.3rem; }
.coupon-row { display: flex; gap: 0; margin-bottom: 20px; }
.coupon-input { flex: 1; padding: 11px 14px; border: 1.5px solid var(--color-border); border-right: none; border-radius: var(--border-radius) 0 0 var(--border-radius); font-family: inherit; font-size: .85rem; outline: none; transition: border-color var(--transition); }
.coupon-input:focus { border-color: var(--color-accent); }
.coupon-btn { padding: 11px 18px; background: var(--color-base-text); color: #fff; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-radius: 0 var(--border-radius) var(--border-radius) 0; transition: background var(--transition); }
.coupon-btn:hover { background: var(--color-accent-hover); }
.checkout-primary-btn {
  width: 100%; padding: 16px; background: var(--color-accent); color: #fff;
  font-family: var(--font-body); font-size: .85rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--border-radius); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background var(--transition); margin-bottom: 12px;
}
.checkout-primary-btn:hover { background: var(--color-accent-hover); }
.checkout-primary-btn svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 1.5; }
.summary-trust { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.trust-line { display: flex; align-items: center; gap: 8px; font-size: .75rem; color: var(--color-base-text-light); }
.trust-line svg { width: 14px; height: 14px; stroke: var(--color-success); fill: none; stroke-width: 1.5; flex-shrink: 0; }

/* Cart note */
.cart-note-wrap { margin-top: 24px; }
.cart-note-wrap label { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; display: block; margin-bottom: 8px; }
.cart-note-textarea { width: 100%; padding: 12px; border: 1.5px solid var(--color-border); border-radius: var(--border-radius); font-size: .85rem; font-family: inherit; outline: none; resize: vertical; min-height: 80px; transition: border-color var(--transition); }
.cart-note-textarea:focus { border-color: var(--color-accent); }

/* ── CHECKOUT PAGE ────────────────────────────────────────── */
body.woocommerce-checkout { background: var(--color-base-background-2); }
.chk-header { background: #fff; border-bottom: 1px solid var(--color-border); padding: 18px 40px; }
.chk-header-in { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.chk-logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 400; letter-spacing: .06em; }
.chk-secure { display: flex; align-items: center; gap: 6px; font-size: .72rem; color: var(--color-base-text-light); letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
.chk-secure svg { width: 14px; height: 14px; stroke: var(--color-success); fill: none; stroke-width: 1.5; }

.chk-progress { background: #fff; border-bottom: 1px solid var(--color-border); padding: 0 40px; }
.chk-progress-in { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; }
.step-item { display: flex; align-items: center; gap: 8px; padding: 18px 20px 18px 0; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--color-base-text-light); }
.step-item:not(:last-child)::after { content: '›'; margin-right: 20px; font-size: 1rem; color: var(--color-border); font-weight: 300; }
.step-num { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--color-border); display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; flex-shrink: 0; transition: all var(--transition); }
.step-item.active { color: var(--color-base-text); }
.step-item.active .step-num { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.step-item.done { color: var(--color-success); }
.step-item.done .step-num { background: var(--color-success); border-color: var(--color-success); color: #fff; }

.chk-layout { max-width: 1200px; margin: 0 auto; padding: 40px 40px 80px; display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: start; }
.chk-panel { background: #fff; border-radius: 8px; border: 1px solid var(--color-border); overflow: hidden; margin-bottom: 16px; }
.chk-panel__head { padding: 20px 28px; border-bottom: 1px solid var(--color-border); display: flex; align-items: center; justify-content: space-between; }
.chk-panel__title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 400; }
.chk-panel__badge { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; background: var(--color-base-background-2); padding: 3px 10px; border-radius: 20px; color: var(--color-base-text-light); }
.chk-panel__body { padding: 24px 28px; }

.express-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 20px; }
.express-btn { padding: 12px; border: 1.5px solid var(--color-border); border-radius: var(--border-radius); font-size: .82rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 6px; transition: all var(--transition); cursor: pointer; }
.express-btn:hover { border-color: var(--color-accent); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.express-btn.paypal { background: #FFC439; border-color: #F0B429; }
.express-btn.apple { background: #000; color: #fff; border-color: #000; }

.form-divider { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.form-divider::before,.form-divider::after { content: ''; flex: 1; height: 1px; background: var(--color-border); }
.form-divider span { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--color-base-text-light); font-weight: 600; white-space: nowrap; }

.form-row-chk { display: grid; gap: 16px; margin-bottom: 16px; }
.form-row-chk.cols-2 { grid-template-columns: 1fr 1fr; }
.form-row-chk.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-group-chk { display: flex; flex-direction: column; gap: 6px; }
.form-label-chk { font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.form-input-chk, .form-select-chk {
  padding: 12px 14px; border: 1.5px solid var(--color-border); border-radius: var(--border-radius);
  font-size: .9rem; font-family: inherit; outline: none; transition: all var(--transition); background: #fff; width: 100%;
}
.form-input-chk:focus,.form-select-chk:focus { border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(26,26,26,.06); }

.ship-options { display: flex; flex-direction: column; gap: 10px; }
.ship-option { border: 1.5px solid var(--color-border); border-radius: var(--border-radius); padding: 14px 16px; cursor: pointer; transition: all var(--transition); display: flex; align-items: center; gap: 12px; }
.ship-option:hover { border-color: var(--color-accent); }
.ship-option.selected { border-color: var(--color-accent); background: rgba(26,26,26,.02); }
.ship-radio { width: 18px; height: 18px; border: 1.5px solid var(--color-border); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.ship-option.selected .ship-radio { border-color: var(--color-accent); }
.ship-option.selected .ship-radio::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--color-accent); }
.ship-info { flex: 1; }
.ship-name { font-size: .88rem; font-weight: 600; }
.ship-desc { font-size: .75rem; color: var(--color-base-text-light); margin-top: 2px; }
.ship-price { font-size: .88rem; font-weight: 700; }

/* Checkout Order Summary */
.chk-summary { background: #fff; border-radius: 8px; border: 1px solid var(--color-border); padding: 28px; position: sticky; top: 120px; }
.chk-summary h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 400; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--color-border); }
.chk-item { display: flex; gap: 14px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--color-border); }
.chk-item-img { width: 60px; height: 72px; border-radius: var(--border-radius); overflow: hidden; flex-shrink: 0; position: relative; background: #f5f5f5; }
.chk-item-img img { width: 100%; height: 100%; object-fit: cover; }
.chk-item-qty { position: absolute; top: -6px; right: -6px; background: var(--color-base-text-light); color: #fff; width: 18px; height: 18px; border-radius: 50%; font-size: .6rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.chk-item-name { font-size: .85rem; font-weight: 600; line-height: 1.3; }
.chk-item-var { font-size: .75rem; color: var(--color-base-text-light); margin-top: 2px; }
.chk-item-price { font-size: .88rem; font-weight: 700; margin-left: auto; flex-shrink: 0; }
.chk-coupon { display: flex; gap: 0; margin: 16px 0; }
.chk-coupon input { flex: 1; padding: 10px 14px; border: 1.5px solid var(--color-border); border-right: none; border-radius: var(--border-radius) 0 0 var(--border-radius); font-size: .85rem; font-family: inherit; outline: none; transition: border-color var(--transition); }
.chk-coupon input:focus { border-color: var(--color-accent); }
.chk-coupon button { padding: 10px 16px; background: var(--color-accent); color: #fff; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-radius: 0 var(--border-radius) var(--border-radius) 0; transition: background var(--transition); }
.chk-coupon button:hover { background: var(--color-accent-hover); }
.chk-totals { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; border-top: 1px solid var(--color-border); padding-top: 16px; }
.chk-total-row { display: flex; justify-content: space-between; font-size: .88rem; }
.chk-total-row .l { color: var(--color-base-text-light); }
.chk-total-row .v { font-weight: 600; }
.chk-total-row.grand { border-top: 2px solid var(--color-base-text); padding-top: 14px; margin-top: 4px; font-size: 1rem; }
.chk-total-row.grand .v { font-family: var(--font-heading); font-size: 1.3rem; }
.place-order-btn {
  width: 100%; padding: 17px; background: var(--color-success); color: #fff;
  font-family: var(--font-body); font-size: .88rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--border-radius); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background var(--transition); margin-top: 20px;
}
.place-order-btn:hover { background: #245a42; }

/* ── MY ACCOUNT ───────────────────────────────────────────── */
.auth-wrap { flex: 1; display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - var(--header-height) - 42px); }
.auth-visual { position: relative; overflow: hidden; background: #1a1a1a; }
.auth-visual img { width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.auth-visual__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 60px; }
.auth-visual__quote { font-family: var(--font-heading); font-size: 1.6rem; color: #fff; line-height: 1.4; font-style: italic; margin-bottom: 16px; }
.auth-visual__attr { font-size: .78rem; color: rgba(255,255,255,.65); letter-spacing: .1em; text-transform: uppercase; }
.auth-forms { display: flex; flex-direction: column; justify-content: center; padding: 60px 80px; background: #fff; }
.auth-tabs { display: flex; border-bottom: 2px solid var(--color-border); margin-bottom: 40px; }
.auth-tab { padding: 12px 0; margin-right: 32px; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--color-base-text-light); border-bottom: 2px solid transparent; margin-bottom: -2px; cursor: pointer; transition: all var(--transition); }
.auth-tab.active { color: var(--color-base-text); border-bottom-color: var(--color-accent); }
.auth-title { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 400; margin-bottom: 8px; }
.auth-subtitle { font-size: .88rem; color: var(--color-base-text-light); margin-bottom: 32px; }
.social-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.social-btn { padding: 11px; border: 1.5px solid var(--color-border); border-radius: var(--border-radius); font-size: .78rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all var(--transition); }
.social-btn:hover { border-color: var(--color-accent); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.auth-switch { text-align: center; font-size: .82rem; color: var(--color-base-text-light); margin-top: 20px; }
.auth-switch a { color: var(--color-base-text); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.forgot-link { font-size: .78rem; color: var(--color-base-text-light); text-decoration: underline; text-underline-offset: 3px; transition: color var(--transition); }
.forgot-link:hover { color: var(--color-base-text); }
.form-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }

/* Dashboard */
.acct-wrap { max-width: var(--max-width); margin: 0 auto; padding: 48px 40px 80px; }
.acct-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--color-border); }
.acct-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--color-accent); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.4rem; font-weight: 400; flex-shrink: 0; }
.acct-info { flex: 1; margin-left: 20px; }
.acct-name { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 400; margin-bottom: 4px; }
.acct-email { font-size: .82rem; color: var(--color-base-text-light); }
.acct-logout { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--color-base-text-light); border: 1.5px solid var(--color-border); padding: 8px 16px; border-radius: var(--border-radius); transition: all var(--transition); display: inline-block; }
.acct-logout:hover { border-color: var(--color-sale); color: var(--color-sale); }
.acct-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; }
.acct-nav { position: sticky; top: calc(var(--header-height) + 20px); }
.acct-nav-item { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 4px; font-size: .85rem; font-weight: 600; cursor: pointer; transition: all var(--transition); width: 100%; text-align: left; color: var(--color-base-text); border: none; background: none; }
.acct-nav-item:hover { background: var(--color-base-background-2); }
.acct-nav-item.active { background: var(--color-accent); color: #fff; }
.acct-nav-item svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; flex-shrink: 0; }
.acct-section { display: none; }
.acct-section.active { display: block; }
.acct-section-title { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 400; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--color-border); }

/* Orders */
.order-card { border: 1px solid var(--color-border); border-radius: 4px; margin-bottom: 16px; overflow: hidden; }
.order-card-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: var(--color-base-background-2); flex-wrap: wrap; gap: 8px; }
.order-num { font-size: .82rem; font-weight: 700; letter-spacing: .05em; }
.order-date { font-size: .75rem; color: var(--color-base-text-light); }
.order-status { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }
.status-delivered { background: #dcfce7; color: var(--color-success); }
.status-shipped { background: #dbeafe; color: #1d4ed8; }
.status-pending { background: #fef9c3; color: #92400e; }
.status-processing { background: #ede9fe; color: #6d28d9; }
.status-cancelled { background: #fee2e2; color: var(--color-sale); }
.order-card-body { padding: 20px; }
.order-items-row { display: flex; gap: 12px; margin-bottom: 16px; }
.oi-thumb { width: 60px; height: 72px; border-radius: var(--border-radius); overflow: hidden; background: #f5f5f5; flex-shrink: 0; }
.oi-thumb img { width: 100%; height: 100%; object-fit: cover; }
.order-actions { display: flex; gap: 10px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--color-border); }
.order-action-btn { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 7px 14px; border: 1.5px solid var(--color-border); border-radius: var(--border-radius); transition: all var(--transition); }
.order-action-btn:hover { border-color: var(--color-accent); color: var(--color-accent); }
.order-total { font-size: .82rem; color: var(--color-base-text-light); }

/* Addresses */
.addr-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.addr-card { border: 1px solid var(--color-border); border-radius: 4px; padding: 20px; position: relative; }
.addr-card.default { border-color: var(--color-accent); }
.addr-default-badge { position: absolute; top: 12px; right: 12px; font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--color-accent); color: #fff; padding: 3px 8px; border-radius: 20px; }
.addr-name { font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.addr-line { font-size: .82rem; color: var(--color-base-text-light); line-height: 1.6; }
.addr-actions { display: flex; gap: 8px; margin-top: 12px; }
.addr-btn { font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 10px; border: 1.5px solid var(--color-border); border-radius: var(--border-radius); transition: all var(--transition); }
.addr-btn:hover { border-color: var(--color-accent); color: var(--color-accent); }
.add-addr-btn { width: 100%; min-height: 140px; border: 2px dashed var(--color-border); border-radius: 4px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--color-base-text-light); transition: all var(--transition); cursor: pointer; }
.add-addr-btn:hover { border-color: var(--color-accent); color: var(--color-accent); }
.add-addr-btn svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* Wishlist */
.wish-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.wish-item { border: 1px solid var(--color-border); border-radius: var(--border-radius); overflow: hidden; position: relative; transition: box-shadow var(--transition); }
.wish-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.wish-img { aspect-ratio: 4/5; overflow: hidden; background: #f5f5f5; }
.wish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.wish-item:hover .wish-img img { transform: scale(1.04); }
.wish-info { padding: 12px; }
.wish-name { font-size: .85rem; font-weight: 600; margin-bottom: 4px; }
.wish-price { font-size: .82rem; color: var(--color-base-text-light); margin-bottom: 10px; }
.wish-atc { width: 100%; padding: 9px; background: var(--color-accent); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-radius: var(--border-radius); transition: background var(--transition); border: none; cursor: pointer; }
.wish-atc:hover { background: var(--color-accent-hover); }
.wish-remove { position: absolute; top: 8px; right: 8px; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.88); display: flex; align-items: center; justify-content: center; opacity: 0; transition: all var(--transition); border: none; cursor: pointer; }
.wish-item:hover .wish-remove { opacity: 1; }
.wish-remove:hover { background: #fff; color: var(--color-sale); }
.wish-remove svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* Settings */
.settings-grid { display: grid; gap: 24px; }
.settings-card { border: 1px solid var(--color-border); border-radius: 4px; padding: 24px; }
.settings-card h3 { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--color-border); }
.save-btn { display: inline-flex; padding: 11px 24px; background: var(--color-accent); color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-radius: var(--border-radius); transition: background var(--transition); margin-top: 4px; border: none; cursor: pointer; }
.save-btn:hover { background: var(--color-accent-hover); }

/* ── BLOG LIST PAGE ───────────────────────────────────────── */
.blog-banner { position: relative; height: 320px; overflow: hidden; background: #1a1a1a; }
.blog-banner img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.blog-banner__body { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; padding: 24px; }
.blog-banner__eyebrow { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; opacity: .75; margin-bottom: 12px; }
.blog-banner__title { font-family: var(--font-heading); font-size: clamp(2rem,5vw,3.2rem); font-weight: 400; line-height: 1.1; }
.blog-banner__desc { font-size: .92rem; opacity: .8; max-width: 500px; line-height: 1.65; margin-top: 12px; }

.blog-page-wrap { max-width: var(--max-width); margin: 0 auto; padding: 60px 40px 80px; }
.blog-filter-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 48px; flex-wrap: wrap; }
.blog-filter-bar span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--color-base-text-light); margin-right: 4px; }
.blog-cat-btn { padding: 7px 18px; border: 1.5px solid var(--color-border); border-radius: 20px; font-size: .78rem; font-weight: 600; cursor: pointer; transition: all var(--transition); background: transparent; font-family: inherit; }
.blog-cat-btn:hover { border-color: var(--color-accent); }
.blog-cat-btn.active { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }

/* Featured post */
.blog-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 60px; border-bottom: 1px solid var(--color-border); padding-bottom: 60px; }
.blog-featured__media { overflow: hidden; border-radius: var(--border-radius); aspect-ratio: 4/3; }
.blog-featured__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-featured:hover .blog-featured__media img { transform: scale(1.04); }
.blog-featured__body { display: flex; flex-direction: column; justify-content: center; }
.blog-featured__tag { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; background: var(--color-base-background-2); padding: 5px 14px; border-radius: 20px; margin-bottom: 16px; color: var(--color-base-text-light); }
.blog-featured__title { font-family: var(--font-heading); font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 400; line-height: 1.2; margin-bottom: 16px; }
.blog-featured__title a:hover { color: var(--color-accent-hover); }
.blog-featured__excerpt { color: var(--color-base-text-light); font-size: .92rem; line-height: 1.7; margin-bottom: 24px; }
.blog-featured__meta { display: flex; align-items: center; gap: 16px; font-size: .75rem; color: var(--color-base-text-light); margin-bottom: 24px; }

/* ── SINGLE POST ──────────────────────────────────────────── */
.post-hero { position: relative; height: 480px; overflow: hidden; background: #1a1a1a; }
.post-hero img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.post-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%); }
.post-hero__body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 60px; color: #fff; }
.post-hero__body:not(.has-image) { background: var(--color-base-background-2); color: var(--color-base-text); position: static; padding: 60px 40px; text-align: center; align-items: center; }
.post-hero__meta { display: flex; align-items: center; gap: 16px; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; opacity: .75; margin-bottom: 16px; }
.reading-time { font-weight: 400; opacity: .75; }
.post-hero__title { font-family: var(--font-heading); font-size: clamp(1.8rem,4vw,3rem); font-weight: 400; line-height: 1.15; margin-bottom: 20px; }
.post-hero__author { display: flex; align-items: center; gap: 12px; font-size: .82rem; }
.post-hero__author img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(255,255,255,.3); }
.post-hero__author strong { display: block; font-weight: 700; }
.post-hero__author span { opacity: .75; font-size: .75rem; }

.post-wrap { max-width: 740px; margin: 0 auto; padding: 60px 24px 80px; }
.post-body .entry-content { font-size: 1.05rem; line-height: 1.85; color: var(--color-base-text); }
.post-body .entry-content h2 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 400; margin: 40px 0 16px; }
.post-body .entry-content h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 400; margin: 32px 0 12px; }
.post-body .entry-content p { margin-bottom: 20px; }
.post-body .entry-content ul,.post-body .entry-content ol { padding-left: 24px; margin-bottom: 20px; }
.post-body .entry-content li { margin-bottom: 8px; }
.post-body .entry-content blockquote { border-left: 3px solid var(--color-accent); padding: 16px 24px; margin: 32px 0; background: var(--color-base-background-2); font-family: var(--font-heading); font-size: 1.15rem; font-style: italic; border-radius: 0 4px 4px 0; }
.post-body .entry-content img { border-radius: 4px; margin: 32px auto; }
.post-body .entry-content a { text-decoration: underline; text-underline-offset: 3px; }

.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 40px 0; }
.post-tag { padding: 6px 14px; border: 1px solid var(--color-border); border-radius: 20px; font-size: .75rem; font-weight: 600; transition: all var(--transition); }
.post-tag:hover { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }

.post-share { display: flex; align-items: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.post-share > span { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--color-base-text-light); }
.share-btn { padding: 7px 16px; border: 1.5px solid var(--color-border); border-radius: 20px; font-size: .75rem; font-weight: 700; transition: all var(--transition); }
.share-btn:hover { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }

.author-box { display: flex; gap: 20px; padding: 28px; background: var(--color-base-background-2); border-radius: 4px; margin-bottom: 40px; }
.author-box img { width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0; }
.author-box__info {}
.author-box__label { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--color-base-text-light); margin-bottom: 4px; }
.author-box__name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 400; margin-bottom: 8px; }
.author-box__bio { font-size: .85rem; color: var(--color-base-text-light); line-height: 1.65; }

.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 40px; }
.post-nav__item { padding: 20px; border: 1px solid var(--color-border); border-radius: 4px; display: flex; flex-direction: column; gap: 6px; transition: all var(--transition); }
.post-nav__item:hover { border-color: var(--color-accent); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.post-nav__item.next { text-align: right; }
.post-nav__dir { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--color-base-text-light); }
.post-nav__title { font-size: .9rem; font-weight: 600; line-height: 1.3; }

/* ── SEARCH PAGE ──────────────────────────────────────────── */
.search-page { max-width: var(--max-width); margin: 0 auto; padding: 60px 40px 80px; }
.search-page__header { text-align: center; margin-bottom: 48px; }
.search-page__form { max-width: 600px; margin: 0 auto 40px; display: flex; border: 2px solid var(--color-accent); border-radius: var(--border-radius); overflow: hidden; }
.search-page__form input { flex: 1; padding: 16px 20px; border: none; outline: none; font-family: var(--font-heading); font-size: 1.1rem; background: transparent; }
.search-page__form button { padding: 16px 24px; background: var(--color-accent); color: #fff; border: none; cursor: pointer; transition: background var(--transition); }
.search-page__form button:hover { background: var(--color-accent-hover); }
.search-page__form button svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 1.5; }
.search-page__tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; }
.search-tab { padding: 8px 20px; border: 1.5px solid var(--color-border); border-radius: 20px; font-size: .78rem; font-weight: 700; cursor: pointer; transition: all var(--transition); background: transparent; font-family: inherit; }
.search-tab:hover { border-color: var(--color-accent); }
.search-tab.active { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.search-results-count { text-align: center; font-size: .85rem; color: var(--color-base-text-light); margin-bottom: 32px; }
.search-results-count strong { color: var(--color-base-text); font-weight: 700; }
.search-no-results { text-align: center; padding: 80px 24px; }
.search-no-results h3 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 400; margin-bottom: 12px; }
.search-no-results p { color: var(--color-base-text-light); margin-bottom: 32px; }
.search-suggestions { margin-top: 40px; }
.search-suggestions h4 { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; text-align: center; }
.suggestion-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.suggestion-pill { padding: 7px 18px; border: 1.5px solid var(--color-border); border-radius: 20px; font-size: .82rem; cursor: pointer; transition: all var(--transition); }
.suggestion-pill:hover { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }

/* ── 404 PAGE ─────────────────────────────────────────────── */
.hero-404 { flex: 1; display: flex; align-items: center; justify-content: center; padding: 80px 40px; position: relative; overflow: hidden; min-height: 60vh; }
.bg-404 { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: clamp(200px,30vw,420px); font-weight: 400; color: var(--color-base-background-2); user-select: none; line-height: 1; opacity: .6; pointer-events: none; }
.content-404 { position: relative; text-align: center; max-width: 560px; z-index: 1; }
.tag-404 { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; background: var(--color-base-background-2); padding: 6px 16px; border-radius: 20px; margin-bottom: 24px; color: var(--color-base-text-light); }
.title-404 { font-family: var(--font-heading); font-size: clamp(2rem,5vw,3.2rem); font-weight: 400; line-height: 1.2; margin-bottom: 16px; }
.desc-404 { font-size: .95rem; color: var(--color-base-text-light); line-height: 1.7; margin-bottom: 36px; }
.search-404 { display: flex; max-width: 440px; margin: 0 auto 32px; }
.s4-input { flex: 1; padding: 12px 16px; border: 1.5px solid var(--color-border); border-right: none; border-radius: var(--border-radius) 0 0 var(--border-radius); font-size: .9rem; font-family: inherit; outline: none; transition: border-color var(--transition); }
.s4-input:focus { border-color: var(--color-accent); }
.s4-btn { padding: 12px 20px; background: var(--color-accent); color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; border-radius: 0 var(--border-radius) var(--border-radius) 0; transition: background var(--transition); border: none; cursor: pointer; }
.s4-btn:hover { background: var(--color-accent-hover); }
.actions-404 { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

.popular-404 { background: var(--color-base-background-2); padding: 60px 40px; }
.popular-404-in { max-width: var(--max-width); margin: 0 auto; }
.popular-404 h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 400; margin-bottom: 28px; text-align: center; }
.pop-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.pop-card { background: #fff; border-radius: 4px; overflow: hidden; cursor: pointer; transition: all var(--transition); display: block; }
.pop-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.pop-img { height: 160px; overflow: hidden; background: #f5f5f5; }
.pop-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pop-card:hover .pop-img img { transform: scale(1.05); }
.pop-body { padding: 14px; }
.pop-label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--color-base-text-light); margin-bottom: 4px; }
.pop-name { font-size: .88rem; font-weight: 600; line-height: 1.3; }

/* ── PAGE CONTENT ─────────────────────────────────────────── */
.page-banner { position: relative; height: 300px; overflow: hidden; background: #1a1a1a; }
.page-banner img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.page-banner__overlay { position: absolute; inset: 0; }
.page-banner__body { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; text-align: center; }
.page-banner__body:not(.has-image) { background: var(--color-base-background-2); color: var(--color-base-text); position: static; padding: 60px 40px; }
.page-banner__title { font-family: var(--font-heading); font-size: clamp(2rem,5vw,3rem); font-weight: 400; }
.page-content { max-width: 860px; margin: 0 auto; padding: 60px 24px 80px; }
.page-content .entry-content { font-size: 1rem; line-height: 1.8; }
.page-content .entry-content h2 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 400; margin: 36px 0 14px; }
.page-content .entry-content h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 400; margin: 28px 0 10px; }
.page-content .entry-content p { margin-bottom: 18px; }
.page-content .entry-content a { text-decoration: underline; text-underline-offset: 3px; }

/* ── RESPONSIVE ADDITIONS ─────────────────────────────────── */
@media (max-width: 900px) {
  .pop-grid { grid-template-columns: repeat(2,1fr); }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-table-head { display: none; }
  .cart-row { grid-template-columns: 1fr; gap: 12px; position: relative; }
  .ci-qty,.ci-price,.ci-total { justify-content: flex-start; text-align: left; }
  .ci-remove-btn { position: absolute; top: 24px; right: 0; margin-left: 0; }
  .chk-layout { grid-template-columns: 1fr; }
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .auth-forms { padding: 40px 32px; }
  .acct-layout { grid-template-columns: 1fr; }
  .acct-nav { position: static; display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
  .acct-nav-item { width: auto; padding: 8px 14px; }
  .blog-featured { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .addr-grid { grid-template-columns: 1fr; }
  .wish-grid { grid-template-columns: repeat(2,1fr); }
  .upsell-grid { grid-template-columns: 1fr; }
  .blog-page-wrap,.search-page,.cart-page,.acct-wrap { padding-left: 20px; padding-right: 20px; }
  .hero-404 { padding: 60px 20px; }
  .popular-404 { padding: 40px 20px; }
  .actions-404 { flex-direction: column; align-items: stretch; }
  .actions-404 .btn { text-align: center; justify-content: center; }
  .post-hero__body { padding: 32px 20px; }
}
