* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
}

.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  padding: 1rem;
  margin: auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #0070f3;
}

.search-bar input {
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon {
  font-size: 1.2rem;
  color: #333;
  text-decoration: none;
  position: relative;
}

.cart-count {
  background-color: red;
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 50%;
  position: absolute;
  top: -8px;
  right: -8px;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background-color: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .search-bar {
    width: 100%;
  }

  .search-bar input {
    width: 100%;
  }
}
.hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  color: #fff;
  text-align: center;
  max-width: 600px;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-btn {
  background-color: #ff6600;
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background-color: #e65700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
.featured-categories {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.categories-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-info {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 1rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.category-btn {
  margin-top: 0.75rem;
  background-color: #ff6600;
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  align-self: center;
  transition: background-color 0.3s;
  width: fit-content;
}

.category-btn:hover {
  background-color: #e65700;
}
.best-sellers {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.best-sellers .section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.products-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.product-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  flex-shrink: 0;
}

.product-info {
  padding: 1rem 1.25rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.price-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ff6600;
}

.rating {
  color: #f5a623; /* gold stars */
  font-size: 1rem;
  user-select: none;
}

.add-to-cart-btn {
  background-color: #0070f3;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
  align-self: center;
  width: 100%;
  max-width: 180px;
}

.add-to-cart-btn:hover {
  background-color: #005bb5;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .product-card img {
    height: 200px;
  }
}
.promo-banner {
  background: linear-gradient(135deg, #ff6600, #ff3300);
  color: white;
  padding: 3rem 1rem;
  text-align: center;
  border-radius: 12px;
  max-width: 900px;
  margin: 3rem auto;
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
}

.promo-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.promo-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  font-family: monospace;
}

.countdown div {
  background: rgba(255, 255, 255, 0.25);
  padding: 1rem 1.2rem;
  border-radius: 8px;
  min-width: 70px;
}

.countdown span {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.countdown small {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-btn {
  background-color: #fff;
  color: #ff3300;
  font-weight: 700;
  padding: 0.8rem 3rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(255, 51, 0, 0.4);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.promo-btn:hover {
  background-color: #ff3300;
  color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
  .countdown {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .countdown div {
    min-width: 60px;
    padding: 0.8rem 1rem;
  }
}
.testimonials {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 1rem;
  text-align: center;
}

.testimonials .section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial-card {
  background: #f9f9f9;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-style: italic;
  color: #555;
}

.testimonial-card p {
  margin-bottom: 1.8rem;
  font-size: 1.1rem;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.customer-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ff6600;
}

.customer-info h4 {
  margin: 0;
  font-weight: 700;
  color: #222;
}

.customer-info span {
  font-size: 0.85rem;
  color: #888;
}
.newsletter {
  background: #ff6600;
  color: white;
  text-align: center;
  padding: 3rem 1rem;
  border-radius: 15px;
  max-width: 700px;
  margin: 4rem auto;
}

.newsletter .section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.newsletter p {
  margin-bottom: 2rem;
  font-weight: 600;
}

.newsletter-form {
  display: flex;
  max-width: 450px;
  margin: auto;
  gap: 0.75rem;
}

.newsletter-form input[type="email"] {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border-radius: 25px;
  border: none;
  font-size: 1rem;
}

.newsletter-form input[type="email"]:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.newsletter-form button {
  background: white;
  color: #ff6600;
  border: none;
  padding: 0 2rem;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background: #e65700;
  color: white;
}

/* Responsive */
@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}
.instagram-feed {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 1rem;
  text-align: center;
}

.instagram-feed .section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.insta-grid a img {
  width: 10%;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.insta-grid a:hover img {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.site-footer {
  background-color: #222;
  color: #eee;
  padding: 3rem 1rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #444;
}

.footer-about h3,
.footer-links h3,
.footer-support h3,
.footer-social h3 {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: #ff6600;
}

.footer-about p {
  line-height: 1.5;
  max-width: 320px;
}

.footer-links ul,
.footer-support ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-support ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a,
.footer-support ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-support ul li a:hover {
  color: #ff6600;
}

.footer-social .social-icons {
  display: flex;
  gap: 1rem;
  font-size: 1.6rem;
}

.social-icon {
  display: inline-block;
  color: #ccc;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  color: #ff6600;
}

.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  color: #777;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-about p {
    max-width: 100%;
  }

  .footer-social .social-icons {
    justify-content: center;
  }
}
.featured-categories {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.categories-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 1rem;
  text-align: center;
}

.category-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.category-btn {
  background-color: #ff6600;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s;
}

.category-btn:hover {
  background-color: #e65700;
}
