body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff8ed;
  color: #3a2b1f;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  background: #fff;
}

.logo span { color: #e88b2d; }

nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #3a2b1f;
}

/* Shop Filters */
.filters {
  text-align: center;
  margin: 20px 0;
}

.filters button {
  margin: 5px;
  padding: 8px 14px;
  border: none;
  background: #e88b2d;
  color: #fff;
  border-radius: 20px;
}

/* Shop Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

.card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.card img {
  height: 180px;
  object-fit: contain;
}

.affiliate {
  display: inline-block;
  margin-top: 10px;
  background: #e88b2d;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
}

footer {
  background: #3a2b1f;
  color: #fff;
  text-align: center;
  padding: 15px;
}

.disclaimer {
  font-size: 13px;
  opacity: 0.8;
}

/* Sections */
.featured-blog {
  padding: 40px 20px;
  background: #FFF6E5;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .hero#home {
    padding-top: 280px !important; 
  }
}

/* बटन्स के लिए होवर इफेक्ट */
.overlay-buttons a:hover img {
    transform: scale(1.1); /* थोड़ा बड़ा होगा */
    filter: drop-shadow(0px 0px 10px #ffcc00); /* सोने जैसी चमक */
    transition: 0.3s ease;
}

.overlay-buttons a {
    transition: 0.3s ease;
}
