/**
 * GMINGO Shop / Marketplace — premium mobile-first layout
 */
body.gmingo-shop-page {
  background: #f4f7fb;
}
body.gmingo-shop-page::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(42rem 30rem at 4% -8%, rgba(47, 128, 237, 0.07), transparent 58%),
    radial-gradient(36rem 26rem at 100% 20%, rgba(30, 58, 138, 0.04), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #fff 40%, #f4f7fb 100%);
}

.gp-shop {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}
@media (min-width: 640px) { .gp-shop { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .gp-shop { padding-inline: 2rem; } }

/* Breadcrumb */
.gp-shop-crumb {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding-top: 1rem;
  font-size: 0.75rem;
  color: #64748b;
}
.gp-shop-crumb a { color: #64748b; transition: color 0.2s; }
.gp-shop-crumb a:hover { color: #2f80ed; }

/* Hero */
.gp-shop-hero {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.15rem 0 1.25rem;
}
.gp-shop-hero__top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .gp-shop-hero__top {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
  }
}
.gp-shop-hero__kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2f80ed;
}
.gp-shop-hero__title {
  margin-top: 0.2rem;
  font-size: clamp(1.75rem, 4.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.1;
}
.gp-shop-hero__count {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: #64748b;
}

/* Hero sort — desktop only (top right) */
.gp-shop-hero__sort {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
  max-width: 14rem;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .gp-shop-hero__sort {
    display: flex;
  }
}
.gp-shop-hero__sort label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
}
.gp-shop-hero__sort label svg { color: #2f80ed; }
.gp-shop-hero__sort select {
  width: 100%;
  min-height: 46px;
  padding: 0.55rem 2.25rem 0.55rem 0.95rem;
  border-radius: 14px;
  border: 1.5px solid #e2e8f0;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%2394a3b8' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") no-repeat right 0.85rem center;
  appearance: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.gp-shop-hero__sort select:focus {
  outline: none;
  border-color: rgba(47, 128, 237, 0.55);
  box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.12);
}

/* Trust strip — desktop only + breathe / hover */
.gp-shop-trust {
  display: none;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .gp-shop-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@keyframes gp-shop-trust-breathe {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03), 0 8px 20px -16px rgba(47, 128, 237, 0.18);
  }
  50% {
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 8px 22px -12px rgba(47, 128, 237, 0.28), 0 2px 8px rgba(15, 23, 42, 0.06);
  }
}
@keyframes gp-shop-trust-icon-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.gp-shop-trust__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: linear-gradient(165deg, #fff 0%, #f8fafc 100%);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  cursor: default;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background 0.35s ease;
  animation: gp-shop-trust-breathe 4.8s ease-in-out infinite;
  will-change: transform, box-shadow;
}
.gp-shop-trust__item:nth-child(2) {
  animation-delay: 0.55s;
}
.gp-shop-trust__item:nth-child(3) {
  animation-delay: 1.1s;
}
.gp-shop-trust__item:hover {
  animation-play-state: paused;
  transform: translateY(-5px) scale(1.03);
  border-color: rgba(47, 128, 237, 0.35);
  background: linear-gradient(165deg, #fff 0%, #eff6ff 100%);
  box-shadow:
    0 14px 28px -14px rgba(47, 128, 237, 0.4),
    0 4px 12px rgba(15, 23, 42, 0.06);
}
.gp-shop-trust__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(47, 128, 237, 0.12), rgba(30, 58, 138, 0.08));
  color: #2f80ed;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    box-shadow 0.35s ease,
    color 0.35s ease;
  animation: gp-shop-trust-icon-breathe 3.6s ease-in-out infinite;
}
.gp-shop-trust__item:nth-child(2) .gp-shop-trust__icon {
  animation-delay: 0.4s;
}
.gp-shop-trust__item:nth-child(3) .gp-shop-trust__icon {
  animation-delay: 0.8s;
}
.gp-shop-trust__item:hover .gp-shop-trust__icon {
  animation-play-state: paused;
  transform: scale(1.12);
  background: linear-gradient(145deg, #2f80ed, #1e4a9e);
  color: #fff;
  box-shadow: 0 8px 18px -8px rgba(47, 128, 237, 0.65);
}
.gp-shop-trust__icon svg {
  width: 1.05rem;
  height: 1.05rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.gp-shop-trust__item:hover .gp-shop-trust__icon svg {
  transform: scale(1.06);
}
.gp-shop-trust__copy {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}
.gp-shop-trust__copy strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  transition: color 0.3s ease;
}
.gp-shop-trust__item:hover .gp-shop-trust__copy strong {
  color: #1e4a9e;
}
.gp-shop-trust__copy span {
  font-size: 0.68rem;
  font-weight: 500;
  color: #64748b;
  transition: color 0.3s ease;
}
.gp-shop-trust__item:hover .gp-shop-trust__copy span {
  color: #475569;
}
@media (prefers-reduced-motion: reduce) {
  .gp-shop-trust__item,
  .gp-shop-trust__icon {
    animation: none;
  }
  .gp-shop-trust__item:hover {
    transform: none;
  }
}

/* Layout */
.gp-shop-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .gp-shop-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

/* Sidebar — visible on all viewports; sticky rail on desktop */
.gp-shop-sidebar {
  display: block;
  width: 100%;
  max-width: none;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .gp-shop-sidebar {
    max-width: 300px;
  }
}
.gp-shop-sidebar__sticky {
  position: relative;
  top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-height: none;
  overflow: visible;
  padding-bottom: 0;
}
@media (min-width: 1024px) {
  .gp-shop-sidebar__sticky {
    position: sticky;
    top: 5.5rem;
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
    scrollbar-width: thin;
    padding-bottom: 0.5rem;
  }
}
.gp-shop-sidebar__sticky > .gp-shop-filters {
  flex: 0 0 auto;
}

/* Filter panel — premium flat (matches refine mock) */
.gp-shop-filters {
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 18px 40px -28px rgba(15, 23, 42, 0.18);
  overflow: hidden;
}
.gp-shop-filters::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #2f80ed 55%, #38bdf8);
}
.gp-shop-filters--sheet {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.gp-shop-filters--sheet::before { display: none; }
.gp-shop-filters__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.15rem 1.2rem 0.35rem;
}
.gp-shop-filters__reset-top {
  font-size: 0.72rem;
  font-weight: 700;
  color: #2f80ed;
  text-decoration: none;
  white-space: nowrap;
  padding-top: 0.2rem;
}
.gp-shop-filters__reset-top:hover { text-decoration: underline; }
.gp-shop-filters__kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2f80ed;
}
.gp-shop-filters__title {
  margin-top: 0.2rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.gp-shop-filters__body {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  padding: 0.85rem 1.2rem 0.35rem;
}
.gp-shop-fg {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.gp-shop-fg__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
}
.gp-shop-fg__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  background: rgba(47, 128, 237, 0.1);
  color: #2f80ed;
  flex-shrink: 0;
}
.gp-shop-price-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.45rem;
  align-items: center;
}
.gp-shop-price-dash {
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.85rem;
}
.gp-shop-price-row input[type="number"],
.gp-shop-select-wrap select {
  width: 100%;
  min-height: 46px;
  padding: 0.55rem 0.9rem;
  border-radius: 14px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0f172a;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.gp-shop-select-wrap {
  position: relative;
}
.gp-shop-select-wrap select {
  padding-right: 2.35rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%2394a3b8' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  cursor: pointer;
}
.gp-shop-price-row input:focus,
.gp-shop-select-wrap select:focus {
  outline: none;
  border-color: rgba(47, 128, 237, 0.55);
  box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.12);
}
.gp-shop-range {
  width: 100%;
  margin-top: 0.15rem;
  accent-color: #2f80ed;
}
.gp-shop-featured {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  border: 1px solid #eef2f7;
  background: #f8fafc;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
}
.gp-shop-featured input {
  width: 1rem;
  height: 1rem;
  accent-color: #2f80ed;
}
.gp-shop-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0;
}
.gp-shop-chip {
  display: inline-flex;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1d4ed8;
  background: rgba(47, 128, 237, 0.1);
  border: 1px solid rgba(47, 128, 237, 0.14);
}
.gp-shop-filters__actions {
  padding: 0.85rem 1.2rem 1.2rem;
}
.gp-shop-filters__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: #2f80ed;
  box-shadow: 0 12px 28px -14px rgba(47, 128, 237, 0.75);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.gp-shop-filters__btn:hover {
  background: #2569c7;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px -14px rgba(47, 128, 237, 0.85);
}
.gp-shop-filters__reset {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-bottom: 0.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.gp-shop-filters__reset:hover { border-color: #bfdbfe; color: #2f80ed; }

/* Legacy accordion (kept for safety if used elsewhere) */
.gp-shop-acc {
  border-top: 1px solid #f1f5f9;
}
.gp-shop-acc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  list-style: none;
}
.gp-shop-acc summary::-webkit-details-marker { display: none; }
.gp-shop-acc summary svg.chev {
  width: 1rem;
  height: 1rem;
  color: #94a3b8;
}
.gp-shop-acc__body { padding: 0 1rem 0.85rem; }
.gp-shop-field { margin-bottom: 0.65rem; }
.gp-shop-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.8125rem;
  color: #475569;
  cursor: pointer;
}
.gp-shop-check input { width: 1rem; height: 1rem; accent-color: #2f80ed; }

/* Sidebar extras */
.gp-shop-side-card {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px -18px rgba(15, 23, 42, 0.12);
}
.gp-shop-side-card h3 {
  font-size: 0.78rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.gp-shop-side-card p,
.gp-shop-side-card li {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.5;
}
.gp-shop-side-card ul { list-style: none; padding: 0; margin: 0; }
.gp-shop-side-card li + li { margin-top: 0.35rem; }
.gp-shop-side-card a {
  color: #2f80ed;
  font-weight: 600;
  font-size: 0.75rem;
}
.gp-shop-brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.gp-shop-brand-pill {
  padding: 0.3rem 0.55rem;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  background: #f1f5f9;
  color: #475569;
}
.gp-shop-flash {
  padding: 0.75rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #fcd34d;
  text-align: center;
}
.gp-shop-flash strong { display: block; font-size: 0.85rem; color: #92400e; }
.gp-shop-flash span { font-size: 0.7rem; color: #b45309; }
.gp-shop-trust-card {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}
.gp-shop-trust-card svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: #2f80ed;
}
.gp-shop-trust-card strong {
  display: block;
  font-size: 0.78rem;
  color: #0f172a;
}
.gp-shop-trust-card span {
  font-size: 0.7rem;
  color: #64748b;
}

/* Main content */
.gp-shop-main { flex: 1; min-width: 0; }

/* Category icons — seamless right-to-left marquee */
.gp-shop-cats {
  margin-bottom: 1rem;
  overflow: hidden;
}
.gp-shop-cats__marquee {
  overflow: hidden;
  width: 100%;
  padding: 0.35rem 0 0.55rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
}
.gp-shop-cats__track {
  display: flex;
  align-items: stretch;
  width: max-content;
  gap: 0;
  animation: gp-shop-cats-marquee 38s linear infinite;
  will-change: transform;
}
.gp-shop-cats__marquee.is-paused .gp-shop-cats__track,
.gp-shop-cats__marquee:hover .gp-shop-cats__track,
.gp-shop-cats__marquee:focus-within .gp-shop-cats__track {
  animation-play-state: paused;
}
@keyframes gp-shop-cats-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.gp-shop-cats__set {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding-inline: 0.35rem;
  flex-shrink: 0;
}
.gp-shop-cat {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 4.75rem;
  max-width: 5.25rem;
  padding: 0.4rem 0.3rem;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  border: 2px solid transparent;
  background: transparent;
}
.gp-shop-cat:hover { transform: translateY(-2px); }
.gp-shop-cat.is-active {
  border-color: #2f80ed;
  background: rgba(47, 128, 237, 0.06);
  box-shadow: 0 8px 20px -12px rgba(47, 128, 237, 0.4);
}
.gp-shop-cat__thumb {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(145deg, #f1f5f9, #e8eef7);
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 16px -10px rgba(15, 23, 42, 0.2);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.gp-shop-cat__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gp-shop-cat__thumb--icon {
  color: #2f80ed;
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
}
.gp-shop-cat__thumb--more {
  color: #64748b;
  background: #f8fafc;
}
.gp-shop-cat:hover .gp-shop-cat__thumb,
.gp-shop-cat.is-active .gp-shop-cat__thumb {
  transform: scale(1.05);
  border-color: rgba(47, 128, 237, 0.35);
  box-shadow: 0 10px 22px -10px rgba(47, 128, 237, 0.35);
}
.gp-shop-cat__label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #334155;
  text-align: center;
  line-height: 1.2;
  max-width: 5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gp-shop-cat.is-active .gp-shop-cat__label { color: #1d4ed8; }

.gp-shop-chip--clear {
  background: #fff !important;
  color: #64748b !important;
  border-color: #e2e8f0 !important;
}

/* Mega deals */
.gp-shop-deals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: linear-gradient(105deg, #1e3a8a 0%, #2f80ed 45%, #60a5fa 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 40px -20px rgba(47, 128, 237, 0.65);
  animation: gp-shop-deals-pulse 3s ease-in-out infinite;
  transition: transform 0.2s;
}
.gp-shop-deals:hover { transform: translateY(-1px); color: #fff; }
@keyframes gp-shop-deals-pulse {
  0%, 100% { box-shadow: 0 16px 40px -20px rgba(47, 128, 237, 0.65); }
  50% { box-shadow: 0 20px 48px -16px rgba(47, 128, 237, 0.8); }
}
.gp-shop-deals strong { font-size: 0.95rem; display: block; }
.gp-shop-deals span { font-size: 0.78rem; opacity: 0.9; }
.gp-shop-deals__cta {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* Toolbar */
.gp-shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px -18px rgba(15, 23, 42, 0.1);
}
.gp-shop-toolbar__search {
  flex: 1;
  min-width: 10rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.75rem;
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}
.gp-shop-toolbar__search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: 0.8125rem;
  outline: none;
}
.gp-shop-toolbar__count {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
}
.gp-shop-toolbar__sort select {
  min-height: 42px;
  padding: 0.4rem 1.75rem 0.4rem 0.65rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 0.8125rem;
  font-weight: 600;
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%2394a3b8' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") no-repeat right 0.5rem center;
  cursor: pointer;
}
.gp-shop-view-toggle {
  display: flex;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}
.gp-shop-view-toggle button {
  min-width: 42px;
  min-height: 42px;
  border: 0;
  background: #fff;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.gp-shop-view-toggle button.is-active {
  background: #eff6ff;
  color: #2f80ed;
}
.gp-shop-view-toggle button + button { border-left: 1px solid #e2e8f0; }
.gp-shop-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  width: 100%;
}
.gp-shop-active-filters:empty { display: none; }

/* Product grid */
.gp-shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .gp-shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
}
@media (min-width: 1280px) {
  .gp-shop-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; }
}
.gp-shop-grid--list {
  grid-template-columns: 1fr;
}
.gp-shop-grid--list .gp-shop-grid__item > a {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.75rem;
}
.gp-shop-grid--list .gp-shop-grid__item .aspect-square {
  aspect-ratio: 1;
}
.gp-shop-grid__item {
  animation: gp-shop-fade-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes gp-shop-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.gp-shop-grid .mkpc-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.35s ease;
}
.gp-shop-grid .mkpc-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 4px 8px -4px rgba(26, 58, 124, 0.08),
    0 22px 44px -18px rgba(26, 58, 124, 0.18);
}
.gp-shop-grid .product-image-contain {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.gp-shop-grid .mkpc-card:hover .product-image-contain {
  transform: scale(1.04);
}

/* Skeleton */
.gp-shop-skeleton {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.gp-shop-skeleton.is-loading { display: grid; }
.gp-shop-skeleton__card {
  border-radius: 12px;
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: gp-shop-shimmer 1.2s infinite;
}
.gp-shop-skeleton__card--img { aspect-ratio: 1; }
.gp-shop-skeleton__card--body { height: 4rem; margin-top: 0.5rem; }
@keyframes gp-shop-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Empty */
.gp-shop-empty {
  text-align: center;
  padding: 3rem 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px dashed #e2e8f0;
}
.gp-shop-empty p { color: #64748b; margin-top: 0.5rem; }

/* Pagination */
.gp-shop-pagination {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.gp-shop-pagination__info {
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 600;
}
.gp-shop-pagination__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.gp-shop-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 0.75rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.gp-shop-page-btn:hover {
  border-color: #2f80ed;
  color: #2f80ed;
  background: #eff6ff;
}
.gp-shop-page-btn.is-active {
  background: #2f80ed;
  border-color: #2f80ed;
  color: #fff;
  pointer-events: none;
}
.gp-shop-page-btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

/* Mobile filter FAB — hidden; filters show inline on mobile */
.gp-shop-filter-fab {
  display: none !important;
}

/* Bottom sheet kept for fallback but hidden — inline filters are primary on mobile */
#gp-shop-filters.gp-sheet,
#gp-shop-filters-overlay {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .gp-shop-cats__track { animation: none; }
  .gp-shop-grid__item { animation: none; }
  .gp-shop-grid .mkpc-card:hover { transform: none; }
}
