/* ═══════════════════════════════════════════════════════
   BODENLOS TV – FASHION MERCH SHOP
   Modern Fashion Store (Zalando / AboutYou Level)
   ═══════════════════════════════════════════════════════ */

/* ── Base Reset for Shop ── */
body {
  background: var(--bg, #05060d);
  color: #fff;
}

/* ═══════════════════════
   NAV
   ═══════════════════════ */
.shop-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(5, 6, 13, 0.7);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.shop-nav__back {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.shop-nav__back:hover { color: #fff; }
.shop-nav__brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 3px;
  color: #fff;
}
.shop-nav__brand span {
  background: linear-gradient(135deg, #6f74ff, #7ad6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 6px;
}
.shop-nav__cart {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
}
.shop-nav__cart:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ═══════════════════════
   HERO SECTION
   ═══════════════════════ */
.hero-section {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;
  max-height: 900px;
  margin-top: 64px;
  overflow: hidden;
}
.hero-section__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 13, 0.3) 0%,
    rgba(5, 6, 13, 0.1) 40%,
    rgba(5, 6, 13, 0.5) 70%,
    rgba(5, 6, 13, 0.95) 100%
  );
}
.hero-section__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 40px 80px;
  text-align: center;
  z-index: 2;
}
.hero-section__badge {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-section__content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -1px;
}
.hero-section__content p {
  color: rgba(255,255,255,0.65);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 0 0 32px;
  font-weight: 400;
}
.hero-section__cta {
  display: inline-flex;
  align-items: center; gap: 10px;
  padding: 16px 40px;
  border-radius: 999px;
  background: #fff;
  color: #05060d;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-section__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(255,255,255,0.15);
}
.hero-section__cta i {
  font-size: 0.8rem;
  animation: heroArrowBounce 2s ease-in-out infinite;
}
@keyframes heroArrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ═══════════════════════
   CATEGORY GRID
   ═══════════════════════ */
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 4px;
}
.category-card {
  position: relative;
  height: 70vh;
  min-height: 400px;
  max-height: 700px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
}
.category-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 6, 13, 0.85) 0%,
    rgba(5, 6, 13, 0.2) 40%,
    rgba(5, 6, 13, 0.05) 100%
  );
  transition: background 0.4s;
}
.category-card:hover .category-card__img {
  transform: scale(1.05);
}
.category-card:hover .category-card__overlay {
  background: linear-gradient(
    to top,
    rgba(5, 6, 13, 0.9) 0%,
    rgba(5, 6, 13, 0.35) 40%,
    rgba(5, 6, 13, 0.15) 100%
  );
}
.category-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px;
  z-index: 2;
}
.category-card__content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}
.category-card__btn {
  display: inline-flex;
  align-items: center; gap: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(12px);
}
.category-card:hover .category-card__btn {
  opacity: 1;
  transform: translateY(0);
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}
.category-card__btn i {
  font-size: 0.75rem;
  transition: transform 0.3s;
}
.category-card:hover .category-card__btn i {
  transform: translateX(4px);
}

/* ═══════════════════════
   SHOP MAIN LAYOUT
   ═══════════════════════ */
.shop-main {
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
  padding: 48px 40px 100px;
  gap: 40px;
  scroll-margin-top: 64px;
}

/* ═══════════════════════
   SIDEBAR FILTERS
   ═══════════════════════ */
.shop-filters {
  width: 280px;
  flex-shrink: 0;
}
.shop-filters__header {
  display: none;
}
.shop-filters__sticky {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding-right: 8px;
}
.shop-filters__sticky::-webkit-scrollbar { width: 3px; }
.shop-filters__sticky::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.filter-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* ── Category Nav Tree ── */
.category-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cat-nav__item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
}
.cat-nav__item:hover {
  background: rgba(255,255,255,0.04);
  color: #fff;
}
.cat-nav__item.active {
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-weight: 700;
}
.cat-nav__item i:first-child {
  width: 18px; text-align: center;
  font-size: 0.85rem;
  color: rgba(111,116,255,0.7);
}
.cat-nav__item.active i:first-child { color: #6f74ff; }
.cat-nav__count {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.2);
  min-width: 20px; text-align: right;
}
.cat-nav__arrow {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.15);
  transition: transform 0.25s;
  margin-left: 4px;
}
.cat-nav__section.open > .cat-nav__item--section .cat-nav__arrow {
  transform: rotate(90deg);
  color: #7ad6ff;
}
.cat-nav__subs {
  display: none;
  flex-direction: column;
  gap: 1px;
  padding-left: 18px;
  margin: 2px 0;
  border-left: 2px solid rgba(255,255,255,0.06);
  margin-left: 22px;
}
.cat-nav__section.open .cat-nav__subs { display: flex; }
.cat-nav__item--sub {
  padding: 8px 14px;
  font-size: 0.82rem;
  border-radius: 10px;
}
.cat-nav__item--sub.active {
  background: rgba(111,116,255,0.1);
  color: #7ad6ff;
}

