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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  scroll-behavior: smooth;
}

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

.menu-toggle {
  display: none;
  font-size: 20px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #000000 0%, #2d2d2d 50%, #1a1a1a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 60px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-text h1 span {
  color: #ff4444;
}

.hero-text p {
  font-size: 20px;
  color: #ccc;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background-color: #ff4444;
  color: white;
}

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

.btn-outline {
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background-color: white;
  color: black;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.05);
}

.featured {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

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

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  overflow: hidden;
}

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

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

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #ff4444;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  color: #ff4444;
  font-weight: 700;
  font-size: 20px;
}

.old-price {
  color: #999;
  text-decoration: line-through;
  margin-left: 8px;
  font-size: 16px;
}

.rating {
  color: #ffd700;
}

.view-all {
  text-align: center;
}

.btn-dark {
  background-color: #000;
  color: white;
}

.btn-dark:hover {
  background-color: #333;
}

/* Brand Story */
.brand-story {
  padding: 80px 0;
  background-color: white;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}

.story-content p {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-outline-dark {
  border: 2px solid #000;
  color: #000;
}

.btn-outline-dark:hover {
  background-color: #000;
  color: white;
}

/* Newsletter */
.newsletter {
  padding: 80px 0;
  background-color: #000;
  color: white;
  text-align: center;
}

.newsletter h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.newsletter p {
  font-size: 18px;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 32px;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
}

.newsletter-input {
  flex: 1;
  padding: 15px 24px;
  border-radius: 50px;
  border: none;
  background-color: #1a1a1a;
  color: white;
  font-size: 16px;
}

.newsletter-input:focus {
  outline: none;
  background-color: #2d2d2d;
}

/* Footer */
footer {
  background-color: #111;
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-brand h3 span {
  color: #ff4444;
}

.footer-brand p {
  color: #999;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  color: #999;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: white;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  color: #999;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  text-align: center;
  color: #999;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-content,
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background-color: #000;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .btn {
    padding: 12px 24px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
