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

:root {
  --pomegranate: #c41e3a;
  --pomegranate-dark: #991b1b;
  --gold: #f5a623;
  --gold-light: #ffd700;
  --cream: #fff8e7;
  --text-dark: #2d1810;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Microsoft YaHei", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--cream);
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--pomegranate) 0%, var(--pomegranate-dark) 100%);
  color: white;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 50%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  position: relative;
}

.hero .subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--text-dark);
  padding: 12px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(245,166,35,0.4);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,0.6);
}

/* Features */
.features {
  padding: 60px 20px;
  background: white;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature {
  text-align: center;
  padding: 30px;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, var(--cream));
  box-shadow: 0 4px 20px rgba(196,30,58,0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.feature h3 {
  color: var(--pomegranate);
  margin-bottom: 10px;
}

/* Products */
.products {
  padding: 60px 20px;
  background: var(--cream);
}

.products h2 {
  text-align: center;
  color: var(--pomegranate);
  font-size: 2rem;
  margin-bottom: 40px;
}

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

.product {
  background: white;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(196,30,58,0.08);
  transition: transform 0.3s;
}

.product:hover {
  transform: translateY(-5px);
}

.product-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.product h3 {
  color: var(--pomegranate-dark);
  margin-bottom: 10px;
}

.product .price {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* About */
.about {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--pomegranate) 0%, var(--pomegranate-dark) 100%);
  color: white;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.about p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.8;
}

/* Footer */
footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

footer h2 {
  color: var(--gold);
  margin-bottom: 30px;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.contact-item strong {
  display: block;
  color: var(--gold);
  margin-bottom: 8px;
}

.copyright {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.8rem; }
  .hero .subtitle { font-size: 1rem; }
  .contact-grid { gap: 30px; }
}

@media (max-width: 480px) {
  .hero { padding: 50px 20px; }
  .hero h1 { font-size: 1.5rem; }
  .feature-grid, .product-grid { grid-template-columns: 1fr; }
}