/* ===== GENERAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #f9f9f9;
}

a{
  text-decoration: none;
}

/* NAVBAR STYLES  */
.navbar {
  width: 100%;
  background: linear-gradient(90deg, #ff6600, #004aad);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  flex-wrap: wrap;
}

/* LEFT MENU */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffe082;
}

/*CENTER LOGO*/
.logo {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  flex: 1;
}

/* RIGHT CONTACT  */
.contact-info {
  display: flex;
  gap: 15px;

  text-align: center;
}

.contact-info p {
  padding-top: 10px;
  font-size: 14px;
  margin-bottom: 2px;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  background-color: #ff6600;
  padding: 10px 6px;
  border-radius: 10px;
}

/* first navbar end */

/* SECOND NAVBAR  */

.second-nav {
  width: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  flex-wrap: wrap;
}

/* Left hamburger icon hidden by default */
.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #004aad;
}

/* Mobile menu (hidden by default) */
.mobile-menu {
  /* display: none;
  flex-direction: column;
  background: #004aad;
  padding: 15px;
  list-style: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  flex-direction: column;
  z-index: 99; */

  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 50%;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 5px;
  z-index: 999;
  overflow-y: auto;
  /* makes it scrollable */
  transition: transform 0.3s ease;
}

.mobile-menu li a {
  display: block;
  padding: 12px 20px;
  color: #004aad;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  border-bottom: 1px solid #ddd;
}

.mobile-menu ul:last-child {
  border-bottom: none;
}

.mobile-menu ul li {
  margin: 8px 0;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #004aad;
  font-weight: 500;
  display: block;
  transition: color 0.3s;
}

.mobile-menu li a:hover {

  color: #ff6600;
}


/* Show menu when .show is added */
.mobile-menu.show {
  display: flex;
}

/* Left Logo */
.brand-logo img {
  width: 130px;
  height: auto;
}

/* Center Section */
.search-section {
  display: flex;
  align-items: center;
  gap: 15px;
  /* flex: 1;
  justify-content: center; */
}

/* Dropdown Button */
.category-dropdown {
  position: relative;
}

.dropbtn {
  background-color: #ff6600;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  border-radius: 5px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  top: 42px;
  left: 0;
  min-width: 160px;
  border-radius: 5px;
  z-index: 99;
}

.dropdown-content a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Show dropdown on hover */
.category-dropdown:hover .dropdown-content {
  display: block;
}

/* Search bar */
.search-bar {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 30px;
  overflow: hidden;
  width: 350px;
  /* max-width: 90%; */
}

.search-bar input {
  border: none;
  padding: 10px 15px;
  outline: none;
  width: 100%;
}

