/* ===== SHOP PAGE STYLES — SignTasticUK ===== */

/* ---- SHOP HERO ---- */
.shop-hero {
  background: var(--black-2);
  border-bottom: 1px solid var(--border);
  padding: 120px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.shop-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(214,90,31,0.09) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(214,90,31,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.shop-hero__inner { position: relative; z-index: 1; }
.shop-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-glow);
  border: 1px solid rgba(214,90,31,0.4);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.shop-hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
.shop-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.shop-hero p {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.shop-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.shop-hero__stat {
  text-align: center;
}
.shop-hero__stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1.1;
}
.shop-hero__stat span {
  font-size: 0.8rem;
  color: var(--grey);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---- CATEGORY FILTERS ---- */
.shop-filters-wrap {
  background: var(--black);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  z-index: 90;
}
.shop-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding: 16px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.shop-filters::-webkit-scrollbar { display: none; }

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--grey-light);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.filter-btn:hover {
  border-color: rgba(214,90,31,0.5);
  color: var(--white);
}
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(214,90,31,0.35);
}
.filter-btn .filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
}
.filter-btn.active .filter-count {
  background: rgba(255,255,255,0.25);
}

/* ---- PRODUCTS SECTION ---- */
.shop-section {
  padding: 72px 0 96px;
}

.shop-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.shop-section__header h2 {
  font-size: 1.6rem;
  font-weight: 800;
}
.shop-count {
  font-size: 0.85rem;
  color: var(--grey);
}

/* ---- PRODUCT GRID ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ---- PRODUCT CARD ---- */
.product-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  border-color: rgba(214,90,31,0.4);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.product-card--bundle {
  border-color: rgba(214,90,31,0.5);
  background: linear-gradient(145deg, var(--black-3) 0%, rgba(214,90,31,0.05) 100%);
}
.product-card--bundle::before {
  content: 'Best Value Bundle';
  position: absolute;
  top: 14px; right: -28px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 36px;
  transform: rotate(45deg);
  transform-origin: center;
  z-index: 3;
  white-space: nowrap;
}

/* Card image */
.product-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--black-2);
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.product-card:hover .product-card__img img {
  transform: scale(1.07);
}
.product-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--grey);
}
.product-card__img-placeholder svg {
  opacity: 0.2;
  width: 56px; height: 56px;
}
.product-card__img-placeholder span {
  font-size: 0.8rem;
  opacity: 0.4;
}
.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,11,0.5) 0%, transparent 60%);
  pointer-events: none;
}

/* Badges */
.product-card__badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 2;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.badge--popular {
  background: rgba(214,90,31,0.85);
  color: var(--white);
}
.badge--custom {
  background: rgba(41,128,185,0.85);
  color: var(--white);
}
.badge--fast {
  background: rgba(39,174,96,0.85);
  color: var(--white);
}
.badge::before {
  content: '';
  width: 5px; height: 5px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.8;
}

/* Card body */
.product-card__info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}
.product-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
}
.product-card__desc {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.6;
  flex: 1;
}
.product-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-card__features li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 7px;
}
.product-card__features li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.product-card__footer {
  padding: 0 24px 24px;
}
.product-card .btn--primary {
  width: 100%;
  justify-content: center;
  padding: 12px 24px;
  font-size: 0.9rem;
}

/* ---- PRODUCT MODAL ---- */
.shop-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.shop-modal.open {
  opacity: 1;
  pointer-events: all;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.modal-box {
  position: relative;
  z-index: 1;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.modal-box::-webkit-scrollbar { width: 6px; }
.modal-box::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.shop-modal.open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 10;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: var(--grey-light);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.15); color: var(--white); }

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}
@media (max-width: 680px) {
  .modal-grid { grid-template-columns: 1fr; }
}

.modal-img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  border-radius: 16px 0 0 16px;
  background: var(--black-2);
}
@media (max-width: 680px) {
  .modal-img { border-radius: 16px 16px 0 0; aspect-ratio: 16/9; }
}
.modal-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.modal-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--grey);
}
.modal-img-placeholder svg { opacity: 0.18; width: 80px; height: 80px; }
.modal-img-placeholder span { font-size: 0.9rem; opacity: 0.35; }

