* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 50px;
  background: linear-gradient(135deg, #111111, #1a1a1a);
  border-bottom: 3px solid #c4a259;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.logo {
  font-family: 'Playfair Display', serif;
  color: #c4a259;
  font-size: 32px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(196, 162, 89, 0.3);
  letter-spacing: -1px;
}

nav a {
  color: #cccccc;
  text-decoration: none;
  margin-left: 35px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

nav a:hover {
  color: #c4a259;
  transform: translateY(-2px);
}

nav a:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c4a259;
  transition: width 0.3s ease;
}

nav a:hover:before {
  width: 100%;
}

.hero {
  text-align: center;
  padding: 150px 40px;
  background: linear-gradient(135deg, #111111 0%, #222222 50%, #111111 100%);
  position: relative;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(196, 162, 89, 0.05) 0%, transparent 50%, rgba(196, 162, 89, 0.05) 100%);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #c4a259, #d4b269, #e8d3a0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 22px;
  margin-bottom: 40px;
  color: #cccccc;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.button {
  background: linear-gradient(135deg, #c4a259, #d4b269);
  color: #000000;
  padding: 18px 35px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  margin: 0 10px;
  box-shadow: 0 4px 15px rgba(196, 162, 89, 0.3);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(196, 162, 89, 0.4);
  background: linear-gradient(135deg, #d4b269, #e8d3a0);
}

.secondary {
  background: transparent;
  color: #c4a259;
  border: 2px solid #c4a259;
}

.secondary:hover {
  background: #c4a259;
  color: #000000;
}

#features {
  padding: 100px 40px;
  background: #111111;
}

#features h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 60px;
  color: #c4a259;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #1a1a1a, #222222);
  border-radius: 15px;
  border: 1px solid #333333;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  border-color: #c4a259;
}

.feature h3 {
  color: #c4a259;
  font-size: 24px;
  margin-bottom: 15px;
}

.store {
  padding: 80px 40px;
  background: #0a0a0a;
}

.store h1 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: #c4a259;
  font-size: 42px;
  margin-bottom: 60px;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: linear-gradient(135deg, #141414, #1a1a1a);
  border: 1px solid #333;
  border-radius: 15px;
  padding: 35px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.product-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(196, 162, 89, 0.1), transparent);
  transition: left 0.6s;
}

.product-card:hover:before {
  left: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: #c4a259;
  box-shadow: 0 10px 30px rgba(196, 162, 89, 0.2);
}

.product-card h2 {
  color: #c4a259;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.product-card p {
  color: #cccccc;
  margin-bottom: 20px;
  font-size: 16px;
}

.price {
  color: #c4a259;
  font-size: 28px;
  font-weight: 700;
  margin: 25px 0;
  text-shadow: 0 1px 3px rgba(196, 162, 89, 0.5);
}

.cart {
  padding: 80px 40px;
  min-height: 500px;
  background: #0a0a0a;
}

.cart h1 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: #c4a259;
  font-size: 42px;
  margin-bottom: 50px;
}

#cart-items {
  background: linear-gradient(135deg, #141414, #1a1a1a);
  border: 1px solid #333;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  min-height: 250px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cart-total {
  text-align: center;
}

.cart-total p {
  font-size: 28px;
  color: #c4a259;
  font-weight: 700;
  margin-bottom: 30px;
}

.checkout-btn {
  font-size: 20px;
  padding: 20px 50px;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  nav a {
    margin: 0 15px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .store-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}
