/**
 * Appily fortythree — Orchard Catalog shop
 * Living Orchard theme: dark hero slice, glass filters, icon category rail
 * Layout unchanged: hero + pills + sidebar filters + toolbar + grid + pagination
 */

.page-shop-orchard {
  --shop-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shop-glass: rgba(255, 252, 247, 0.78);
  --shop-glass-border: rgba(255, 255, 255, 0.62);
  --shop-hero-dark: #1a3320;
  background: linear-gradient(180deg, #f4f0e8 0%, var(--a43-warm) 120px);
}
.page-shop-orchard .page-main { padding-top: 0; }

.a43-shop-orchard { padding-bottom: 3.75rem; }

/* ── Reveal ── */
.a43-shop-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--shop-ease), transform 0.65s var(--shop-ease);
}
.a43-shop-reveal.is-visible { opacity: 1; transform: none; }

/* ── Hero (dark diagonal orchard) ── */
.a43-shop-orchard-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4.5vw, 3rem) 0 clamp(2.25rem, 4vw, 3rem);
  color: #fff;
}
.a43-shop-orchard-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(128deg, #142618 0%, var(--shop-hero-dark) 38%, #2f5233 72%, #3d6b4f 100%);
  pointer-events: none;
}
.a43-shop-orchard-slice {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 72px;
  background: #f4f0e8;
  clip-path: polygon(0 100%, 100% 18%, 100% 100%);
}
.a43-shop-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(65px);
  opacity: 0.42;
  animation: a43ShopOrchardBlob 14s ease-in-out infinite alternate;
}
.a43-shop-blob--1 {
  width: min(38vw, 340px);
  height: min(38vw, 340px);
  top: -18%;
  right: 8%;
  background: rgba(212, 160, 23, 0.55);
}
.a43-shop-blob--2 {
  width: min(32vw, 280px);
  height: min(32vw, 280px);
  bottom: -8%;
  left: -4%;
  background: rgba(196, 220, 200, 0.35);
  animation-delay: -6s;
}
@keyframes a43ShopOrchardBlob {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(18px, -12px) scale(1.06); }
}

.a43-shop-orchard-dial {
  position: absolute;
  top: 14%;
  right: clamp(3%, 10vw, 12%);
  width: min(160px, 20vw);
  aspect-ratio: 1;
  border: 2px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  animation: a43ShopDialSpin 28s linear infinite;
}
.a43-shop-orchard-dial::after {
  content: '';
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.a43-shop-orchard-needle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44%;
  height: 3px;
  background: linear-gradient(90deg, var(--a43-gold), rgba(255, 255, 255, 0.85));
  transform-origin: left center;
  transform: translate(0, -50%) rotate(-28deg);
  border-radius: 2px;
  animation: a43ShopNeedle 8s ease-in-out infinite alternate;
}
@keyframes a43ShopDialSpin { to { transform: rotate(360deg); } }
@keyframes a43ShopNeedle {
  from { transform: translate(0, -50%) rotate(-42deg); }
  to { transform: translate(0, -50%) rotate(18deg); }
}

.a43-shop-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 340px);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: end;
}

.a43-shop-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.32rem 0.75rem;
  margin-bottom: 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.a43-shop-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ee787;
  box-shadow: 0 0 0 0 rgba(126, 231, 135, 0.6);
  animation: a43ShopLivePulse 2s ease-out infinite;
}
@keyframes a43ShopLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(126, 231, 135, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(126, 231, 135, 0); }
  100% { box-shadow: 0 0 0 0 rgba(126, 231, 135, 0); }
}

.a43-shop-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--a43-gold);
}

.a43-shop-hero-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: #fff;
}

.a43-shop-hero-lede {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  max-width: 42ch;
}