.modal-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}
.modal-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}
.modal-desc {
  font-size: 0.93rem;
  color: var(--grey);
  line-height: 1.65;
}
.modal-features {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modal-features li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- CUSTOM OPTIONS ---- */
.custom-options {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.custom-options__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.option-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.option-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}
.option-group input[type="text"],
.option-group select {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: inherit;
  font-size: 0.88rem;
  padding: 10px 14px;
  outline: none;
  width: 100%;
  transition: border-color var(--transition);
}
.option-group input[type="text"]:focus,
.option-group select:focus {
  border-color: var(--orange);
}
.option-group select option {
  background: var(--black-2);
  color: var(--white);
}

/* Colour swatches */
.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.color-swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  flex-shrink: 0;
}
.color-swatch:hover {
  transform: scale(1.15);
}
.color-swatch.active {
  border-color: var(--white);
  box-shadow: 0 0 0 2px var(--orange);
}
.color-swatch.custom-color {
  background: linear-gradient(135deg, #f00, #ff0, #0f0, #0ff, #00f, #f0f);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--white);
}

/* Logo upload zone */
.logo-upload-zone {
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.logo-upload-zone:hover {
  border-color: var(--orange);
  background: rgba(214,90,31,0.04);
}
.logo-upload-zone svg { width: 28px; height: 28px; color: var(--grey); }
.logo-upload-zone p {
  font-size: 0.8rem;
  color: var(--grey);
  margin: 0;
}
.logo-upload-zone .link-text {
  color: var(--orange);
  text-decoration: underline;
  cursor: pointer;
}
.logo-upload-zone small {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}
.logo-upload-note {
  font-size: 0.78rem;
  color: var(--orange);
  margin: 0;
}

/* Modal CTA */
.modal-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 700;
}
.modal-wa-btn svg {
  width: 22px; height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}
.modal-wa-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--grey);
  margin: 0;
}

/* ---- BEST SELLERS SECTION ---- */
.best-sellers {
  background: var(--black-2);
  padding: 96px 0;
}
.best-sellers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
@media (max-width: 800px) {
  .best-sellers__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .best-sellers__grid { grid-template-columns: 1fr; gap: 16px; }
}

.bs-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bs-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.bs-card:hover {
  border-color: rgba(214,90,31,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.bs-card:hover::before {
  transform: scaleX(1);
}
.bs-card__icon {
  width: 48px; height: 48px;
  background: var(--orange-glow);
  border: 1px solid rgba(214,90,31,0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.bs-card__icon svg { width: 24px; height: 24px; }
.bs-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(214,90,31,0.12);
  border: 1px solid rgba(214,90,31,0.25);
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  width: fit-content;
}
.bs-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}
.bs-card p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.6;
  flex: 1;
}
.bs-card .btn {
  align-self: flex-start;
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ---- SHOP EMPTY STATE ---- */
.shop-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--grey);
  grid-column: 1 / -1;
}
.shop-empty svg {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  opacity: 0.2;
}
.shop-empty h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--grey-light);
}
.shop-empty p {
  font-size: 0.9rem;
}

/* ---- SHOP CTA STRIP ---- */
.shop-cta-strip {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.shop-cta-strip::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.shop-cta-strip__inner {
  position: relative;
  z-index: 1;
}
.shop-cta-strip h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.shop-cta-strip p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.shop-cta-strip .btn--primary {
  background: var(--white);
  color: var(--orange);
}
.shop-cta-strip .btn--primary:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}
.shop-cta-strip .btn--outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  margin-left: 12px;
}
.shop-cta-strip .btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* ---- PRODUCT PRICE ---- */
.product-card__price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--orange);
  margin-top: 4px;
}
.product-card__price--poa {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--grey);
}

/* ---- MODAL PRICE ROW ---- */
.modal-price-row {
  align-items: baseline;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(214,90,31,0.08);
  border: 1px solid rgba(214,90,31,0.2);
  border-radius: var(--radius-sm);
}
.modal-price-label {
  font-size: 0.8rem;
  color: var(--grey);
  font-weight: 500;
}
.modal-price-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.modal-price-poa {
  font-size: 0.85rem;
  color: var(--grey);
  font-style: italic;
}

