body {
  font-family: 'Poppins', sans-serif;
  color: #222;
}

.hero {
  min-height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
  url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  color: white;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.card img {
  height: 350px;
  object-fit: cover;
}

.card {
  transition: transform 0.3s ease;
}

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

.cta-section {
  background: #111;
}

footer a:hover {
  text-decoration: underline !important;
}

.btn {
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 500;
}

.navbar-brand {
  font-size: 1.5rem;
}

@media(max-width:768px) {
  .hero {
    min-height: 75vh;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero .lead {
    font-size: 1rem;
  }
  .btn-lg {
    padding: 10px 20px;
    font-size: 1rem;
  }
  /* Shop Section */
.shop {
    padding: 80px 0;
    background: #fff;
}

.shop h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #000;
}

.shop-intro {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
    font-size: 1.1rem;
}

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

.product-card {
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
}

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

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

.product-card h3 {
    font-size: 1.3rem;
    margin: 15px 0 5px;
    color: #000;
}

.product-card .price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #888;
    margin-bottom: 15px;
}

.notify-btn {
    background: #000;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
}

.notify-btn:hover {
    background: #333;
}

.coming-soon {
    opacity: 0.9;
}
}