@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');


body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    padding: 14px 30px;
}

.logo {
    font-weight: 600;
    font-family: "Merriweather", serif;
    margin-right: 20px;
}

.navbar-icons {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-icons li {
    margin-left: 50px;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.navbar-icons li i {
    font-size: 34px;
    color: #e12d2c;
}

.search-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 640px;
    height: 45px;
    overflow: hidden; /* Ensures rounded corners for child elements */
    margin: 10px 0; /* Adjust as needed */
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border: 1px solid #ebebeb;
}

.select {
    flex: 1 1 30%; /* Flexible width */
    height: 100%;
    border: none;
    outline: none;
    padding: 0 10px;
    background-color: #f8f9fa;
}

.select option {
    padding: 10px;
}

.search {
    flex: 2 1 50%; /* Flexible width */
    height: 100%;
    border: none;
    outline: none;
    padding: 0 10px;
}

.search-button {
    flex: 0 0 60px; /* Fixed width */
    height: 100%;
    background-color: #e12d2c;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button:hover {
    background-color: #b62323;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-container {
        width: 100%;
    }

    .navbar-icons {
        margin-top: 10px;
    }

    .navbar-icons li {
        margin-left: 15px;
    }
}
.number{
    padding-top: 10px;
    /* margin-left: -80px; */
}
.topbar i{
    font-size: 40px;
}
.contact-us{
    display: flex;
    align-items: center;    
}
.contact-us i{
    margin-right: 10px;
    color: #e12d2c;
}
.features{
  background-color: #e12d2c;
  color: white;
}
.feature-item {
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
 
  .feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  .feature-text {
    font-size: 0.9rem;
    color: rgb(230, 221, 221) !important;
  }
  .text-primary {
    color: white !important;
  }

  .categories h2 {
    font-size: 2rem;
    font-weight: 700;
  }
  
  .categories p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 50px;
  }

  .category-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .category-item:hover {
    transform: translateY(-10px);
  }

  .category-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e12d2c;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #e12d2c;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .category-item:hover .category-icon {
    background-color: #e12d2c;
    color: #fff;
  }

  .category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
  }


  .slider {
    height: 150px; /* Adjust height as needed */
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
  }
  
  .slider::before,
  .slider::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 25%;
    z-index: 2;
    pointer-events: none;
  }
  
  .slider::before {
    left: 0;
    top: 0;
  }
  
  .slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }
  
  .slide-track {
    width: calc(150px * 20);
    display: flex;
    animation: scroll 15s linear infinite;
    justify-content: space-between;
  }
  .slide-track-footer{
    width: calc(150px * 20);
    display: flex;
    animation: scroll 15s linear infinite;
    justify-content: space-between;
  }
  
  .slide-track2 {
    width: calc(150px * 15);
    display: flex;
    animation: scroll2 15s linear infinite;
    justify-content: space-between;
  }
  .slide {
    width: 180px; /* Equal width for all slides */
    height: 100px; /* Equal height for all slides */
    display: flex; /* Change display property to flex */
    justify-content: center; /* Align items horizontally to center */
    align-items: center; /* Align items vertically to center */
    cursor: pointer;
    padding: 10px; /* Add padding between slides */
    transition: 0.5s;
  }
  
  .slide:hover {
    transform: scale(0.8);
  }
  
  .slide img {
    width: 100%; /* Ensure image fills the slide container horizontally */
    height: 100%; /* Ensure image fills the slide container vertically */
    object-fit: contain; /* Ensure the entire image is visible even if it needs to be cropped */
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(calc(-150px * 10));
    }
  }
  
  @keyframes scroll2 {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(calc(-150px * 5));
    }
  }
  
  @media screen and (max-width: 768px) {
    .slide-track {
      width: calc(80px * 20);
    }
  
    .slide-track2 {
      width: calc(80px * 15);
    }
  
    .slide {
      width: 80px;
    }
  
    @keyframes scroll {
      0% {
        transform: translateX(0px);
      }
      100% {
        transform: translateX(calc(-80px * 10));
      }
    }
  
    @keyframes scroll2 {
      0% {
        transform: translateX(0px);
      }
      100% {
        transform: translateX(calc(-80px * 5));
      }
    }
  }

  .prod1 {
    width: 260px;
    position: relative;
    border: 1px solid transparent;
    overflow: hidden;
    transition: border 0.3s ease-in-out;
    padding: 10px;
}
.prod1 .heading:hover{
  color: black;
}

.prod1 img {
    display: block;
    width: 100%; /* Ensure image takes full width of the card */
    height: auto;
}

.prod1:hover {
    padding: 10px !important;
    border: 1px solid #e12d2c;
}

.discount-tag {
    background-color: #e12d2c;
    padding: 2px 5px;
    border-radius: 4px;
    color: white;
    font-size: 12px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1; /* Ensure it stays above the image */
}

.heart-icon {
    position: absolute;
    top: 10px; /* Adjusted top positioning */
    right: 10px;
    font-size: 24px;
    color: #e12d2c;
    opacity: 0;
    transition: top 0.4s ease, opacity 0.4s ease;
}

.prod1:hover .heart-icon {
    top: 20px; /* Slight movement down */
    opacity: 1;
}

.heart-animation {
    animation: heartMove 0.6s ease-in-out;
}

