* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #2c2c2c;
  line-height: 1.6;
  background: #fafafa;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

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

.header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: #8b5a3c;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: #2c2c2c;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: #8b5a3c;
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 56px;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 32px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.btn-primary {
  display: inline-block;
  background: #8b5a3c;
  color: #fff;
  padding: 14px 40px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary:hover {
  background: #6d4730;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #2c2c2c;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
  font-size: 14px;
}

.btn-secondary:hover {
  background: #1a1a1a;
}

.featured {
  padding: 80px 0;
}

.featured h2 {
  font-size: 36px;
  margin-bottom: 48px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.product-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.product-card h3 {
  font-size: 18px;
  margin: 16px 16px 8px;
}

.product-card .price {
  font-size: 20px;
  font-weight: 600;
  color: #8b5a3c;
  margin: 0 16px 16px;
}

.product-card button {
  margin: 0 16px 16px;
}

.marketplace-badges {
  background: #fff;
  padding: 60px 0;
  border-top: 1px solid #e5e5e5;
}

.marketplace-badges h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.badge {
  background: #f5f5f5;
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 500;
  color: #2c2c2c;
}

.trust {
  padding: 60px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  text-align: center;
}

.trust-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.trust-item p {
  color: #666;
}

.footer {
  background: #2c2c2c;
  color: #fff;
  padding: 32px 0;
  text-align: center;
}

.page-header {
  background: #fff;
  padding: 60px 0 40px;
  border-bottom: 1px solid #e5e5e5;
}

.page-header h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.page-header p {
  color: #666;
  font-size: 18px;
}

.breadcrumb {
  color: #8b5a3c;
  text-decoration: none;
  font-weight: 500;
}

.catalog {
  padding: 60px 0;
}

.filters {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 10px 20px;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
}

.filter-btn:hover, .filter-btn.active {
  background: #8b5a3c;
  color: #fff;
  border-color: #8b5a3c;
}

.product-grid-large {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.sku {
  font-size: 13px;
  color: #999;
  margin: 0 16px 8px;
}

.marketplace-tags {
  display: flex;
  gap: 8px;
  margin: 12px 16px;
  flex-wrap: wrap;
}

.tag {
  background: #f0f0f0;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  color: #666;
}

.cart {
  padding: 60px 0;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.cart-item img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 4px;
}

.item-details h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.item-details .sku {
  margin: 0 0 4px 0;
}

.marketplace-note {
  font-size: 13px;
  color: #8b5a3c;
  margin-bottom: 16px;
}

.quantity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #e5e5e5;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.item-price {
  text-align: right;
}

.item-price .price {
  font-size: 20px;
  font-weight: 600;
  color: #8b5a3c;
  margin-bottom: 16px;
}

.remove-btn {
  background: none;
  border: none;
  color: #999;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
}

.cart-summary {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.cart-summary h2 {
  font-size: 24px;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 15px;
}

.summary-row.total {
  border-top: 1px solid #e5e5e5;
  padding-top: 16px;
  margin-top: 24px;
  font-size: 20px;
  font-weight: 600;
}

.free {
  color: #27ae60;
  font-weight: 500;
}

.full-width {
  width: 100%;
  margin-top: 24px;
}

.payment-options {
  margin-top: 24px;
  text-align: center;
}

.payment-options p {
  font-size: 13px;
  color: #999;
  margin-bottom: 12px;
}

.payment-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.payment-badge {
  background: #f5f5f5;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  color: #666;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }
  .product-grid, .product-grid-large {
    grid-template-columns: 1fr;
  }
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-item {
    grid-template-columns: 100px 1fr;
  }
  .item-price {
    grid-column: 2;
  }
  .nav {
    gap: 16px;
  }
}