body {
  overflow-x: hidden;
}

/* Nav Icons */
body {
  overflow-x: hidden;
}
.nav-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  padding: 3px 6px;
}
/* Offcanvas Styles */
.offcanvas {
  background-color: #f8f9fa; /* Light background for offcanvas */
}

.offcanvas-body .nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  color: #000;
}

.offcanvas-body .nav-link i {
  font-size: 20px;
}

/* Ensure the offcanvas is full height on small screens */
@media (max-width: 991.98px) {
  .offcanvas {
    width: 100%; /* Full width on small screens */
  }
}
/* Nav Icon Styles */
.nav-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  color: black;
}

.nav-icon i {
  font-size: 22px;
}

/* Nav Icons Container */
.nav-icons {
  display: flex;
  gap: 15px; /* Consistent gap between icons */
}

/* Adjust Nav Icons for Smaller Screens */
@media (max-width: 992px) {
  .nav-icons {
    flex-direction: column; /* Stack icons vertically */
    gap: 10px;
    padding-top: 10px;
  }

  .nav-icon {
    flex-direction: row; /* Align icon and text horizontally */
    gap: 5px;
  }
}

/* Search Bar Styles */
.search-bar-container {
  display: none; /* Hidden by default */
}

.desktop-search {
  width: 60%; /* Default width for larger screens */
  max-width: 350px; /* Limit maximum width */
  margin: 0 auto; /* Center the search bar */
  flex-grow: 0; /* Prevent excessive stretching */
}

/* Medium Screens (e.g., tablets) */
@media (max-width: 992px) {
  .desktop-search {
    width: 45%; /* Slightly wider for medium screens */
    max-width: 400px;
  }
}
.search-item:hover {
  background-color: #f1f1f190;
}


/* Mobile Screens */
@media (max-width: 768px) {
  .search-bar-container {
    display: block; /* Show mobile search bar */
    width: 100%;
    padding: 10px 15px;
    background: white;
  }

  .search-bar-container input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  /* ..............search suggen ............*/

  /* Mobile Search Bar */
  .d-lg-none .search-input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }

  /* Dropdown Styling */
  .search-results-dropdown {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }


  @media (min-width: 992px) {
    .desktop-search {
      max-width: 550px; /* Wider search bar for larger screens */
      margin-left: auto; /* Push towards center */
      margin-right: auto; /* Push towards center */
    }
  }

  /* ..........................end */

  .nav-icons {
    justify-content: flex-end; /* Align icons to the right */
    padding: 0 15px;
  }

  .nav-icon {
    flex-direction: row; /* Ensure horizontal alignment */
    align-items: center;
    gap: 5px;
  }
}

/* Custom Carousel Styles  */
.carousel-inner {
  border-radius: 10px; /* Rounded corners */
  overflow: hidden;
}

.carousel-item {
  height: 100%; /* Set height for all slides */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Prevents any overflow */
}

.carousel-item img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; Ensures image fills container */
  display: block;
}
/* Carousel Caption */
.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 10px;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  text-align: center;
}
.carousel-caption h5 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}
.carousel-caption p {
  font-size: 16px;
  margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .carousel-item {
    height: 280px; /* Adjusted height for smaller screens */
  }
  .carousel-caption {
    padding: 8px;
    bottom: 5px;
    width: 95%;
  }
  .carousel-caption h5 {
    font-size: 18px;
  }
  .carousel-caption p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .carousel-item {
    height: 250px; /* Adjusted height for mobile screens */
  }
}
/* Middle Navigation Bar */
.category-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 100%;
  padding: 10px 0;
  background: white;
  overflow: hidden;
}

/* Category Navigation */
.category-nav {
  width: 90%;
  margin: 0 auto;
  overflow-x: auto;
  white-space: nowrap;
  display: flex;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
  padding: 0 10px; /* Add padding to prevent edge clipping */
  scroll-padding: 10px; /* Ensures smooth scroll stops */
  justify-content: center; /* Center on large screens */
}

/* Hide scrollbar for Chrome/Safari */
.category-nav::-webkit-scrollbar {
  display: none;
}

/* Category List */
.category-list {
  display: flex;
  gap: 60px;
  list-style: none;
  padding: 0;
  margin: 0;
  transition: transform 0.3s ease-in-out;
  justify-content: center; /* Center items on large screens */
}

