/* ====================================================================
   shop.css — стили магазина (шаг 2.12, 2026-04-22)
   Класс-префикс: .shop-*
   Бренд-цвета: #ff2d78 (pink), #00f5ff (cyan)
   ==================================================================== */

.shop-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 60px) clamp(16px, 3vw, 40px);
  color: #fff;
  font-family: 'Inter', 'Oswald', sans-serif;
  position: relative;
  z-index: 2;
}

/* ===== Crumbs ===== */
.shop-crumbs {
  margin-bottom: clamp(14px, 2vw, 22px);
  font-size: clamp(12px, 1vw, 14px);
  color: rgba(255,255,255,0.7);
}
.shop-crumb {
  color: #00f5ff;
  text-decoration: none;
  transition: color 0.2s;
}
.shop-crumb:hover { color: #ff2d78; text-shadow: 0 0 10px rgba(255,45,120,0.4); }
.shop-crumb--current { color: rgba(255,255,255,0.95); }
.shop-crumb-sep { margin: 0 8px; opacity: 0.5; }

/* ===== Section title ===== */
.shop-section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  margin: clamp(28px, 4vw, 50px) 0 clamp(16px, 2vw, 28px);
  position: relative;
  padding-bottom: 10px;
}
.shop-section-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #ff2d78, #00f5ff);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255,45,120,0.5);
}

/* ===== HOME: hero ===== */
.shop-hero {
  padding: clamp(30px, 6vw, 80px) 0 clamp(20px, 3vw, 40px);
  text-align: center;
}
.shop-hero__eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 500;
  letter-spacing: 0.35em;
  color: #00f5ff;
  margin-bottom: 14px;
  text-shadow: 0 0 12px rgba(0,245,255,0.55);
}
.shop-hero__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 16px;
  color: #fff;
  text-shadow: 0 0 20px rgba(255,255,255,0.12);
}
.shop-hero__descr {
  font-size: clamp(14px, 1.4vw, 18px);
  color: rgba(255,255,255,0.75);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ===== HOME: 3 category cards (split-layout: картинка сверху, текст+CTA снизу) ===== */
.shop-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(24px, 4vw, 50px);
}
.shop-cat-card {
  display: flex;
  flex-direction: column;
  border-radius: clamp(12px, 1.5vw, 20px);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.4,0.2,0.2,1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  background: #0a0a0f;
  border: 1px solid rgba(255,255,255,0.08);
}
.shop-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 clamp(20px, 3vw, 40px) clamp(40px, 5vw, 70px) rgba(255,45,120,0.35),
              0 0 clamp(30px, 4vw, 60px) rgba(0,245,255,0.18);
  border-color: rgba(255,45,120,0.5);
}
.shop-cat-card__bg {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #0a0a0f;
  transition: transform 0.6s ease;
  flex-shrink: 0;
}
.shop-cat-card:hover .shop-cat-card__bg { transform: scale(1.04); }
.shop-cat-card__overlay { display: none; }
.shop-cat-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: clamp(16px, 2vw, 22px);
  background: #0a0a0f;
}

