.shop-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.categories {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  position: relative;
  z-index: 5;
}

.category-btn {
  padding: 12px 16px;
  border-radius: 14px;
  color: white;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
  outline: none;
}

.category-btn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.08);
}

.category-btn.active {
  background: linear-gradient(135deg, #696969, #a2a2a2);
  border-color: transparent;
}

.shop-section-block {
  margin-top: 34px;
}

.shop-section-block:first-of-type {
  margin-top: 0;
}

.section-title {
  margin-bottom: 18px;
}

.section-title h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.section-title p {
  color: var(--muted);
  line-height: 1.7;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.shop-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  transition: 0.28s ease;
}

.shop-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.14);
}

.shop-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.shop-card p {
  color: var(--muted);
  line-height: 1.7;
}

.price-list {
  list-style: none;
  margin-top: 8px;
}

.price-list li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #e0e0e0;
}

.price-list li:last-child {
  border-bottom: none;
}

.card-note {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  color: white;
  font-weight: 700;
}

.card-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 13px 18px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, #696969, #a2a2a2);
  color: white;
  transition: 0.25s ease;
}

.card-btn:hover {
  transform: translateY(-2px);
}

.filter-section {
  width: 100%;
}

.filter-section[style*="display: none"] {
  display: none !important;
}

/* zone qui pousse le footer vers le bas */
.shop-sections {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.footer {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 1200px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .categories {
    gap: 10px;
  }

  .category-btn {
    width: 100%;
    text-align: center;
  }
}