body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f7e7ce;
  color: #3b0000;
}

/* Navbar */
.navbar {
  background-color: #680514;
  color: #F5DEBC;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}
.navbar .logo {
  display: flex;
  align-items: center;
}
.navbar .logo img {
  height: 50px;
  margin-right: 10px;
}
.navbar nav a {
  color: #f7e7ce;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: 0.3s;
}
.navbar nav a:hover {
  color: #b68d4c;
}

/* Hero */
.hero {
  background: url('images/fabric-bg.jpg') center/cover no-repeat;
  color: #f7e7ce;
  text-align: center;
  padding: 140px 20px;
  background-color: #680514;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.shop-btn {
  background-color: #b68d4c;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.shop-btn:hover {
  background-color: #fff;
  color: #680514;
}

/* Featured Section */
.featured {
  text-align: center;
  padding: 60px 20px;
  background-color: #f7e7ce;
}
.featured h2 {
  color: #680514;
  margin-bottom: 30px;
}
.slider {
  width: 90%;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 15px;
}
.slides {
  display: flex;
  transition: transform 1s ease;
}
.slides img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Shop Page */
.shop {
  text-align: center;
  padding: 60px 20px;
}
.shop h2 {
  color: #680514;
  margin-bottom: 40px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}
.product {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 20px;
  transition: 0.3s;
}
.product:hover {
  transform: translateY(-5px);
}
.product img {
  width: 100%;
  border-radius: 10px;
}
.product h3 {
  color: #680514;
  margin: 15px 0 5px;
}
.product p {
  color: #3b0000;
  margin-bottom: 15px;
}

/* Footer */
footer {
  background-color: #680514;
  color: #f7e7ce;
  text-align: center;
  padding: 30px 20px;
}
.social-icons a {
  color: #f7e7ce;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #b68d4c;
}
/* === FIX for Font Awesome visibility === */
.social-icons i {
  display: inline-block !important;
  font-size: 1.6rem;
  color: #f7e7ce;
  transition: 0.3s;
}

.social-icons i:hover {
  color: #b68d4c;
  transform: scale(1.1);
}

footer p {
  margin-top: 15px;
  font-size: 0.9rem;
}