/* Tablet: 2 колонки */
@media (max-width: 960px) {
  .shop-categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
/* Mobile: 2 колонки компактно */
@media (max-width: 640px) {
  .shop-main .shop-categories .shop-categories__grid,
  .shop-categories__grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
  .shop-cat-card {
    min-width: 0 !important;
  }
  .shop-cat-card__body {
    padding: 12px 10px 14px !important;
    gap: 4px !important;
  }
  .shop-cat-card__title {
    font-size: 14px !important;
    line-height: 1.15 !important;
    margin: 0 !important;
  }
  .shop-cat-card__count {
    font-size: 11px !important;
    margin-bottom: 8px !important;
  }
  .shop-cat-card__cta {
    padding: 8px 12px !important;
    font-size: 11px !important;
    letter-spacing: 0.04em !important;
    max-width: 100% !important;
  }
}
.shop-cat-card__emoji {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 8px;
  filter: drop-shadow(0 0 12px rgba(255,45,120,0.4));
}
.shop-cat-card__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.1;
}
.shop-cat-card__count {
  font-size: clamp(12px, 1.1vw, 14px);
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.shop-cat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(120deg, #ff2d78, #ff4b94 60%, #00f5ff 130%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255,45,120,0.35);
  transition: transform 0.25s, box-shadow 0.25s;
  width: max-content;
}
.shop-cat-card:hover .shop-cat-card__cta {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 10px 28px rgba(255,45,120,0.55), 0 0 24px rgba(0,245,255,0.3);
}

/* ===== Theme pills (home teaser) ===== */
.shop-themes-teaser {
  margin-top: clamp(28px, 4vw, 50px);
}
.shop-themes-teaser__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.shop-theme-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.shop-theme-pill:hover {
  background: rgba(255,45,120,0.15);
  border-color: #ff2d78;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255,45,120,0.3);
}
.shop-theme-pill__emoji { font-size: 1.2em; }
.shop-theme-pill__count {
  font-size: 0.8em;
  color: rgba(255,255,255,0.55);
  padding: 2px 6px;
  background: rgba(0,0,0,0.3);
  border-radius: 6px;
}

/* ===== Benefits strip ===== */
.shop-benefits {
  margin-top: clamp(40px, 5vw, 70px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(12px, 2vw, 20px);
}
.shop-benefits__item {
  padding: clamp(16px, 2vw, 24px);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.shop-benefits__icon { font-size: clamp(28px, 3vw, 40px); margin-bottom: 8px; }
.shop-benefits__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 600;
  margin-bottom: 4px;
}
.shop-benefits__text { font-size: clamp(12px, 1vw, 14px); color: rgba(255,255,255,0.65); }

/* ===== Category header ===== */
.shop-cat-header {
  text-align: center;
  padding: clamp(20px, 3vw, 40px) 0;
  margin-bottom: clamp(16px, 2vw, 30px);
}
.shop-cat-header__emoji {
  font-size: clamp(36px, 5vw, 56px);
  filter: drop-shadow(0 0 16px rgba(255,45,120,0.4));
}
.shop-cat-header__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 500;
  margin: 10px 0 4px;
  color: #fff;
  text-shadow: 0 0 20px rgba(255,255,255,0.1);
}
.shop-cat-header__count {
  color: rgba(255,255,255,0.6);
  font-size: clamp(13px, 1.2vw, 16px);
}

/* ===== Themes grid (inside /shop/neon-signs) ===== */
.shop-themes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: clamp(12px, 1.8vw, 18px);
}
/* Mobile: темы строго в 2 колонки, не дробить */
@media (max-width: 640px) {
  .shop-main .shop-themes .shop-themes__grid,
  .shop-themes__grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
  .shop-theme-card { min-width: 0 !important; }
  .shop-theme-card__name { font-size: 14px !important; }
  .shop-theme-card__count { font-size: 11px !important; }
}
/* Theme card: split-layout как у product/cat cards — картинка 3:4 сверху, name+count снизу */
.shop-theme-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  background: #0a0a0f;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.shop-theme-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,245,255,0.5);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5),
              0 0 24px rgba(0,245,255,0.3);
}
.shop-theme-card__bg {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #0a0a0f;
  transition: transform 0.5s;
  flex-shrink: 0;
}
.shop-theme-card:hover .shop-theme-card__bg { transform: scale(1.04); }
.shop-theme-card__overlay { display: none; }
.shop-theme-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px 14px;
  background: #0a0a0f;
}
.shop-theme-card__emoji { display: none; }
.shop-theme-card__name {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.shop-theme-card__count {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}

/* ===== Product grid (cards) ===== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(14px, 2vw, 24px);
}
.shop-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.shop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,45,120,0.5);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45),
              0 0 24px rgba(255,45,120,0.22);
}
.shop-card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #0a0a0f;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.shop-card__img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.shop-card:hover .shop-card__img { transform: scale(1.04); }

/* Apple-like badge: минималистичная тонкая рамка, без градиента и glow */
.shop-card__badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.85);
  padding: 4px 10px;
  border: 1px solid rgba(0, 245, 255, 0.35);
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}
.shop-card__body {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.shop-card__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 2.5em;
}
.shop-card__dim {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 2px 0 0;
}
.shop-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}
.shop-card__price {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
  /* убираем text-shadow — никакого glow у цены */
}
.shop-card__old-price {
  font-size: clamp(12px, 1.1vw, 13px);
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
  font-weight: 300;
}

/* ===== Empty state ===== */
.shop-empty {
  padding: 40px 20px;
  text-align: center;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 14px;
}
.shop-empty a { color: #00f5ff; text-decoration: none; }

/* ===== Product page ===== */
.shop-product__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
}
@media (max-width: 860px) {
  .shop-product__inner { grid-template-columns: 1fr; }
}
.shop-product__gallery { position: relative; }
.shop-product__main-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: clamp(12px, 1.5vw, 20px);
  overflow: hidden;
  background: #0a0a0f;
  box-shadow: 0 clamp(16px, 3vw, 40px) clamp(30px, 5vw, 70px) rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}