.a43-shop-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.a43-shop-hero-stats li {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0.9rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  min-width: 72px;
  backdrop-filter: blur(6px);
  transition: transform 0.25s var(--shop-ease), background 0.25s;
}
.a43-shop-hero-stats li:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.11);
}
.a43-shop-hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
}
.a43-shop-hero-stats span {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.a43-shop-hero-search-form {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.55rem 0.55rem 1rem;
  background: rgba(255, 252, 247, 0.96);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.a43-shop-hero-search-form:focus-within {
  border-color: var(--a43-gold);
  box-shadow: 0 22px 56px rgba(212, 160, 23, 0.18);
  transform: translateY(-2px);
}
.a43-shop-hero-search-form svg { color: var(--a43-orange); flex-shrink: 0; }
.a43-shop-hero-search-form input {
  flex: 1;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  outline: none;
  min-width: 0;
  color: var(--a43-ink);
}
.a43-shop-hero-search-form button {
  border: 0;
  padding: 0.55rem 1.05rem;
  background: linear-gradient(120deg, var(--a43-orange), var(--a43-gold));
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 11px;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
}
.a43-shop-hero-search-form button:hover {
  filter: brightness(1.06);
  transform: scale(1.02);
}

/* ── Category rail (icon cards) ── */
.a43-shop-orchard-cats {
  position: sticky;
  top: 0;
  z-index: 20;
  margin-top: -1.25rem;
  padding: 0 0 1.25rem;
}
.a43-shop-orchard-cats .container {
  padding-top: 0.35rem;
}
.a43-shop-cats-label {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--a43-muted);
}
.a43-shop-cats-inner {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding: 0.25rem 0 0.35rem;
}
.a43-shop-cats-inner::-webkit-scrollbar { display: none; }

.a43-shop-cat-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  flex-shrink: 0;
  scroll-snap-align: start;
  min-width: 108px;
  padding: 0.65rem 0.85rem;
  background: var(--shop-glass);
  border: 1px solid var(--shop-glass-border);
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--a43-ink);
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(33, 37, 41, 0.06);
  backdrop-filter: blur(12px);
  transition: transform 0.28s var(--shop-ease), box-shadow 0.28s, border-color 0.28s;
  position: relative;
  overflow: hidden;
}
.a43-shop-cat-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cat-accent, var(--a43-mint));
  opacity: 0.85;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--shop-ease);
}
.a43-shop-cat-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(33, 37, 41, 0.1);
  border-color: rgba(47, 82, 51, 0.18);
}
.a43-shop-cat-pill:hover::before { transform: scaleX(1); }
.a43-shop-cat-pill.is-active {
  background: linear-gradient(145deg, var(--a43-green-dark), #2f5233);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 28px rgba(26, 51, 32, 0.28);
}
.a43-shop-cat-pill.is-active::before {
  background: var(--a43-gold);
  transform: scaleX(1);
}
.a43-shop-cat-pill--all.is-active {
  background: linear-gradient(145deg, var(--a43-orange), var(--a43-gold));
}
.a43-shop-cat-icon {
  font-size: 1.35rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}
.a43-shop-cat-label {
  line-height: 1.2;
  white-space: nowrap;
}
.a43-shop-cat-count {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.12rem 0.42rem;
  border-radius: 999px;
  background: rgba(47, 82, 51, 0.08);
  color: var(--a43-muted);
}
.a43-shop-cat-pill.is-active .a43-shop-cat-count {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

/* ── Layout ── */
.a43-shop-layout {
  display: grid;
  grid-template-columns: minmax(240px, 272px) minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 1.85rem);
  align-items: start;
}

/* ── Filters (glass panel) ── */
.a43-shop-orchard-filters {
  position: sticky;
  top: 5.5rem;
  background: var(--shop-glass);
  border: 1px solid var(--shop-glass-border);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 12px 40px rgba(33, 37, 41, 0.07);
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.a43-shop-orchard-filters .a43-filters-head {
  margin: 0;
  padding: 1.15rem 1.1rem 1rem;
  border-bottom: 1px solid rgba(47, 82, 51, 0.1);
  background: linear-gradient(135deg, rgba(47, 82, 51, 0.06) 0%, transparent 100%);
}
.a43-filters-badge {
  display: inline-block;
  margin-bottom: 0.4rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--a43-green-dark);
  background: rgba(64, 145, 108, 0.12);
  border-radius: 999px;
}
.a43-filters-title {
  margin: 0 0 0.2rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--a43-green-dark);
}
.a43-filters-sub {
  margin: 0;
  font-size: 0.76rem;
  color: var(--a43-muted);
}
.a43-shop-orchard-filters form {
  padding: 0 1rem 1rem;
}

