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

body {
  background-color: #f9f9f9;
}

/* NAVBAR STYLES  */
.navbar {
  width: 100%;
  background: #004aad;
  color: white;
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  padding: 12px 20px;
  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: 6px;
  font-size: 14px;
  margin-bottom: 0px;
}

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

/* first navbar end */

/* SECOND NAVBAR  */

.second-nav {

  background-color: #ffffff;
  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;
}



/* Left Logo */
.brand-logo {
  flex-shrink: 0;
}

.brand-logo img {
  width: 100px;
  height: auto;
}

/* Center Section */


/* Dropdown Button */






/* Search bar */




/* Right Icons */


.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;
}




.second-nav-links {

  list-style: none;
  gap: 25px;
  margin: 0;
}

.second-nav-links li a {
  text-decoration: none;
  color: #004aad;
  font-weight: 500;
  transition: color 0.3s ease;
}

.second-nav-links li a:hover {
  color: #ff6600;
}
/* 
/* ===== USER DROPDOWN (right) ===== */
/* .user-dropdown {
 
  cursor: pointer;
}

.user-dropdown .dropdown-menu-custom {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 120%;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 8px;
  z-index: 1000;
  min-width: 160px;
}

.user-dropdown .dropdown-menu-custom a {
  background: none;
  text-decoration: none;
  border: none;
  text-align: left;
  padding: 10px 15px;
  width: 100%;
  color: #004aad;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.5s, color 0.3s;
}

.user-dropdown .dropdown-menu-custom a:hover {
  background-color: #ff6600;
  color: #fff;
} */

/* Show dropdown on hover */
/* .user-dropdown:hover .dropdown-menu-custom {
  display: flex;
}  */

/* ===== USER DROPDOWN (right) ===== */
.user-dropdown {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  cursor: pointer;
}

.user-dropdown .dropdown-menu-custom {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 120%;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 8px;
  z-index: 1000;
  min-width: 180px;
}

/* Show on hover */
.user-dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Optional delay for smoothness */
.user-dropdown .dropdown-menu-custom {
  transition-delay: 0.3s;
}
.user-dropdown:hover .dropdown-menu-custom {
  transition-delay: 0s;
}

/* Dropdown link style */
.user-dropdown .dropdown-menu-custom a {
  display: block;
  text-decoration: none;
  padding: 10px 15px;
  color: #004aad;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

.user-dropdown .dropdown-menu-custom a:hover {
  background-color: #ff6600;
  color: #fff;
}

/* second nav end*/





/*HEADER END*/

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


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

}

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

}












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

.about-left img {
  width: 100%;
  max-width: 500px;
  object-fit: fill;

}

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

/* ===== 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: fill;
  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*/

.categories-box{
  height:200px;
}

.product-category-slide {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
  background: linear-gradient(to right, #004aad, #ff7f00);
  margin-top: 60px;
}

.carousel-inner {
  padding: 20px;
}

.category-card-slide {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.category-card-slide img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.category-card-slide {
  padding: 15px;
}

.category-card-slide h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #004aad;
}

/* ====== CUSTOM DOTS ====== */
.custom-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 12px;
}

.custom-dot {
  width: 12px;
  height: 12px;
  background-color: #fff;
  border: 2px solid #004aad;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.custom-dot.active {
  background-color: #004aad;
  transform: scale(1.2);
}

.custom-dot.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
}

/*Product cards */

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

.section-header h2 {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  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 Card */
.product-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.img-fluid {
  width: 100%;
  /* height: 400px; */
  object-fit: contain;
}

.img-container {
  position: relative;
  overflow: hidden;  /*extra */

}

.img-container img {
  display: block;
  width: 100%;
  height: 200px;
  z-index: 1;
  position: relative;
  object-fit: contain;


}

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

/* Quick View overlay */
.quick-view {
  position: absolute;
  top:  50%;
  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, transform 0.2s ease-in-out;
  font-size: 14px;
  z-index: 9999;
}

/* Icon ke andar thoda space */
.quick-view i {
  margin-right: 6px;
}

.product-card:hover .quick-view,
.position-relative:hover .quick-view {
  opacity: 1;
  transform: translateX(-50%) translateY(5px);
}

.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 {
   position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000; */
  /* justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; */



}

.quick-view-popup.show {
  display: flex;
}

/* Quick View Container */
.quick-view-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  max-height: 95vh;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Main Product Image */
.main-product-img {
  max-height: 400px;
  width: 100%;
  object-fit: contain;
}

/* Navigation Buttons */
.nav-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.nav-btn.prev-btn {
  left: 10px;
  margin: 0;
}

.nav-btn.next-btn {
  right: 10px;
  margin: 0;
}

/* Mobile Thumbnails */
.mobile-thumbnails {
  margin-top: 10px;
}

.thumbnail-scroll {
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
  padding-bottom: 5px;
}

.thumbnail-scroll::-webkit-scrollbar {
  height: 4px;
}

.thumbnail-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.thumbnail-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}

