/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #333;
  line-height: 1.6;
}

/* ========== NAVIGATION ========== */
nav {
  position: fixed;
  width: 100%;
  top: 0;
  background: #111;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b00;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #ff6b00;
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('shop-bg.jpg') center/cover no-repeat;
  color: #fff;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 10%;
  animation: fadeIn 1.5s ease;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero span {
  color: #ff6b00;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn {
  padding: 12px 30px;
  background: #ff6b00;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #e65c00;
  transform: scale(1.05);
}

/* ========== ABOUT SECTION ========== */
.about-section {
  padding: 80px 10%;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  animation: slideUp 1.5s ease;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-img {
  flex: 1 1 45%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.about-text {
  flex: 1 1 50%;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 20px;
}

.about-text span {
  color: #ff6b00;
}

.about-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  padding: 70px 10%;
  text-align: center;
  background: #fff;
  animation: fadeIn 1.5s ease;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-section span {
  color: #ff6b00;
}

.contact-box {
  margin-top: 20px;
  display: inline-block;
  padding: 20px 40px;
  border: 2px solid #ff6b00;
  border-radius: 15px;
  background: #f8f9fa;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-box a {
  color: #ff6b00;
  text-decoration: none;
  font-weight: 600;
}

/* ========== PRODUCTS PAGE ========== */
.products-hero {
  height: 60vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('shop-bg.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  margin-top: 70px;
  animation: fadeIn 1.2s ease;
}

.product-section {
  padding: 80px 10%;
  background: #f8f9fa;
  text-align: center;
}

.product-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.product-section span {
  color: #ff6b00;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.product-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeIn 1.2s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.product-card h3 {
  margin-top: 15px;
  font-size: 1.4rem;
  color: #111;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 10px 0;
  line-height: 1.5;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff6b00;
  margin-bottom: 15px;
}

/* ========== FOOTER ========== */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #fff;
}

footer span {
  color: #ff6b00;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-img {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .product-card img {
    height: 180px;
  }
}
