body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f8f8f8;
  color: #333;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
}

.logo img {
  max-height: 60px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.hero-carousel {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.carousel {
  display: flex;
  height: 100%;
  background-color: #3B2F2F;
}

.carousel-slide {
  min-width: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 3s ease-in-out;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
  position: relative;
}

.carousel-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.carousel-text h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.carousel-text p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  background-color: #3B2F2F;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.category-filter {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
}

.categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.newsletter {
  background-color: #3B2F2F;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.newsletter form {
  margin-top: 20px;
}

.newsletter input {
  padding: 10px;
  width: 250px;
  border: none;
  border-radius: 4px;
  margin-right: 10px;
}

.site-footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}



.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* adds space on left and right */
}

.instagram-feed {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
}

.embed-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.embed-item {
  max-width: 320px;
  flex: 1 1 300px;
  overflow: hidden;
  border-radius: 8px;
}
.embed-item iframe {
  width: 100%;
  height: 400px;;
}


/*slider styles*/

.product-slider {
      padding: 2rem;
      margin-left: 50px;
      margin-right: 50px;
      text-align: center;
    }
  .slider-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #111827;
  }

  /* Swiper Slide Card */
  .product-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 420px; /* fixed height for all cards */
  }
  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  }

  /* Image Styling */
  .product-card img {
    width: 100%;
    height: 250px; /* fixed image height */
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
  }

  /* Text & Button */
  .product-card h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
  }
  .product-card p {
    font-size: 1rem;
    color: #4b5563;
  }
  .product-card .btn {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: #111827;
    color: #fff;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  .product-card .btn:hover {
    background: #2563eb;
  }

  /* Mobile - 82% width */
  @media (max-width: 639px) {
    .swiper-slide {
      display: flex;
      justify-content: center;
    }
    .product-card {
      width: 82%;
    }
  }

    /* Swiper arrows */
  .swiper-button-prev,
  .swiper-button-next {
    color: #111827;
    transform: scale(0.7);
    width: 28px;
    height: 28px;
  }



/*for featured category*/
.featured-category {
  padding: 6px 20px;
  background-color: white;
  text-align: center;
}

.featured-category .section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #111827;
}

.featured-category .product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.featured-category .product-card {
  background-color: #fefefe;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 36%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-category .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.featured-category .product-card img {
  max-width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}

.featured-category .product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.featured-category .product-card p {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 10px;
}

.featured-category .btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #111827;
  color: #fff;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.featured-category .btn:hover {
  background: #2563eb;
}

.featured-category .view-more {
  margin-top: 30px;
}


/* Responsive */
@media (max-width: 768px) {
   .nav-links {
    display: none;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.95); /* Slight transparency */
    position: absolute;
    top: 70px;
    right: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 10px;
    z-index: 9999; /* 👈 ensures it's above carousel */
    border-radius: 8px;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 10000;
  }


  .carousel-text h1 {
    font-size: 32px;
  }

  .carousel-text p {
    font-size: 16px;
  }

  .product-grid {
    flex-direction: column;
    align-items: center;
  }
  .content-container {
    padding: 0 15px;
    margin-left: 50px;
    margin-right: 50px;
  }

  .featured-category .product-card {
    width: 80%;
  }

  .product-slider {
    padding: 1rem;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
  }
  .content-container{
    margin-left: 10px;
    margin-right: 10px;
  }

  .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction
  {
    bottom: var(--swiper-pagination-bottom, 47px) !important;
  }
}

/* #for cart symbol */
.cart-page h2 {
  font-size: 28px;
  font-weight: 600;
}

.table td, .table th {
  vertical-align: middle;
}