/* Ensure first and last items are fully visible */
.category-item:first-child {
  margin-left: 0;
}

.category-item:last-child {
  margin-right: 0;
}

/* Category Item */
.category-item {
  text-align: center;
  min-width: 80px;
}

/* Category Links */
.category-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: black;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

/* Category Images */
.category-item img {
  /* width: 65px; */
  height: 55px;
  margin-bottom: 5px;
  transition: transform 0.3s ease-in-out;
  border-radius: 8px;
}

/* Hover Effect */
.category-item:hover img {
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .category-nav {
    width: 85%;
    justify-content: flex-start; /* Allow scrolling on smaller screens */
  }
  .category-list {
    gap: 30px;
    justify-content: flex-start;
  }
  .category-item img {
    width: 50px;
    height: 45px;
  }
}

@media (max-width: 768px) {
  .category-nav {
    width: 100%;
    padding: 0 5px; /* Reduce padding for small screens */
    justify-content: flex-start;
  }
  .category-list {
    gap: 20px;
    justify-content: flex-start;
  }
  .category-item img {
    width: 40px;
    height: 40px;
  }
  .scroll-btn {
    font-size: 14px;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .category-nav {
    width: 100%;
    padding: 0 5px;
  }
  .category-list {
    gap: 15px;
  }
  .category-item img {
    width: 35px;
    height: 35px;
  }
  .scroll-btn {
    font-size: 12px;
    padding: 6px;
  }
}
/* shop by category */
/* Shop By Category Section */
.shop-by-category {
  text-align: center;
  padding-bottom: 30px;
  font-family: Arial, sans-serif;
}

.shop-by-category h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Category Card */
.category {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid #ddd;
  background: white;
  transition: transform 0.3s ease-in-out;
  text-align: center;
  padding: 8px;
}

.category:hover {
  transform: scale(1.05);
}

/* Category Image */
.category img {
  width: 100%;
  height: 200px; /* Fixed height to maintain consistency */
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.category:hover img {
  transform: scale(1.05);
}

/* Category Info */
.category-info {
  position: relative;
  background: rgb(255, 255, 255); /* Orange shade */
  color: rgb(12, 3, 3);
  text-align: center;
  padding: 10px;
  border-radius: 0 0 8px 8px;
}

.category-info h3 {
  font-size: 14px;
  margin: 5px 0;
  font-weight: bolder; /* Makes the text bold */
  font-family: 'Poppins', sans-serif; /* Uses a modern, readable font */
  color: #333; /* Sets a dark gray color for better readability */
  text-transform: capitalize; /* Capitalizes the first letter of each word */
  letter-spacing: 0.5px; /* Adds slight spacing between letters */
}

.category-info p {
  font-size: 14px;
  font-weight: bolder;
  color: red;
}

.category-info a {
  display: inline-block;
  color: rgb(12, 4, 4);
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  margin-top: 5px;
}
.category:hover a {
  background-color: green !important;
  color: white !important;
}
.category img:hover a{
  background-color: green !important;
  color: white !important;
}
/* Responsive Grid Adjustments */
@media (min-width: 1200px) {
  .category {
    width: 220px;
  }
}

@media (max-width: 992px) {
  .category {
    width: 100%; /* Full width in smaller screens */
  }
}

@media (max-width: 768px) {
  .shop-by-category h2 {
    font-size: 24px;
    padding: 0px;
  }

  .category img {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .shop-by-category h2 {
    font-size: 22px;
  }

  .category {
    width: 100%;
  }

  .category img {
    height: 150px;
  }
}
@media (max-width: 768px) {
  .category-info {
    margin-top: 10px;
  }
}
/* ......................................F  o o ter........................................... */
a {
  text-decoration: none;
}
footer {
  background-color: #f8f9fa !important; /* Light Gray */
  color: #6c757d !important; /* Slightly darker text for readability */
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.footer-heading {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.footer-link {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #007bff;
}

.app-download img {
  transition: transform 0.3s;
}

.app-download img:hover {
  transform: scale(1.05);
}

.guarantee {
  font-size: 14px;
  color: #666;
}

.social-icons {
  margin-top: 10px;
}

.social-icon {
  color: #666;
  font-size: 20px;
  margin: 0 10px;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #007bff;
}

.text-muted {
  font-size: 14px;
  color: #999 !important;
}
.guarantee-section {
    
    background-color: #d5cdcb !important;  /* Change this to your preferred color */
    color: #333 !important; /* Text color */
    padding: 20px; /* Adjust padding if needed */
  }
  
/* product card */

/* Product card hover effect */
.product-card {
  position: relative;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #e0e0e0;
}

.product-card .details {
  background-color: white;
  text-align: center;
}

.product-card .details h6 {
  font-size: 16px;
  font-weight: 600;
}

.product-card .details p {
  font-size: 14px;
  color: #6c757d;
}

.product-card .details .price {
  font-size: 15px;
  font-weight: bold;
  color: #e74c3c;
}

/* Add to Cart Button */
.add-to-cart {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #28a745;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

/* cart................................................................................................... */

.cart-container {
  margin-top: 30px;
  padding: 15px;
}
.cart-header {
  margin-bottom: 20px;
}
.cart-header h2 {
  font-weight: bold;
  color: #333;
}
.cart-header .text-muted {
  font-size: 16px;
  color: #6c757d;
}
.card {
  position: relative;
  border: none;
  border-radius: 8px;
  transition: 0.3s;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  min-height: 330px;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: contain; /* Ensure the full image is visible */
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.card-body {
  padding: 15px;
  text-align: center;
}
.card-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}
.price {
  font-size: 14px;
  color: #28a745;
  font-weight: bold;
  margin-bottom: 10px;
}
.quantity-select,
.color-select {
  width: 100%;
  padding: 6px;
  border-radius: 6px;
  border: 1px solid #ddd;
  margin-bottom: 8px;
  font-size: 14px;
  cursor: pointer;
  background: #f1f1f1;
  font-weight: bold;
}
.sidebar {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
.sidebar h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}
.sidebar p {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}
.grand-total {
  font-size: 18px;
  font-weight: bold;
  color: #28a745;
  margin-top: 15px;
}
.btn-checkout {
  background-color: #28a745;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 10px;
  border-radius: 6px;
  width: 100%;
  margin-top: 15px;
  transition: 0.3s;
}
.btn-checkout:hover {
  background-color: #218838;
  transform: translateY(-2px);
}
/* Close Button */
.remove-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #333;
}
.remove-btn:hover {
  color: red;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.quantity-btn {
  background-color: #f0f0f0;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover {
  background-color: #ddd;
}

.quantity {
  font-size: 16px;
  font-weight: bold;
}

/* cart..............................end......................................... */

/* Show the Add to Cart button on hover */
.product-card:hover .add-to-cart {
  opacity: 1;
}

/* ..............product details */
.price {
  font-size: 1.7rem;
  font-weight: bold;
  color: #28a745;
}

/* Add to Cart Button */
.btn-cart {
  background-color: #28a745;
  color: white;
  padding: 12px;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: all 0.3s ease-in-out;
}
.btn-cart:hover {
  background-color: #218838;
  transform: scale(1.05);
}

/* Size Options */
.size-option {
  display: inline-block;
  padding: 8px 16px;
  margin: 5px;
  font-weight: bold;
  border: 2px solid gray;
  border-radius: 6px;
  transition: 0.3s;
}
.size-option:hover {
  background-color: #28a745;
  color: white;
  border-color: #28a745;
}

/* Color Options */
.color-option {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-block;
  margin: 5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}
.color-option:hover {
  border: 2px solid black;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .product-image img {
    height: 300px; /* Adjust for smaller screens */
  }
}

/* ................................profile....................................................................................... */
.sidebarr {
  max-height: 400px; /* Adjust this height as needed */
  overflow-y: auto; /* Enables scrolling if content overflows */
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.sidebarr {
  position: sticky;
  top: 80px; /* Adjust based on your navbar height */
}

.profile-container {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.address-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: #f9f9f9;
  position: relative;
}

.address-card .btn {
  font-size: 1rem;
  padding: 5px;
  background: none;
}

.address-card .btn:hover {
  background: none;
  transform: scale(1.1);
}

.edit-btn {
  background-color: #ff3366;
  color: white;
  border: none;
  padding: 0.5rem 2rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.edit-btn:hover {
  background-color: #e62e5c;
}
.overview-card {
  background: white;
  text-align: center;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.overview-card i {
  font-size: 2rem;
  color: #555;
  margin-bottom: 1rem;
}
.overview-card h6 {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.overview-card p {
  font-size: 0.875rem;
  color: gray;
  margin: 0;
}
.overview-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}
.address-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: #f9f9f9;
}
.address-card h6 {
  font-weight: bold;
  margin-bottom: 0.75rem;
}
.address-card p {
  margin: 0;
  color: #555;
}
.address-card button {
  margin-top: 0.75rem;
  margin-right: 0.5rem;
}
.nav-link {
  color: #555;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}
.nav-link.active {
  color: #28a745;
  font-weight: bold;
}
.nav-link:hover {
  color: #28a745;
}
.text-danger {
  color: #dc3545 !important;
}
.text-danger:hover {
  color: #c82333 !important;
}

/* ...................Login and signup.......................................................... */

.bg-gradient {
  background: linear-gradient(135deg, #11cb1a, #2575fc);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.login-container {
  border-radius: 12px;
  overflow: hidden;
  animation: fadeIn 0.5s ease-in-out;
}

/* Welcome Section */
.bg-light {
  text-align: center;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

/* Form Controls */
.form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 0.75rem;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #6a11cb;
  box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

/* Login Button */
.btn-primary {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  border: none;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
  }

  .bg-light {
    border-radius: 12px 12px 0 0;
  }
}

/* ..........................pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.page-item {
  margin: 0 5px;
  list-style: none;
}

.page-link {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background-color: #fff;
  color: #007bff;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.page-link:hover {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

.page-item.active .page-link {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

.page-item.disabled .page-link {
  background-color: #f8f9fa;
  color: #6c757d;
  cursor: not-allowed;
  border-color: #ddd;
}

/* ............select varient product details.... */

.variant-option {
  display: inline-block;
  padding: 8px 8px;
  margin: 5px;
  border: 1px solid #ccc;
  cursor: pointer;
  border-radius: 5px;
}
.variant-option.selected {
  border: 2px solid rgb(1, 27, 1);
  font-weight: 900;
}
.color-option {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 5px;
  border-radius: 50%;
  cursor: pointer;
}

/* productdetails reviews........... */
/* Add this to your CSS file */
.card {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.star-rating span {
  transition: color 0.2s ease-in-out;
}

.star-rating span:hover {
  color: #ffc107 !important;
}

.reviews-list {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 10px;
}

/* login modal */
/* Custom Styling */
.modal-content {
  border-radius: 12px;
  overflow: hidden;
}

.modal-header {
  border-bottom: none;
}

.modal-body {
  padding: 2rem;
}

.input-group-text {
  border-radius: 10px 0 0 10px;
}

.form-control {
  border-radius: 0 10px 10px 0;
}

.btn-warning {
  background-color: #ffc107;
  border: none;
}

.btn-warning:hover {
  background-color: #e0a800;
}

/* asured in home  page */

.assured-banner {
  background: linear-gradient(to right, #eef7ff, #f7faff);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 65%;
}

/* Image Size */
.checklist-icon {
  width: 28px;
  height: 28px;
}

/* Text Alignment */
.text-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Button */
.btn-pill {
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .content-container {
    width: 85%;
  }
}

@media (max-width: 768px) {
  .content-container {
    flex-direction: column;
    text-align: center;
    width: 90%;
  }

  .d-flex {
    flex-direction: column;
    gap: 10px;
  }

  .btn-pill {
    margin-top: 10px;
    width: 100%;
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .assured-banner {
    font-size: 16px;
    padding: 10px;
  }

  .checklist-icon {
    width: 24px;
    height: 24px;
  }

  .fs-5 {
    font-size: 14px !important;
  }

  .btn-pill {
    font-size: 12px;
    padding: 6px 15px;
  }
}

/* ....orderdetails..... */

.order-card {
  border-radius: 10px;
  background: #fff;
  transition: all 0.3s ease-in-out;
}

.order-card:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.products-container {
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.product-card {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  transition: all 0.3s ease-in-out;
}

.product-card:hover {
  transform: scale(1.05);
  background: #f1f1f1;
}
/* last button updation */

@media (max-width: 576px) {
  .add-to-cart {
    font-size: 12px;
    padding: 7px 8px;
  }
}