.search-bar button {
  background-color: #004aad;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}

/* Right Icons */
.icon-section {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-nav-icon {
  position: relative;
  display: inline-block;
}

.cart-nav-icon span {
  position: absolute;
  top: -8px;
  right: -10px;
  background: red;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  padding: 2px 6px;
  font-weight: bold;
}

.icon-section a {
  color: #004aad;
  font-size: 20px;
  /* transition: color 0.3s ease; */
}

.icon-section a:hover {
  color: #ff6600;
}

/* second nav end*/


/* ===== THIRD NAVBAR ===== */
.third-nav {
  width: 100%;
  background-color: #004aad;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

/* ===== LEFT: All Categories ===== */
.category-menu {
  position: relative;
  display: inline-block;
}

.category-btn {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  transition: background 0.3s;
}

.category-btn:hover {
  background-color: #e65c00;
}

.category-btn i {
  font-size: 18px;
}

/* Dropdown */
.category-dropdown {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background-color: #fff;
  color: #333;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  opacity: 0.9;
  z-index: 999;
  flex-direction: column;
  overflow: hidden;

}

/* .category-menu:hover .category-dropdown {
  display: flex;
} */

.category-dropdown a {
  padding: 10px 15px;
  display: block;
  text-decoration: none;
  color: #333;
  transition: background 0.3s;
}

.category-dropdown.show {
  display: flex;
  flex-direction: column;
}

.category-dropdown a:hover {
  background-color: #ff6600;
  color: #fff;
}

/* ===== CENTER: Search Bar ===== */
.search-section-third {
  display: none;
  /* default hidden on large screen */
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 600px;
  margin-left: 30px;
}

.search-bar-third {
  flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  outline: none;
}

.search-btn-third {
  background-color: #ff6600;
  border: none;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.search-btn-third:hover {
  background-color: #e65c00;
}

/* ===== RIGHT: Nav Links ===== */
.third-nav-links {
  list-style: none;
  display: flex;
  /* visible by default on large screen */
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.third-nav-links li {
  list-style: none;
}

.third-nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.third-nav-links a:hover {
  color: #ffcc80;
}

/*HEADER END*/

/* ===== ABOUT SECTION ===== */
/* .about-first-nav {
  background: #004aad;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8px 20px;



}

.about-first-nav-left,
.about-first-nav-right {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
}



.about-first-nav a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}


.about-first-nav-right a {
  text-decoration: none;
  color: white;
  font-weight: 600;
}

.about-first-nav a:hover {
  color: #ffcc00;
} */



.about-navbar {
  /* background: linear-gradient(90deg, #e4dad3, #004aad);
  z-index: 10; */
  background: linear-gradient(90deg, #e4dad3, #004aad);
  width: 100%;
  z-index: 9999;
}



.section1 {
  background: #f2f2f2;
  width: 100%;
  text-align: center;
  padding: 30px 0px;

}

.section1 div {
  display: inline-block;
  border-bottom: 2px solid black;

}

.aboutpage-section {

  width: 100%;
  padding: 60px 3%;
  background-color: #f9f9f9;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* LEFT SIDE IMAGE */
.about-left {
  flex: 1 1 45%;
  text-align: center;
}

.about-left img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* RIGHT SIDE CONTENT */
.about-right {
  flex: 1 1 50%;
}

.about-subtitle {
  color: #004aad;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

.about-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.about-text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-readmore {
  background-color: #004aad;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-readmore:hover {
  background-color: #ff7b00;
}

/* ===== ABOUT SECTION END ===== */

/* ===== Banner Slider ===== */
.banner {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider {
  position: relative;
  width: 100%;
  height: 500px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: fit;
  border-radius: 3px;
}

/* Buttons */
.slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  display: none;
  /* default hide on desktop */
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.slider button:hover {
  background-color: rgba(0, 0, 0, 0.6);
}



/*Product Category Start*/

.product-category {
  width: 70%;
  margin: auto;
  padding: 10px 10px;
  box-sizing: border-box;
  background-color: #f9f9f9;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  text-align: start;
  margin-bottom: 10px;
  color: #004aad;
}

.category-container {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  /* for responsiveness */
}

.left-image,
.right-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.right-images img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  border-radius: 8px;
}



/*Product cards */
.product-section {
 
  padding: 40px 2%;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 28px;
  color: #004aad;
}

.all-products-btn {

  background: #ff6600;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
 
}

.all-products-btn:hover {
  background-color: #e65c00;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* Product Card */
.product-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.img-container {
  position: relative;
 
}

.img-container img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  
}

.img-container:hover img {
  transform: scale(1.1);
}

/* Quick View overlay */
.quick-view {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.3s;
}

.img-container:hover .quick-view {
  opacity: 1;
}

.product-info {
  padding: 10px 15px;
  text-align: start;
}

.product-name {
  font-size: 16px;
  color: #004aad;
  margin-bottom: 8px;
}

.price-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 16px;
  font-weight: 600;
  color: #ff6600;
}

.add-to-cart {
  padding: 3px 4px;
  background-color: #004aad;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.add-to-cart:hover {
  background-color: #002f7a;
}

/* Cart Popup */
.cart-popup {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  width: 300px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1000;
}

.cart-content {
  text-align: center;
}

.cart-content h3 {
  margin-bottom: 10px;
  color: #004aad;
}

.cart-popup.show {
  display: block;
}

.cartItem p {

  text-align: start;
  margin: 5px 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

.doneBtn {
  background: #ff6600;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

.close-popup {
  float: right;
  cursor: pointer;
  font-size: 24px;
  color: #333;
 
}

/* Quick View Popup */
.quick-view-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 2000;
 


}

.quick-view-popup.show {

  display: flex;
}

.quick-view-content {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  margin: 0px 20px;
  width: 350px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.quick-view-content h3 {
  border-bottom: 1px solid #eee;
  display: inline-block;
}


.quickview-content img {
  width: 70%;
  height: 250px;
  border-radius: 10px;
  object-fit: cover;
}

.close-quick {

  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 24px;
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
 
}

.close-quick:hover {
  color: #ff6600;
}

/* Small animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.quikImg {
  width: 90%;
  height: 300px;
  border-radius: 10px;
  object-fit: fill;
  padding: 5px 5px;
}





/*Footer Start*/

/* ===== FOOTER ===== */


.footer-address a:hover {
  color: #ff6600;
} 

.footer {
  background-color: #004aad;
  color: #fff;
  padding: 3% 10% 0px 3%;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 12px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.footer ul li:hover {
  color: #ff6600;
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px;
  margin: 20px;
  width: 100%;
}

.footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ff6600;
}

/* Social Icons */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-social a {
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ff6600;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 10px;
}

/* ===== RESPONSIVE DESIGN ===== */

/*  tablets or chooti Screen */
@media (max-width: 992px) {
  .navbar {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
  }

  .contact-info {
    text-align: center;
    margin-top: 10px;
  }

  /*SECOND NAV BAR*/
  .second-nav {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .search-section {
    flex-direction: column;
  }

  .search-bar {
    width: 100%;
    max-width: 500px;
  }

  .icon-section {
    justify-content: center;
  }

  /*third nav*/

  .third-nav {
    flex-wrap: wrap;
    gap: 15px;


  }

  /* Hide UL */


  /* Show search bar */
  .search-section-third {
    display: flex;
  }

  .search-section-third {
    width: 100%;
    margin-left: 0;
  
  }

  /*About Us Css*/

 

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-left,
  .about-right {
    text-align: start;
    flex: 1 1 100%;
  }

  .about-title {
    font-size: 25px;
    
  }

  .about-text {
   
    font-size: 15px;
  }
}

@media (min-width: 992px) {
  .about-navbar {
    position: sticky !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 9999 !important;
  }
}

@media (max-width: 991px) {
  .about-navbar {
    position: static !important;
    /* removes sticky behavior */
  }
}

.about-logo {
  width: 100px;
}

.about-nav-list a {
  text-decoration: none;
  color: white !important;
  font-weight: 600;
  transition: color 0.3s ease;
}

.about-nav-list a:hover {
  color: #ffcc00 !important;
}

/*  small mobile screens */
@media (max-width: 768px) {

  /* Hide left and right parts */
  .nav-links,
  .contact-info {
    display: none;
  }

  /* company name */


  .navbar {
    justify-content: center;
    padding: 15px;
  }

  .logo {
    font-size: 18px;
    text-align: center;
  }

  /*second nav bar*/

  .second-nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
  }

  .menu-icon {
    display: block;
    
  }



.offcanvas-start {
  width: 100% !important; /* Full width on mobile */
  transition: transform 0.4s ease-in-out;
}

  .search-section {
    display: none;
  }

  /* Center logo visually in middle */
  .brand-logo {
    order: 2;
    padding-left: 10%;
  }

  /* Right icons */
  .icon-section {
    order: 3;
    gap: 15px;
  }

  /* Hide All Categories dropdown */
  .category-dropdown {
    display: none;
  }





  /* Right icons */
  .icon-section {
    gap: 15px;
  }

  .brand-logo img {
    width: 90px;
  }

  .dropbtn {
    padding: 8px 12px;
    font-size: 14px;
  }



  .icon-section a {
    font-size: 18px;
  }

  /*Third Nav*/

  .third-nav {
    
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .search-section-third {
    width: 100%;
    margin-left: 0;
    z-index: 99;

  }

  /* Show nav links below All Categories */
  .third-nav-links {
    display: none;
    width: 100%;
    justify-content: flex-start;
    gap: 15px;
  }

  .third-nav-links a {
    background-color: #003a8c;
    padding: 8px 12px;
    border-radius: 5px;
  }

  .third-nav-links a:hover {
    background-color: #ff6600;
    color: #fff;
  }

  .category-btn {
    padding: 3px 5px;
    font-size: 12px;
  }

  .search-section-third input {
    padding: 8px 10px;
  }

  .search-btn-third {
    padding: 8px 10px;
  }

  /*THIRD NAV END*/

  /*banner button sirf mobile par*/
  .slider button {
    display: block;
    font-size: 10px;
  }



  /*Product Category */



  .category-container {
    flex-direction: column;
    gap: 15px;
  }

  .right-images img {
    flex: none;
    height: 200px;
    /* adjust as needed */
  }

  .section-title {
    text-align: center;
  }

  /*Product Cards*/

  section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .product-grid {
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .product-section {
    padding: 20px 2%;
  }





  .price-cart {
    flex-direction: row;
    gap: 20px;
  }

  .add-to-cart {
    width: 100%;
  }

  /*FOOTER*/

 

  .footer-address a:hover {
    color: #ff6600;
  } 

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: auto;
    text-align: start;
    padding: 7px 10px;
  }

  .footer ul li {
    justify-content: start;
  }

  .footer-social {
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }

}


/* Mobile screens <576px */
@media (max-width: 576px) {


  .brand-logo {
    order: 0;
    padding-left: 1%;
  }
  .search-section {
    display: none;
  }

  .third-nav-links {
    justify-content: center;
    text-align: center;
  }


  .third-nav-links a {
    padding: 10px 15px;
  }

  /*banner height*/

  .slider {
    height: 300px;
  }

  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  .slide.active {
    opacity: 1;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: fit;
    border-radius: 3px;
  }

  .product-category {
    width: 100%;
    padding: 10px 10px;
  }

  .section-title {
    font-size: 16px;
    margin-bottom: 10px;
  }


  .section-header h2 {
    flex-direction: column;
    font-size: 16px;
    text-align: start;
    align-items: flex-start;
    gap: 10px;
  }

  .all-products-btn {
    padding: 5px 5px;
    font-size: 14px;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .product-section {
    padding: 20px 5%;
  }

  .section-header {
    padding: 0px 10px;
  }

  .product-card {
    height: auto;
    width: 100%;
    margin: auto;
  }

  .product-name {
    font-size: 14px;

  }

  .price-cart span {
    font-size: 16px;
  }

  .price-cart button {
    font-size: 10px;
    padding: 5px 1px;
  }

  /*cart pop up mobile screen*/
  .cart-popup {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    width: 70%;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
  }



  /*FOOTER*/

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 10px;
    column-gap: 25px;
    font-size: 14px;
    margin: auto;
    text-align: start;
    padding-left: 3%;


  }

 

  .footer ul li {
    justify-content: start;
    font-size: 10px;
  }

  .footer-social {
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }

  .footer-grid h3 {
    font-size: 14px;
  }



  




}