/* ── Filter Groups ── */
.filter-group {
  margin-bottom: 28px;
}
.filter-group h4 {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.filter-chip { cursor: pointer; user-select: none; }
.filter-chip input { display: none; }
.filter-chip span {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45);
  transition: all 0.2s;
}
.filter-chip:hover span {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}
.filter-chip input:checked + span {
  background: #fff;
  color: #05060d;
  font-weight: 700;
  border-color: #fff;
}
.filter-reset {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.filter-reset:hover {
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}

/* ═══════════════════════
   TOOLBAR
   ═══════════════════════ */
.shop-content { flex: 1; min-width: 0; }
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}
.shop-toolbar__left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.shop-toolbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.shop-toolbar__count {
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}
.shop-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}
.shop-breadcrumb a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.shop-breadcrumb a:hover { color: #fff; }
.bc-sep { color: rgba(255,255,255,0.12); font-size: 0.55rem; }
.bc-current { color: #fff; font-weight: 600; }

.shop-toolbar__sort select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  padding: 10px 36px 10px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color 0.2s;
}
.shop-toolbar__sort select:hover { border-color: rgba(255,255,255,0.2); }
.shop-toolbar__sort select option {
  background: #111628; color: #fff;
}
.shop-toolbar__filter-toggle {
  display: none;
  padding: 10px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border-radius: 10px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  align-items: center; gap: 8px;
}
.shop-toolbar__filter-toggle:hover {
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}

/* ═══════════════════════
   PRODUCT GRID
   ═══════════════════════ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ═══════════════════════
   PRODUCT CARD – Clean Fashion
   ═══════════════════════ */
.shop-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: shopCardIn 0.5s ease both;
}
@keyframes shopCardIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.shop-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.shop-card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}
.shop-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.shop-card:hover .shop-card__img-wrap img {
  transform: scale(1.06);
}
.shop-card__quick {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px;
  text-align: center;
  background: rgba(5, 6, 13, 0.85);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.shop-card:hover .shop-card__quick {
  transform: translateY(0);
}

.shop-card__body {
  padding: 16px 18px 20px;
}
.shop-card__design {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.shop-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.35;
}
.shop-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-card__price {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}
.shop-card__buy {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: all 0.25s;
  text-decoration: none;
}
.shop-card__buy:hover {
  background: #fff;
  border-color: #fff;
  color: #05060d;
  transform: scale(1.1);
}

/* ═══════════════════════
   MODAL – Product Detail
   ═══════════════════════ */
.shop-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.shop-modal.active { opacity: 1; pointer-events: all; }
.shop-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 6, 13, 0.88);
  backdrop-filter: blur(16px);
}
.shop-modal__content {
  position: relative;
  background: #0c0e1a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  max-width: 960px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(40px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.shop-modal.active .shop-modal__content {
  transform: translateY(0) scale(1);
}
.shop-modal__close {
  position: absolute; top: 20px; right: 20px; z-index: 5;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}
.shop-modal__close:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.shop-modal__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.shop-modal__gallery {
  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
  border-radius: 24px 0 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 400px;
}
.shop-modal__gallery img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  transition: opacity 0.3s;
}
.shop-modal__details {
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.shop-modal__design {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 3px;
}
.shop-modal__details h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.shop-modal__price {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}
.modal-colors__title {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 10px;
}
.shop-modal__colors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.color-swatch {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
  outline: none;
}
.color-swatch:hover {
  transform: scale(1.15);
  border-color: rgba(255,255,255,0.4);
}
.color-swatch.active {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
}
.shop-modal__desc {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}
.shop-modal__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.shop-modal__meta div {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  display: flex; align-items: center;
}
.shop-modal__meta i {
  width: 22px;
  color: rgba(111,116,255,0.6);
  margin-right: 10px;
  font-size: 0.85rem;
}
.shop-modal__buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 14px;
  background: #fff;
  color: #05060d;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.shop-modal__buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,255,255,0.15);
}

