/* E-commerce Template - Curated Goods */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

/* Header */
.header {
  text-align: center;
  color: #fff;
  margin-bottom: 48px;
}

.header-logo {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  letter-spacing: -0.5px;
}

.header-sub {
  opacity: 0.95;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.header-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  opacity: 0.9;
}

.header-stats strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.section-title {
  text-align: center;
  color: #fff;
  margin-bottom: 32px;
}

.section-title h2 {
  font-size: 1.75rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.section-title p {
  opacity: 0.9;
  font-size: 1rem;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.product-img {
  height: 220px;
  overflow: hidden;
  background: #f3f4f6;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.product-badge.new {
  background: #10b981;
}

.product-body {
  padding: 24px;
}

.product-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #1a1a2e;
  font-weight: 600;
  line-height: 1.4;
}

.product-desc {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 12px;
  line-height: 1.5;
}

.product-body .price {
  color: #667eea;
  font-weight: 700;
  font-size: 1.4rem;
}

.product-body .price .old {
  color: #9ca3af;
  font-size: 0.95rem;
  text-decoration: line-through;
  margin-left: 8px;
}

.product-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tags .tag {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}

.product-tags .tag.hot {
  background: #fee2e2;
  color: #991b1b;
}

.product-tags .tag.new {
  background: #d1fae5;
  color: #065f46;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 48px 0 32px;
  padding: 24px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  color: #fff;
  font-size: 0.95rem;
}

.badge-item .icon {
  margin-right: 8px;
  font-weight: bold;
}

/* CTA */
.cta {
  text-align: center;
  margin-top: 24px;
}

.btn {
  display: inline-block;
  background: #fff;
  color: #667eea;
  padding: 16px 44px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #f8fafc;
  transform: scale(1.03);
  box-shadow: 0 6px 28px rgba(0,0,0,0.25);
}
