.artrofit-shop {
  --af-black: #0b0b0b;
  --af-yellow: #ffd600;
  --af-border: #d9d9d9;
  --af-muted: #656565;
  box-sizing: border-box;
  width: 100%;
  color: var(--af-black);
  font-family: Poppins, Arial, sans-serif;
  line-height: 1.55;
}

body.artrofit-shop-canvas {
  margin: 0 !important;
  background: #fff !important;
  color: #0b0b0b;
  font-family: Poppins, Arial, sans-serif;
}

.artrofit-shop-canvas > header:not(.artrofit-canvas-header),
.artrofit-shop-canvas > footer:not(.artrofit-canvas-footer) { display: none !important; }

.artrofit-canvas-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #dedede;
  padding: 0 clamp(18px, 4vw, 64px);
  background: rgba(255,255,255,.97);
}

.admin-bar .artrofit-canvas-header { top: 32px; }
.artrofit-canvas-brand { display: flex; align-items: baseline; gap: 10px; color: #0b0b0b; text-decoration: none; }
.artrofit-canvas-brand strong { font-size: 20px; font-weight: 900; letter-spacing: -.04em; }
.artrofit-canvas-brand span { color: #6d6d6d; font-size: 11px; }
.artrofit-canvas-header nav { display: flex; align-items: center; gap: clamp(14px, 3vw, 34px); }
.artrofit-canvas-header nav a { color: #0b0b0b; font-size: 13px; font-weight: 700; text-decoration: none; }
.artrofit-canvas-cart { display: inline-flex; align-items: center; gap: 8px; }
.artrofit-canvas-cart span { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; background: #ffd600; font-size: 11px; }
.artrofit-canvas-main { min-height: calc(100vh - 220px); padding: clamp(48px, 7vw, 100px) clamp(18px, 4vw, 64px); }
.artrofit-canvas-shell { width: min(100%, 1240px); margin: 0 auto; }
.artrofit-canvas-title { margin-bottom: clamp(34px, 5vw, 64px); border-bottom: 3px solid #0b0b0b; padding-bottom: 18px; }
.artrofit-canvas-title h1 { margin: 0; color: #0b0b0b; font-size: clamp(38px, 6vw, 78px); line-height: .95; font-weight: 900; letter-spacing: -.055em; }
.artrofit-canvas-footer { display: flex; min-height: 120px; align-items: center; justify-content: space-between; gap: 24px; padding: 28px clamp(18px, 4vw, 64px); background: #0b0b0b; color: #fff; }
.artrofit-canvas-footer > div { display: flex; flex-direction: column; gap: 5px; }
.artrofit-canvas-footer strong { font-size: 20px; }
.artrofit-canvas-footer span { color: #a9a9a9; font-size: 12px; }
.artrofit-canvas-footer a { color: #fff; font-weight: 700; text-decoration: none; }

.artrofit-shop *,
.artrofit-shop *::before,
.artrofit-shop *::after {
  box-sizing: border-box;
}

.artrofit-shop a { color: inherit; }
.artrofit-shop h2 { line-height: 1.15; }

.artrofit-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--af-black) !important;
  border-radius: 0 !important;
  padding: 12px 22px;
  background: var(--af-black) !important;
  color: #fff !important;
  font: inherit;
  font-weight: 700;
  text-decoration: none !important;
  cursor: pointer;
  appearance: none;
}

.artrofit-button:hover,
.artrofit-button:focus-visible { background: #2b2b2b !important; }
.artrofit-button.secondary { background: #fff !important; color: var(--af-black) !important; }
.artrofit-button.full { width: 100%; }

.artrofit-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
}

.artrofit-product-card {
  border-top: 3px solid var(--af-black);
  padding-top: 20px;
}

.artrofit-product-card img {
  display: block;
  width: 100%;
  height: min(42vw, 520px);
  object-fit: contain;
  background: #f4f4f4;
}

.artrofit-product-card h2 a { text-decoration: none; }
.artrofit-price { margin: 18px 0; font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 800; }

.artrofit-add-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.artrofit-add-form input[type="number"] {
  width: 76px;
  min-height: 50px;
  border: 2px solid var(--af-black);
  border-radius: 0;
  padding: 8px;
  font: inherit;
}

.artrofit-notice {
  margin: 0 0 24px;
  border-left: 6px solid var(--af-yellow);
  padding: 18px 20px;
  background: #f3f3f3;
}

.artrofit-notice.success { background: #e9f8ed; border-color: #16833a; }
.artrofit-notice.error { background: #fff0f0; border-color: #c32626; }

.artrofit-cart-lines { border-top: 2px solid var(--af-black); }
.artrofit-cart-line {
  display: grid;
  grid-template-columns: 80px minmax(180px, 1fr) 100px 120px auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--af-border);
  padding: 18px 0;
}

.artrofit-cart-line img { width: 72px; height: 72px; object-fit: contain; }
.artrofit-cart-line label span { display: block; font-size: .75rem; color: var(--af-muted); }
.artrofit-cart-line input { width: 80px; padding: 9px; border: 1px solid var(--af-border); }

.artrofit-link-button {
  border: 0;
  padding: 4px;
  background: transparent;
  color: #9c1c1c;
  text-decoration: underline;
  cursor: pointer;
}

.artrofit-totals {
  width: min(100%, 460px);
  margin: 30px 0 0 auto;
  border-top: 3px solid var(--af-black);
  padding-top: 14px;
}

.artrofit-totals p,
.artrofit-summary-line { display: flex; justify-content: space-between; gap: 20px; }
.artrofit-totals .total,
.artrofit-summary-line.total { border-top: 1px solid var(--af-border); padding-top: 14px; font-size: 1.25rem; }

.artrofit-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: clamp(28px, 6vw, 80px);
}

.artrofit-checkout label { display: block; margin: 0 0 16px; font-weight: 600; }
.artrofit-checkout input:not([type="checkbox"]),
.artrofit-checkout textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid #a8a8a8;
  border-radius: 0;
  padding: 12px;
  background: #fff;
  font: inherit;
}

.artrofit-fields.two { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.artrofit-checkout aside { align-self: start; border: 2px solid var(--af-black); padding: clamp(20px, 3vw, 34px); }
.artrofit-payment-note { color: var(--af-muted); font-size: .9rem; }
.artrofit-consent { display: flex !important; gap: 10px; align-items: flex-start; font-size: .86rem; font-weight: 400 !important; }
.artrofit-consent input { flex: 0 0 auto; margin-top: 4px; }
.artrofit-stock-out { color: #9c1c1c; font-weight: 700; }

@media (max-width: 760px) {
	.admin-bar .artrofit-canvas-header { top: 46px; }
	.artrofit-canvas-header { min-height: 66px; }
	.artrofit-canvas-brand span { display: none; }
	.artrofit-canvas-header nav a:first-child { display: none; }
	.artrofit-canvas-main { padding-top: 42px; }
	.artrofit-canvas-footer { align-items: flex-start; flex-direction: column; }
  .artrofit-products,
  .artrofit-checkout-grid,
  .artrofit-fields.two { grid-template-columns: 1fr; }
  .artrofit-product-card img { height: 76vw; }
  .artrofit-cart-line {
    grid-template-columns: 64px minmax(0, 1fr) 82px;
    gap: 12px;
  }
  .artrofit-cart-line > strong { grid-column: 2; }
  .artrofit-cart-line .artrofit-link-button { grid-column: 3; grid-row: 2; }
  .artrofit-checkout aside { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .artrofit-shop *, .artrofit-shop *::before, .artrofit-shop *::after { scroll-behavior: auto !important; transition: none !important; }
}
.artrofit-shop [hidden] { display:none!important; }
.artrofit-shop .af-checkout-methods { margin:28px 0 12px; padding:0; border:0; min-width:0; }
.artrofit-shop .af-checkout-methods legend { font-size:22px; font-weight:700; padding:0 0 12px; }
.artrofit-shop label.af-checkout-choice { display:flex; align-items:flex-start; gap:12px; padding:16px; border:1px solid #c7c7c7; margin-bottom:10px; cursor:pointer; color:#171717; background:#fff; }
.artrofit-shop label.af-checkout-choice:has(input:checked) { border-color:#111; box-shadow:inset 3px 0 #c29b43; }
.artrofit-shop .af-checkout-choice input[type=radio] { flex:0 0 18px; width:18px; height:18px; margin:3px 0 0; accent-color:#111; }
.artrofit-shop .af-checkout-choice span { flex:1; min-width:0; }
.artrofit-shop .af-checkout-choice strong, .artrofit-shop .af-checkout-choice small { display:block; line-height:1.5; }
.artrofit-shop .af-checkout-choice small { color:#515151; font-size:13px; margin-top:4px; }
.artrofit-shop .af-checkout-choice b { white-space:nowrap; font-size:14px; }
.artrofit-shop .af-checkout-choice.is-disabled { opacity:.55; cursor:default; }
.artrofit-shop .af-packeta-picker { padding:16px; margin-bottom:20px; background:#f5f3ee; }
.artrofit-shop [data-af-checkout-error], .artrofit-shop [data-af-payment-warning] { color:#9a2020; font-weight:600; }
@media(max-width:480px) { .artrofit-shop label.af-checkout-choice { flex-wrap:wrap; } .artrofit-shop .af-checkout-choice b { margin-left:30px; } }