/* ═══════════════════════
   FOOTER
   ═══════════════════════ */
.shop-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 40px;
}
.shop-footer__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.shop-footer__brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.shop-footer__brand span {
  background: linear-gradient(135deg, #6f74ff, #7ad6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 6px;
}
.shop-footer p {
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  margin: 0 0 8px;
}
.shop-footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.shop-footer a:hover { color: #fff; }
.shop-footer__sub {
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.2) !important;
}

/* ═══════════════════════
   LOADING STATE
   ═══════════════════════ */
.shop-loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  gap: 24px;
  color: rgba(255,255,255,0.4);
}
.shop-loading__spinner {
  width: 48px; height: 48px;
  border: 2px solid rgba(255,255,255,0.06);
  border-top-color: rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: shopSpin 0.8s linear infinite;
}
@keyframes shopSpin { to { transform: rotate(360deg); } }

/* ═══════════════════════
   LOAD MORE
   ═══════════════════════ */
.shop-load-more {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 40px auto 16px;
  padding: 16px 32px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}
.shop-load-more:hover {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
  background: rgba(255,255,255,0.04);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

/* ── Tablets & small desktops ── */
@media (max-width: 1200px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .shop-main { padding: 40px 24px 80px; }
}

/* ── Mobile landscape / tablet portrait ── */
@media (max-width: 900px) {
  .shop-nav { padding: 0 20px; }

  .hero-section {
    height: 70vh;
    min-height: 400px;
  }
  .hero-section__content { padding: 0 24px 60px; }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .category-card {
    height: 50vh;
    min-height: 300px;
    max-height: 500px;
  }
  .category-card__content { padding: 32px; }
  .category-card__btn { opacity: 1; transform: translateY(0); }

  .shop-filters {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 320px;
    z-index: 150;
    background: rgba(5, 6, 13, 0.98);
    backdrop-filter: blur(24px);
    border-right: 1px solid rgba(255,255,255,0.06);
    padding: 0 24px 24px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }
  .shop-filters.open { transform: translateX(0); }
  .shop-filters__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 20px;
  }
  .shop-filters__header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
  }
  .shop-filters__close {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    cursor: pointer;
  }
  .shop-filters__sticky { position: static; max-height: none; }
  .shop-toolbar__filter-toggle { display: inline-flex; }

  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .shop-modal__body { grid-template-columns: 1fr; }
  .shop-modal__gallery {
    border-radius: 24px 24px 0 0;
    min-height: 280px;
    padding: 32px;
  }
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .shop-nav { height: 56px; padding: 0 16px; }
  .shop-nav__brand { font-size: 0.95rem; letter-spacing: 2px; }

  .hero-section {
    height: 60vh;
    min-height: 360px;
    margin-top: 56px;
  }
  .hero-section__content { padding: 0 20px 48px; }
  .hero-section__badge {
    font-size: 0.6rem;
    padding: 6px 16px;
    letter-spacing: 2px;
  }
  .hero-section__cta {
    padding: 14px 32px;
    font-size: 0.85rem;
  }

  .category-card {
    height: 40vh;
    min-height: 260px;
    max-height: 400px;
  }
  .category-card__content { padding: 24px; }
  .category-card__content h2 { font-size: 1.8rem; }
  .category-card__btn {
    padding: 10px 24px;
    font-size: 0.8rem;
  }

  .shop-main { padding: 24px 16px 60px; gap: 0; }
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .shop-card { border-radius: 12px; }
  .shop-card__img-wrap { aspect-ratio: 3/4; }
  .shop-card__img-wrap img { padding: 12px; }
  .shop-card__body { padding: 10px 12px 14px; }
  .shop-card__design { font-size: 0.58rem; }
  .shop-card__name { font-size: 0.8rem; margin-bottom: 8px; }
  .shop-card__price { font-size: 0.9rem; }
  .shop-card__buy { width: 30px; height: 30px; font-size: 0.75rem; }
  .shop-card__quick { display: none; }

  .shop-modal__content { width: 100%; border-radius: 20px 20px 0 0; max-height: 95vh; }
  .shop-modal__gallery { min-height: 220px; padding: 24px; }
  .shop-modal__details { padding: 28px 20px; }
  .shop-modal__details h2 { font-size: 1.2rem; }
  .shop-modal__price { font-size: 1.3rem; }
  .shop-modal__buy { padding: 16px 24px; font-size: 0.9rem; }

  .shop-toolbar { margin-bottom: 20px; }
  .shop-footer { padding: 40px 16px; }
}
