body{
    padding: 0;
    margin: 0;
}

.section-title {
    text-align: center;
    font-size: 60px;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 30px;
    color: #222;
  }
  .product-grid{
    display: flex;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* background: linear-gradient(165deg, #ffffff 50%, #000000 50%); */

  }
  .grid {
    display: grid;
    width: 80%;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .card-content {
    padding: 15px 20px;
    flex-grow: 1;
  }
  
  .card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #111;
  }
  
  .card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
  }
  
  .card button {
    background: #000000;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
  }
  
  .card button:hover {
    background: #8b002b;
  }
  
  @media (max-width: 480px) {
    .card img {
      height: 180px;
    }
  }

  /* ===== Base Header Styling ===== */
.primary-container {
    background-color: #ffffff;
    width: 100%;
    top: 0;
    z-index: 100;
  }
  
  .header-first-subcontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
  }
  
  .logo h2 {
    font-size: 40px;
    color: #447ab8;
    margin: 0;
  }
  
  .sub-container-two {
    display: flex;
    gap: 25px;
  }
  
  .sub-container-two .nav-1 a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .sub-container-two .nav-1 a:hover {
    color: #447ab8;
  }

  .nav-1{
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  /* ===== Hamburger Menu ===== */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
  }
  
  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 5px;
    transition: 0.3s;
  }
  
  /* ===== Responsive Design ===== */
  @media (max-width: 768px) {
    .sub-container-two {
      position: absolute;
      top: 60px;
      right: 0;
      background-color: white;
      width: 100%;
      flex-direction: column;
      align-items: center;
      display: none;
      gap: 15px;
      padding: 20px 0;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
  
    .sub-container-two.show {
      display: flex;
    }
  
    .hamburger {
      display: flex;
    }
  
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
  
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
  
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }
  }
  







.shop-firstsection{
  position: relative;
}


.section-1-primaryContainer-shop{
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
 }
.section-1-secondaryContainer-shop{
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;

}


.section-1-tertiary-container-shop{

  width: 90%;
  padding-top: 100px;
  padding-bottom: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}


/* colon-1 */
.section-1-col-1-shop{
  width: 30%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.heading-1-shop{
  color: black;
  font-size: 60px;
  font-family: sans-serif;
  font-weight: bold;
}

.paragraph-1-shop{
  color: black;
  font-family: sans-serif;
}




/* colon-2 */
.section-1-col-2-shop{
  width: 70%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}

.image-1-shop{
  width: 100%;
  border-radius: 10px;


}

/* Large Screens / Widescreen (≥1440px) */
@media (min-width: 1440px) {
  .heading-1-shop {
    font-size: 55;
  }
  .paragraph-1-shop {
    font-size: 1.2rem;
  }
}
  
  /* Desktop (1024px – 1439px) */
@media (max-width: 1439px) and (min-width: 1024px) {
  .section-1-primaryContainer-shop {
    padding: 60px 6%;
  }
  .heading-1-shop {
    font-size: 2.4rem;
  }
}
  
  /* Tablet Landscape (768px – 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
  .section-1-tertiary-container-shop {
    flex-direction: row;
    gap: 30px;
  }
  .heading-1-shop {
    font-size: 2.2rem;
  }
  .paragraph-1-shop {
    font-size: 1rem;
  }
}
  
  /* Tablet Portrait (600px – 767px) */
@media (max-width: 767px) and (min-width: 600px) {
  .section-1-tertiary-container-shop {
    flex-direction: column;
    text-align: center;
  }
  .section-1-col-2-shop {
    order: -1;
  }
  .heading-1-shop {
    font-size: 2rem;
  }
  .paragraph-1-shop {
    font-size: 1rem;
  }
  }
  
  /* Mobile Landscape (480px – 599px) */
@media (max-width: 599px) and (min-width: 480px) {
  .section-1-primaryContainer-shop {
    padding: 50px 5%;
  }
  .section-1-tertiary-container-shop {
    flex-direction: column;
    text-align: center;
  }
  .heading-1-shop {
    font-size: 1.8rem;
  }
  .paragraph-1-shop {
    font-size: 0.95rem;
  }
}
  
  /* Mobile Portrait (≤479px) */
@media (max-width: 479px) {
  .section-1-primaryContainer-shop {
    padding: 40px 5%;
  }
  .section-1-tertiary-container-shop {
    flex-direction: column;
    text-align: center;
  }
  .heading-1-shop {
    font-size: 1.6rem;
  }
  .paragraph-1-shop {
    font-size: 0.9rem;
  }
  .image-1-shop {
    max-width: 90%;
  }
}

/* Reviews section */

.reviews-section {
  padding-top: 100px;
  padding-bottom: 100px;
  padding: 80px 5%;
  text-align: center;
  background-color: #ffffff;
}

.reviews-section h2 {
  font-size: 60px;
  font-weight: 700;
  color: #202547;
  margin-bottom: 60px;
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-items: center;
}

.review-card {
  background: #f4f7fb;
  border-radius: 12px;
  padding: 20px;
  max-width: 400px;
  text-align: left;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a4a68;
  margin-bottom: 25px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #cfd8e3;
  object-fit: cover;
}

.review-author p {
  margin: 0;
  font-weight: 500;
  color: #202547;
}

@media (max-width: 768px) {
  .reviews-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .review-card {
    padding: 15px;
  }

  .review-author img {
    width: 50px;
    height: 50px;
  }
}

/* =========================== */
/* 🛒 CART SIDEBAR STYLING */
/* =========================== */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100vh;
  background-color: #fff;
  box-shadow: -4px 0 15px rgba(0,0,0,0.15);
  transition: right 0.4s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #4a78ff;
  color: white;
  padding: 15px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.cart-item img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 14px;
  margin: 0;
}

.cart-item-info p {
  font-size: 12px;
  color: gray;
}

.remove-btn {
  background: #ff4757;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 5px 8px;
  cursor: pointer;
  font-size: 12px;
}

/* Product Grid */
.card button {
  background-color: #000000;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.card button.remove {
  background-color: #ff4757;
}

.card button:hover {
  opacity: 0.9;
}

/* Responsive Cart */
@media (max-width: 480px) {
  .cart-sidebar {
    width: 100%;
  }
}


/* View cart button */

.view-cart-btn {
  width: 100%;
  background-color: #111;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.view-cart-btn:hover {
  background-color: #333;
}

.product-price{
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  color: #000000;
  font-weight: bold;

}