.a43-filter-block { border-bottom: 1px solid rgba(47, 82, 51, 0.08); }
.a43-filter-block:last-of-type { border-bottom: 0; }

.a43-filter-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.78rem 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--a43-ink);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.a43-filter-head:hover { color: var(--a43-green-dark); }

.a43-filter-toggle {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(47, 82, 51, 0.08);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--a43-muted);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.a43-filter-block.is-open .a43-filter-toggle {
  background: var(--a43-green-dark);
  color: #fff;
  transform: rotate(180deg);
}
.a43-filter-block.is-open .a43-filter-toggle::before { content: '−'; }
.a43-filter-block:not(.is-open) .a43-filter-toggle::before { content: '+'; }

.a43-filter-panel {
  padding: 0 0 0.85rem;
  display: grid;
  gap: 0.3rem;
}
.a43-filter-panel[hidden] { display: none; }

.a43-filter-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--a43-muted);
  cursor: pointer;
  padding: 0.42rem 0.55rem;
  margin: 0 -0.55rem;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.a43-filter-check:hover { background: rgba(47, 82, 51, 0.06); }
.a43-filter-check input { margin-top: 0.15rem; accent-color: var(--a43-green-dark); }
.a43-filter-check:has(input:checked) {
  color: var(--a43-ink);
  font-weight: 600;
  background: rgba(212, 160, 23, 0.08);
}

.a43-price-note { margin: 0 0 0.5rem; font-size: 0.72rem; color: var(--a43-muted); }
.a43-price-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.45rem; margin-bottom: 0.55rem; }
.a43-price-field { position: relative; }
.a43-price-field span {
  position: absolute;
  left: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.78rem;
  color: var(--a43-muted);
  pointer-events: none;
}
.a43-price-field input {
  width: 100%;
  padding: 0.48rem 0.5rem 0.48rem 1.3rem;
  border: 1px solid var(--a43-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.65);
  font: inherit;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.a43-price-field input:focus {
  border-color: var(--a43-mint);
  box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.12);
}

.a43-price-apply {
  width: 100%;
  padding: 0.58rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--a43-green-dark), #3d6b4f);
  color: #fff;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
}
.a43-price-apply:hover { filter: brightness(1.08); transform: translateY(-1px); }

.a43-clear-filters {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--a43-orange);
  text-decoration: none !important;
}
.a43-clear-filters:hover { text-decoration: underline !important; }

.a43-filter-mobile-toggle {
  display: none;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.78rem 1rem;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(120deg, var(--a43-green-dark), #2f5233);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(26, 51, 32, 0.22);
}

/* ── Toolbar ── */
.a43-shop-orchard-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 1.2rem;
  padding: 0.8rem 1.05rem;
  background: var(--shop-glass);
  border: 1px solid var(--shop-glass-border);
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(33, 37, 41, 0.05);
  backdrop-filter: blur(10px);
}

.a43-shop-count {
  margin: 0;
  flex: 1;
  font-size: 0.86rem;
  color: var(--a43-muted);
}
.a43-shop-count strong {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--a43-green-dark);
  font-size: 1.08rem;
}