.mobile-thumb {
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-thumb:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

/* Button Sizing */
.btn-md-normal {
  font-size: 1rem;
}

@media (min-width: 768px) {
  .btn-md-normal {
    padding: 0.5rem 1rem;
  }
}

.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;
}

.quikImg {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  object-fit: cover;
  /* padding: 5px 5px; */
}


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

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

/* ========== Mobile Responsive Styles ========== */
@media (max-width: 767.98px) {
  /* Quick View Popup Container */
  .quick-view-popup {
    padding: 10px;
    align-items: flex-start;
    overflow-y: auto;
  }

  .quick-view-popup.show {
    display: flex;
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .quick-view-container {
    max-height: 90vh;
    margin: 0;
    padding: 15px !important;
    border-radius: 10px !important;
  }

  /* Main Image Container */
  .main-image-container {
    min-height: 250px;
    margin-bottom: 15px;
    padding: 10px;
  }

  .main-product-img {
    max-height: 300px;
    width: 100%;
    object-fit: contain;
  }

  /* Navigation Buttons - Smaller on mobile */
  .nav-btn {
    width: 35px;
    height: 35px;
    font-size: 0.875rem;
  }

  .nav-btn.prev-btn {
    left: 5px;
  }

  .nav-btn.next-btn {
    right: 5px;
  }

  /* Thumbnails */
  .thumbnail-container {
    max-height: 350px;
  }

  .thumbnail-img {
    max-width: 100%;
  }

  /* Product Info */
  #quickName {
    font-size: 1.25rem !important;
    margin-bottom: 10px !important;
  }

  #quickPrice {
    font-size: 1.5rem !important;
    margin-bottom: 10px !important;
  }

  /* Close Button */
  .btn-close {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    padding: 0;
  }

  /* Mobile Thumbnails Scroll */
  .mobile-thumbnails {
    margin-top: 15px;
  }

  .thumbnail-scroll {
    -webkit-overflow-scrolling: touch;
  }

  /* Adjust spacing */
  .quick-view-container .row {
    margin: 0;
  }

  .quick-view-container .row > div {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* Small mobile devices */
@media (max-width: 575.98px) {
  .quick-view-popup {
    padding: 5px;
  }

  .quick-view-container {
    padding: 12px !important;
    max-height: 95vh;
  }

  .main-product-img {
    max-height: 250px;
  }

  .nav-btn {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }

  #quickName {
    font-size: 1.1rem !important;
  }

  #quickPrice {
    font-size: 1.25rem !important;
  }

  .mobile-thumb {
    min-width: 70px !important;
    height: 70px !important;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
  .quick-view-container {
    max-width: 90%;
  }

  .main-product-img {
    max-height: 350px;
  }

  .nav-btn {
    width: 38px;
    height: 38px;
  }
}






/*Footer Start*/

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



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

.footer {
  background-color: #004aad;
  color: #fff;
  padding: 15px 5% 20px 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;
  }
}





.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: 0;

  }

  /* 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;
  }

  .user-dropdown {
    display: none !important;
  }


  /*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 !important;
    /* 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-card {
    height: 400px;
    object-fit: contain;
    width: 100%;
  }

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

  

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

  .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;
  }



  /* .menu-icon {
    display: block;
  } */

  /* .brand-logo {
    order: 0;
  } */

  /* .brand-logo img {
    width: 100px;
  } */


  .second-nav-links {
    display: none !important;
  }

  .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 {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    color: #004aad;
    
    font-size: 16px;
    text-align: start;
    align-items: flex-start;
   
  }

  .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: 350px;
    width: 100%;

    object-fit: contain;
  }

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

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

  .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;
  }








}