body.shop-page {
  margin: 0 !important;
  padding-top: 92px !important;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(4, 7, 9, 0.62), rgba(4, 7, 9, 0.9)),
    url('/images/about-bg.webp') center / cover fixed !important;
  color: #f5f5f5;
}

body.shop-page header,
body.shop-page .page-header {
  display: none !important;
}

body.shop-page .content-overlap {
  position: relative;
  left: 50%;
  width: 100vw !important;
  max-width: none !important;
  margin: 0 0 0 -50vw !important;
  padding: 18px clamp(14px, 2.2vw, 28px) 36px !important;
  box-sizing: border-box;
}

body.shop-page .content-overlap section {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.shop-page .shop-intro {
  max-width: 980px;
  margin: 0 0 22px;
  text-align: left;
}

.shop-page .section-title {
  color: #ffd000;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
  text-shadow: 0 0 18px rgba(255, 208, 0, 0.24);
}

.shop-page .shop-intro p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.55;
}

.shop-page .product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.shop-page .product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid rgba(255, 208, 0, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(7, 10, 8, 0.84), rgba(0, 0, 0, 0.7));
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px rgba(255, 255, 255, 0.04);
}

.shop-page .product-card img {
  width: 100% !important;
  height: 190px !important;
  object-fit: cover !important;
}

.shop-page .product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.shop-page .product-content h3 {
  color: #ffd000;
}

.shop-page .product-content p {
  flex: 1;
  color: rgba(255, 255, 255, 0.82);
}

.shop-page .price {
  color: #fff;
}

.shop-page .fake-stock {
  color: #9cff00;
}

.shop-page .shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 12px;
  background: #ffd000;
  color: #111;
}

@media (max-width: 1280px) {
  .shop-page .product-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }
}

@media (max-width: 900px) {
  body.shop-page {
    padding-top: 0 !important;
    background-attachment: scroll !important;
  }

  body.shop-page .content-overlap {
    left: auto;
    width: 100% !important;
    margin-left: 0 !important;
    padding: 12px 10px 28px !important;
  }

  .shop-page .product-grid {
    grid-template-columns: 1fr;
  }
}