@keyframes heartMove {
    0% {
        top: -50px;
        opacity: 0;
    }
    100% {
        top: 10px;
        opacity: 1;
    }
}
.heading:hover{
  color: black;
}

.action {
    display: flex;
    justify-content: space-between;
}

.reviews i {
    color: orange;
}

.bag {
    font-size: 26px;
    color: #e12d2c;
}

.products {
    text-decoration: none;
    color: black;
    position: relative;
}
.deals .col-lg-2{
  margin-left: 34px;
} 
.prod1 img {
  width: 100%;
  height: 180px; /* Adjust this value to your preferred height */
  object-fit: cover; /* Ensures the image covers the set dimensions without distortion */
  border-radius: 5px; /* Optional: Adds rounded corners */
}
/* Custom styles for the deals section */
.splide-deals {
  margin-top: 40px;
}

.products .prod1 {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden; /* Ensure that overflowing content is clipped */
}
.prod1 img{
  width: 100% !important;
  height: 100% !important;
}

.heading {
  margin-top: 10px;
}


.shop{
  background-color: #e12d2c;
  color: white;
}
.shop:hover{
  background-color: #941b1b;
  color: white;
}
.big-card1{
  display: flex;
  justify-content: space-between;
  background-color: orange;
  color: white;
  padding: 30px 30px;
  margin: 30px 0;
  border-radius: 12px;
  margin-right: 20px;
  width: 650px;
  
}
.big-card1 p{
  font-size: 16px;
  color: #f8f9fa;
  text-wrap: pretty;
}
.big-card2{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e12d2c;
  color: white;
  padding: 30px 40px;
  margin: 30px 0;
  border-radius: 12px;
  width: 650px;
}
.big-card2 p{
  font-size: 16px;
  color: #f8f9fa;
  text-wrap: pretty;
}

.person{
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 20px;
  padding-right: 60px;
  margin: 20px 0;
  background-color: orange;
  color: white;
}
.text{
  text-align: center;
  padding: 10px 20px;
  margin-left: -150px;
}
.text h2{
  font-size: 45px;
}
.text p{
  color: #f8f9fa;
}
.pshop{
  padding: 10px 20px;
  font-weight: 600;
  background-color: white;
}
.pshop:hover{
  background-color: #b62323;
  color: white;
  transition: 0.5s ease;
}
.items{
    display: flex;
    list-style: none;
    margin-top: 10px;
  }
.items li a{
  text-decoration: none;
  color: white;
  margin-right: 30px;
}
.topbar-expand{
  background-color: #e12d2c;
  padding: 2px 10px;
}
.items li a:hover{
  font-weight: 600;
  transition: 0.2s ease;
}
.products-area{
  padding: 0 40px;
}

footer {
  background-color: white;
  color: black;
}

footer h5 {
  font-size: 18px;
  margin-bottom: 15px;
}

footer a {
  text-decoration: none;
  color: black;
}

footer a:hover {
  text-decoration: underline;
}

footer p {
  margin-top: 10px;
}
/* General Styles */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background-color: #f8f8f8;
}

.desktop {
  display: flex;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.sidebar{
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #e12d2c;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  z-index: 1;
}

.sidebar-items {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
/* Sidebar general styles */
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #333;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 36px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* Dropdown button style */
.dropdown-btn {
  background-color: #333;
  color: white;
  padding: 16px;
  font-size: 18px;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.dropdown-btn:hover {
  background-color: #575757;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.dropdown-content li {
  background-color: #444;
  padding: 12px 16px;
  border-bottom: 1px solid #575757;
}

.dropdown-content li a {
  text-decoration: none;
  color: white;
  display: block;
}

.dropdown-content li:hover {
  background-color: #575757;
}

/* Show the dropdown when clicked */
.show {
  display: block;
}

/* Sidebar items styling */
.sidebar-items {
  list-style-type: none;
  padding: 0;
  margin: 20px;
}

.sidebar-items li a {
  padding: 8px 16px;
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  display: block;
  transition: 0.3s;
}

.sidebar-items li a:hover {
  background-color: #575757;
}

/* Cart icon styling */
.cart-icon {
  color: white;
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 24px;
}


.sidebar-items li a {
  padding: 8px 16px;
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  display: block;
  transition: 0.3s;
}

.sidebar-items li a:hover {
  background-color: #575757;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 36px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.cart-icon {
  color: white;
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 24px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .desktop {
    display: none;
  }
  .topbar-expand{
    display: none;
  }

  .hamburger {
    display: block;
  }
  .deskt{
    display: flex;
    justify-content: space-between !important;
    align-items: center;
  }
  .deskt button{
    margin-left: 220px;
  }
  .slider-content h2{
    font-size: 45px;
  }
  .one{
    font-size: 50px !important;
    margin: 0;
  }
  .person{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }
  .text{
    margin-left: 10px !important;
    padding: 10px 0;
  }
  .text h2{
    font-size: 35px;
    text-wrap: pretty;
  }
  .person .person-image{
    display: none;
  }
}
.sidebar-prod{
  border: 2px solid #e12d2c;
  padding: 10px 20px;
  border-radius: 24px;
  border-bottom: 5px solid #e12d2c;
}
.more-products{
  display: flex !important;
}