.shop-product__main-img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  padding: clamp(10px, 2vw, 24px);
}
.shop-product__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 12px;
  border: 1px solid rgba(0, 245, 255, 0.35);
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}
.shop-product__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.shop-product__thumb {
  width: clamp(60px, 7vw, 84px);
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0a0a0f;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.shop-product__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shop-product__thumb:hover {
  border-color: rgba(0,245,255,0.6);
  transform: translateY(-2px);
}
.shop-product__thumb.is-active {
  border-color: #ff2d78;
  box-shadow: 0 0 12px rgba(255,45,120,0.55);
}

.shop-product__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 clamp(14px, 2vw, 22px);
  color: #fff;
  text-shadow: 0 0 20px rgba(255,255,255,0.1);
}
.shop-product__price-block {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
}
.shop-product__price {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
}
.shop-product__old-price {
  font-size: clamp(16px, 1.8vw, 22px);
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  font-weight: 300;
}
.shop-product__spec {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.8);
  font-size: clamp(14px, 1.2vw, 16px);
}
.shop-product__spec-label {
  color: rgba(255,255,255,0.55);
  min-width: 100px;
}
.shop-product__spec-value { color: #fff; }
.shop-product__variants {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}
.shop-product__variant-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.shop-product__variant {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0,245,255,0.1);
  border: 1px solid rgba(0,245,255,0.3);
  color: #fff;
  font-size: 13px;
}
.shop-product__variant-hint {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.shop-product__actions {
  margin-top: clamp(20px, 3vw, 30px);
  padding: clamp(18px, 2.5vw, 28px);
  background: linear-gradient(135deg, rgba(255,45,120,0.1), rgba(0,245,255,0.05));
  border-radius: 14px;
  border: 1px solid rgba(255,45,120,0.2);
}
.shop-product__cta.neon-cta,
.shop-cta-block__btn.neon-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(14px, 1.8vh, 20px) clamp(28px, 3vw, 44px);
  background: linear-gradient(120deg, #ff2d78 0%, #ff4b94 50%, #00f5ff 120%);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(255,45,120,0.4),
              0 0 32px rgba(255,45,120,0.2),
              inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.shop-product__cta:hover,
.shop-cta-block__btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 32px rgba(255,45,120,0.55),
              0 0 40px rgba(0,245,255,0.35);
  filter: brightness(1.08);
}
.shop-product__phone {
  display: block;
  margin-top: 14px;
  color: rgba(255,255,255,0.75);
  font-size: clamp(13px, 1.2vw, 15px);
  text-decoration: none;
  text-align: center;
}
.shop-product__phone strong { color: #00f5ff; text-shadow: 0 0 8px rgba(0,245,255,0.4); }
.shop-product__phone:hover { color: #fff; }

.shop-product__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 22px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.07);
}
.shop-product__feature {
  font-size: clamp(12px, 1.05vw, 13px);
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  letter-spacing: 0.02em;
  padding-left: 16px;
  position: relative;
}
.shop-product__feature::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(0, 245, 255, 0.5);
  transform: translateY(-50%);
}

/* ===== Similar block ===== */
.shop-similar { margin-top: clamp(40px, 5vw, 70px); }

/* ===== SEO-описание товара (под CTA) ===== */
.shop-product__seo {
  margin: clamp(40px, 5vw, 70px) 0 clamp(20px, 3vw, 40px);
  padding: clamp(24px, 3vw, 40px);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: clamp(14px, 2vw, 20px);
}
.shop-product__seo-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  margin: 0 0 clamp(16px, 2vw, 24px);
  color: #fff;
  letter-spacing: 0.01em;
}
.shop-product__seo-body {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.65;
}
.shop-product__seo-body p {
  margin: 0 0 14px;
}
.shop-product__seo-body p:last-child { margin-bottom: 0; }
.shop-product__seo-body strong {
  color: #fff;
  font-weight: 500;
}
.shop-product__seo-body a {
  color: #00f5ff;
  text-decoration: none;
  border-bottom: 1px dotted rgba(0, 245, 255, 0.4);
}
.shop-product__seo-body a:hover {
  color: #ff2d78;
  border-bottom-color: rgba(255, 45, 120, 0.6);
}
.shop-product__seo-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px 16px;
}
.shop-product__seo-list li {
  padding-left: 16px;
  position: relative;
  font-size: clamp(13px, 1.05vw, 14px);
  color: rgba(255, 255, 255, 0.7);
}
.shop-product__seo-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(0, 245, 255, 0.6);
}

/* ===== CTA block (shared) ===== */
.shop-cta-block {
  margin: clamp(40px, 5vw, 80px) 0 clamp(20px, 3vw, 40px);
  padding: clamp(28px, 4vw, 60px);
  background: linear-gradient(135deg, rgba(255,45,120,0.15) 0%, rgba(0,245,255,0.08) 100%);
  border: 1px solid rgba(255,45,120,0.3);
  border-radius: clamp(14px, 2vw, 22px);
  text-align: center;
}
.shop-cta-block__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 500;
  margin: 0 0 12px;
  color: #fff;
}
.shop-cta-block__descr {
  color: rgba(255,255,255,0.8);
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto 20px;
}
.shop-cta-block__phone {
  margin-top: 14px;
  color: rgba(255,255,255,0.7);
  font-size: clamp(13px, 1.2vw, 15px);
}
.shop-cta-block__phone a {
  color: #00f5ff;
  text-decoration: none;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(0,245,255,0.4);
}

/* ===== Prefers-reduced-motion ===== */
@media (prefers-reduced-motion: reduce) {
  .shop-card, .shop-cat-card, .shop-theme-card,
  .shop-product__cta, .shop-cta-block__btn {
    transition: none !important;
  }
  .shop-card__img, .shop-cat-card__bg, .shop-theme-card__bg {
    transition: none !important;
  }
}