/* ---- MODAL DIVIDER ---- */
.modal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.2);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.modal-divider::before,
.modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ---- STRIPE BUTTON ---- */
.btn--stripe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  background: #635BFF;
  color: white;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-family: inherit;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(99,91,255,0.35);
}
.btn--stripe:hover {
  background: #5248e8;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(99,91,255,0.45);
  color: white;
}
.btn--stripe:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.stripe-btn-spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- TOAST NOTIFICATION ---- */
.shop-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 9999;
  background: #1e1e1e;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  white-space: nowrap;
  max-width: 90vw;
  text-align: center;
}
.shop-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.shop-toast--success {
  border-color: rgba(39,174,96,0.4);
  background: linear-gradient(135deg, #0d1f14, #1e1e1e);
  color: #2ecc71;
}
.shop-toast--error {
  border-color: rgba(231,76,60,0.4);
  background: linear-gradient(135deg, #1f0d0d, #1e1e1e);
  color: #e74c3c;
}

/* ---- ADMIN SHOP STYLES ---- */
.shop-products-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.shop-product-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.shop-product-row:hover {
  border-color: rgba(214,90,31,0.25);
}
.shop-product-row__thumb {
  width: 64px; height: 48px;
  border-radius: 6px;
  background: var(--black-3);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px dashed rgba(255,255,255,0.1);
}
.shop-product-row__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.shop-product-row__thumb svg {
  width: 24px; height: 24px;
  opacity: 0.25;
  color: var(--grey);
}
.shop-product-row__info {
  flex: 1;
  min-width: 0;
}
.shop-product-row__name {
  font-weight: 600;
  font-size: 0.93rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shop-product-row__meta {
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 3px;
}
.shop-product-row__badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.shop-product-row__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* Shop edit form */
.shop-form {
  background: var(--black-2);
  border: 1px solid rgba(214,90,31,0.3);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.shop-form h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--orange);
}
.shop-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .shop-form-grid { grid-template-columns: 1fr; }
}
.shop-form-grid .field--full {
  grid-column: 1 / -1;
}
.shop-form-grid .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.shop-form-grid label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.shop-form-grid input,
.shop-form-grid select,
.shop-form-grid textarea {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: inherit;
  font-size: 0.88rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color var(--transition);
}
.shop-form-grid input:focus,
.shop-form-grid select:focus,
.shop-form-grid textarea:focus {
  border-color: var(--orange);
}
.shop-form-grid textarea {
  resize: vertical;
  min-height: 80px;
}
.shop-form-labels {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.label-checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--grey-light);
  user-select: none;
}
.label-checkbox input[type="checkbox"] {
  accent-color: var(--orange);
  width: 14px; height: 14px;
  cursor: pointer;
}

/* ---- QUOTE FORM SECTION ---- */
.quote-section {
  background: var(--black-2);
  padding: 80px 0 96px;
  border-top: 1px solid var(--border);
}
.quote-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.qf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.qf-grid .cf-field { margin-bottom: 0; }
.qf-grid .cf-field--full { grid-column: 1 / -1; }

/* File upload */
.cf-file-wrap { display: flex; flex-direction: column; gap: 8px; }
.cf-file-input { display: none; }
.cf-file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--black);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  color: var(--grey-light);
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.cf-file-label:hover {
  border-color: var(--orange);
  background: rgba(214,90,31,0.04);
}
.cf-file-hint { font-size: 0.74rem; color: rgba(255,255,255,0.35); }

@media (max-width: 640px) {
  .quote-form-wrap { padding: 28px 20px; }
  .qf-grid { grid-template-columns: 1fr; }
}

/* ---- RESPONSIVE FIXES ---- */
@media (max-width: 640px) {
  .shop-hero { padding: 100px 0 48px; }
  .shop-filters-wrap { top: 64px; }
  .shop-section { padding: 48px 0 64px; }
  .modal-content { padding: 24px 20px; }
  .best-sellers { padding: 64px 0; }
  .shop-cta-strip { padding: 48px 0; }
  .shop-cta-strip .btn--outline { margin-left: 0; margin-top: 8px; }
}