.a43-shop-sort {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--a43-muted);
}
.a43-shop-sort span { font-weight: 700; color: var(--a43-ink); }
.a43-shop-sort select {
  padding: 0.42rem 1.75rem 0.42rem 0.7rem;
  border: 1px solid var(--a43-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.a43-shop-sort select:focus {
  border-color: var(--a43-mint);
  box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.1);
}

.a43-view-switch {
  display: flex;
  gap: 0.35rem;
  padding: 0.2rem;
  background: rgba(47, 82, 51, 0.06);
  border-radius: 12px;
}

.a43-view-btn {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 32px;
  padding: 0 0.5rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.a43-view-btn span {
  display: block;
  width: 4px;
  background: rgba(47, 82, 51, 0.22);
  border-radius: 1px;
  transition: background 0.2s, height 0.2s;
}
.a43-view-btn[data-cols="3"] span { height: 14px; }
.a43-view-btn[data-cols="3"] span:nth-child(2) { height: 18px; }
.a43-view-btn[data-cols="3"] span:nth-child(3) { height: 12px; }
.a43-view-btn[data-cols="4"] span { height: 12px; }
.a43-view-btn[data-cols="4"] span:nth-child(2) { height: 16px; }
.a43-view-btn[data-cols="4"] span:nth-child(3) { height: 20px; }
.a43-view-btn[data-cols="4"] span:nth-child(4) { height: 14px; }
.a43-view-btn[data-cols="5"] span { height: 10px; }
.a43-view-btn[data-cols="5"] span:nth-child(3) { height: 18px; }
.a43-view-btn.is-active {
  background: #fff;
  box-shadow: 0 2px 8px rgba(33, 37, 41, 0.08);
}
.a43-view-btn.is-active span { background: var(--a43-orange); }

/* ── Product grid ── */
.a43-shop-grid {
  display: grid;
  gap: clamp(0.9rem, 1.6vw, 1.15rem);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, var(--shop-col-min, 200px)), 1fr));
}
.a43-shop-grid[data-cols="3"] { --shop-col-min: 240px; }
.a43-shop-grid[data-cols="4"] { --shop-col-min: 210px; }
.a43-shop-grid[data-cols="5"] { --shop-col-min: 185px; }

.a43-shop-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(47, 82, 51, 0.1);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition: transform 0.4s var(--shop-ease), box-shadow 0.4s ease, border-color 0.35s;
  animation: a43ShopCardIn 0.55s var(--shop-ease) both;
  animation-delay: calc(var(--card-i, 0) * 0.045s);
}
@keyframes a43ShopCardIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.a43-shop-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(212, 160, 23, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.a43-shop-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 20px 44px rgba(26, 51, 32, 0.12);
  border-color: rgba(212, 160, 23, 0.35);
}
.a43-shop-card:hover::after { opacity: 1; }

.a43-shop-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none !important;
  color: inherit;
  padding: 0.8rem;
}

.a43-shop-card-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  margin-bottom: 0.65rem;
  padding: 1.1rem;
  background:
    radial-gradient(ellipse 80% 70% at 50% 100%, rgba(196, 220, 200, 0.45), transparent),
    linear-gradient(165deg, #f8faf7 0%, #eef3ec 100%);
  border-radius: 14px;
  overflow: hidden;
}
.a43-shop-card-img::before {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 42% 58% 52% 48% / 48% 42% 58% 52%;
  background: rgba(255, 255, 255, 0.55);
  animation: a43ShopBlobFrame 10s ease-in-out infinite alternate;
}
@keyframes a43ShopBlobFrame {
  0% { border-radius: 42% 58% 52% 48% / 48% 42% 58% 52%; }
  100% { border-radius: 58% 42% 48% 52% / 52% 58% 42% 48%; }
}
.a43-shop-card-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
  transition: transform 0.5s var(--shop-ease);
  filter: drop-shadow(0 8px 16px rgba(33, 37, 41, 0.08));
}
.a43-shop-card:hover .a43-shop-card-img img {
  transform: scale(1.1) rotate(-3deg);
}

