.shop-home-container {
  background: linear-gradient(135deg, #222017 0%, #47371e 100%);
  border: 2.5px solid #d4ba7f;
  border-radius: 22px;
  box-shadow: 0 8px 32px #1a140d88;
  padding: 44px 36px 32px 36px;
  max-width: 900px;
  margin: 44px auto 38px auto;
  color: #f7ecd4;
  font-family: 'Merriweather', 'MedievalSharp', serif;
  font-size: 1.14em;
  position: relative;
  overflow: hidden;
}
.shop-title {
  color: #ffe189;
  font-size: 2.2em;
  margin-bottom: 15px;
  font-family: 'MedievalSharp', serif;
  text-shadow: 0 2px 14px #bfa76a44;
}
.shop-intro {
  color: #e8dac3;
  margin-bottom: 36px;
  line-height: 1.5;
}

.shop-categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 32px;
  justify-content: center;
  margin-bottom: 26px;
}
.shop-category-card {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 265px;
  background: #2e2418;
  border: 2px solid #bfa76a;
  border-radius: 14px;
  box-shadow: 0 2px 18px #0004;
  padding: 26px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #f7ecd4;
  transition: background .13s, border .12s, box-shadow .16s, transform .11s;
  position: relative;
  cursor: pointer;
}
.shop-category-card:hover,
.shop-category-card:focus {
  border-color: #ffe189;
  background: #3b2e1c;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 28px #ffe18966, 0 2px 18px #0006;
  color: #ffe189;
}
.shop-category-icon {
  width: 58px;
  height: 58px;
  image-rendering: pixelated;
  filter: drop-shadow(0 2px 6px #ffe18955);
  margin-bottom: 13px;
}
.shop-category-title {
  font-family: 'MedievalSharp', serif;
  color: #ffe189;
  font-size: 1.18em;
  margin-bottom: 7px;
  letter-spacing: 0.5px;
}
.shop-category-desc {
  font-size: 1.01em;
  color: #f7ecd4;
  text-align: center;
}

.shop-footer-tip {
  margin-top: 36px;
  padding: 14px 17px;
  border-radius: 10px;
  background: #3d331b;
  font-size: 1.09em;
  color: #ffe189;
  box-shadow: 0 1px 10px #bfa76a22;
  text-align: center;
}

@media (max-width: 950px) {
  .shop-home-container {
    padding: 16px 2vw 10px 2vw;
    max-width: 99vw;
    font-size: 1.01em;
  }
  .shop-categories-grid {
    gap: 16px 8px;
    flex-wrap: wrap;
  }
  .shop-category-card {
    min-width: 0;
    max-width: 99vw;
    padding: 18px 1vw 12px 1vw;
  }
  .shop-category-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
  }
}