/* =========================================================
STORE HEADER
========================================================= */
.store-header {
  padding: 60px 40px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.store-header-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.store-header h1 {
  font-size: 32px;
  margin-bottom: 6px;
}

.store-header p {
  color: #888;
  font-size: 14px;
}

/* =========================================================
CONTAINER
========================================================= */
.store-container {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 40px;
}

/* =========================================================
EMPTY STATE
========================================================= */
.empty-state {
  text-align: center;
  color: #777;
  padding: 80px 0;
}

/* =========================================================
GRID
========================================================= */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* =========================================================
CARD
========================================================= */
.product-card {
  background: #121212;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  overflow: hidden;
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.12);
}

/* =========================================================
IMAGE
========================================================= */
.product-image img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

/* =========================================================
CONTENT
========================================================= */
.product-content {
  padding: 16px;
}

.product-content h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.product-content p {
  font-size: 13px;
  color: #888;
  margin-bottom: 14px;
}

/* =========================================================
FOOTER
========================================================= */
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* PRICE */
.price {
  font-weight: 600;
  font-size: 15px;
}

.price span {
  font-size: 12px;
  color: #777;
  margin-left: 4px;
}

/* VIEW LINK */
.view-link {
  font-size: 13px;
  color: #aaa;
  text-decoration: none;
  transition: 0.2s;
}

.view-link:hover {
  color: #fff;
}