.a43-shop-sale {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.5rem;
  background: linear-gradient(120deg, #c0392b, #e74c3c);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.35);
}

.a43-shop-card-title {
  margin: 0 0 0.4rem;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--a43-ink);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.a43-shop-card-price { margin: 0; font-size: 0.88rem; }
.a43-shop-card-price strong {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--a43-green-dark);
}
.a43-shop-card-price s {
  color: var(--a43-muted);
  margin-right: 0.3rem;
  font-size: 0.78rem;
}

.a43-shop-card.is-sold-out { opacity: 0.58; }
.a43-shop-card.is-sold-out .a43-shop-card-img { filter: grayscale(0.4); }

.a43-shop-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--shop-glass);
  border: 1px dashed rgba(47, 82, 51, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}
.a43-shop-empty-icon { font-size: 2.75rem; display: block; margin-bottom: 0.75rem; }
.a43-shop-empty p { margin: 0 0 1rem; color: var(--a43-muted); }
.a43-shop-empty-btn {
  display: inline-block;
  padding: 0.62rem 1.35rem;
  background: linear-gradient(120deg, var(--a43-orange), var(--a43-gold));
  color: #fff !important;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none !important;
  transition: filter 0.2s, transform 0.2s;
  box-shadow: 0 8px 20px rgba(224, 122, 47, 0.25);
}
.a43-shop-empty-btn:hover { filter: brightness(1.06); transform: translateY(-2px); }

/* ── Pagination ── */
.a43-shop .a43-shop-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 2.25rem;
  flex-wrap: wrap;
}
.a43-shop .a43-page-num,
.a43-shop .a43-page-arrow {
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47, 82, 51, 0.12);
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none !important;
  color: var(--a43-ink);
  background: #fff;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.a43-shop .a43-page-num.is-active {
  background: linear-gradient(135deg, var(--a43-green-dark), #3d6b4f);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 18px rgba(26, 51, 32, 0.22);
}
.a43-shop .a43-page-arrow:hover,
.a43-shop .a43-page-num:not(.is-active):hover {
  border-color: var(--a43-gold);
  transform: translateY(-2px);
  background: rgba(212, 160, 23, 0.08);
}
.a43-shop .a43-page-gap { padding: 0 0.25rem; color: var(--a43-muted); }

/* ── Mobile filters ── */
@media (max-width: 900px) {
  .a43-shop-hero-inner { grid-template-columns: 1fr; }
  .a43-shop-orchard-dial { opacity: 0.35; width: 120px; }
  .a43-filter-mobile-toggle { display: flex; }
  .a43-shop-layout { grid-template-columns: 1fr; }
  .a43-shop-orchard-filters {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 1200;
    width: min(300px, 88vw);
    top: 0;
    border-radius: 0 20px 20px 0;
    transform: translateX(-105%);
    transition: transform 0.38s var(--shop-ease);
    overflow-y: auto;
  }
  body.a43-filters-open .a43-shop-orchard-filters { transform: translateX(0); }
  .a43-filter-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1190;
    background: rgba(20, 38, 24, 0.55);
    backdrop-filter: blur(4px);
  }
  body.a43-filters-open .a43-filter-backdrop { display: block; }
}

@media (max-width: 640px) {
  .a43-shop-orchard-toolbar { flex-direction: column; align-items: stretch; }
  .a43-view-switch { justify-content: flex-end; }
  .a43-shop-grid { --shop-col-min: 155px; }
  .a43-shop-orchard-cats { margin-top: -0.75rem; }
}

@media (max-width: 400px) {
  .a43-shop-grid { --shop-col-min: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .a43-shop-reveal, .a43-shop-card { animation: none !important; opacity: 1; transform: none; transition: none; }
  .a43-shop-blob, .a43-shop-orchard-dial, .a43-shop-orchard-needle, .a43-shop-live-dot,
  .a43-shop-card-img::before { animation: none !important; }
  .a43-shop-card:hover .a43-shop-card-img img { transform: none; }
  .a43-shop-card:hover { transform: none; }
}
