/* Shop Section Styles */
.shop-section {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-direction: column;
}

.shop-card {
  flex: 1;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 24px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}

.shop-card img {
    border-radius: 4px !important;
    height: 150px !important;
    width: 220px !important;
    min-width: 220px;
    object-fit: cover;
}

.action-row {
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 15px;
    align-items: center;
}

.qty-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px 0;
  width: 15vw;
}

.qty-input {
  width: 80px;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.buy-now-btn,
.shop-card a.buy-now-btn,
.shop-card a {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  background: #0073aa;
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  height: fit-content;
}

.buy-now-btn:hover,
.shop-card a:hover {
  background: #006799;
}

/* Optional label style */
.qty-row label {
  font-size: 14px;
  color: #444;
}

/* Team selector */
.team-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
}
.team-row label {
  font-size: 14px;
  color: #444;
}
.team-select {
  min-width: 180px;
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
}

/* Responsive: optimize for mobile */
@media (max-width: 768px) {
  .shop-section {
    gap: 16px;
  }
  .shop-card {
    flex-direction: column;
    align-items: stretch;
  }
  .shop-card img {
    width: 100% !important;
    height: auto !important;
    max-height: 170px;
    object-fit: cover;
  }
  .action-row {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .qty-row {
    justify-content: space-between;
    margin: 8px 0;
    width: 100%;
  }
  .qty-input {
    width: 110px;
  }
  .buy-now-btn,
  .shop-card a.buy-now-btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
  }
  .team-row {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 420px) {
  .qty-input {
    width: 100px;
  }
}
