@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&display=swap');

:root {
    --orange: #cdcdcd;
    --black: #000000;
    --light-color: #666;
    --box-shadow: 0.5rem 1rem rgba(0,0,0,.1);
    --border: .2rem solid rgba(0,0,0,.1);
    --outline: .1rem solid rgba(0,0,0,.1);
    --outline-hover: .2rem solid var(--black);
    background-color: #f5efd7;
}
p{
    font-size: 1.2rem;
}
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;
    
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

body {
    background: #f5efd7;
}

section{
    padding: 2rem 9%;
}

.heading{
    text-align: center;
    padding: 2rem 0;
    padding-bottom: 3rem;
    font-size: 3.5rem;
    font-family: 'Raleway', 'Noto Sans KR', 'Nanum Gothic', sans-serif;
    color: var(--black);
}
.header{
    height: 150px;
}
.heading span{
    /* background: var(--orange); */
    /* color: #fff; */
    display: inline-block;
    margin-right: 1%;
    /* padding: .1rem 3rem; */
    /* font-weight: 300; */
    /* clip-path: polygon(100% 0, 93% 50%, 100% 99%, 0% 100%, 7% 50%, 0% 0%); */
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: 0.8rem 3rem;
    font-size: 1.7rem;
    border-radius: 0.5rem;
    /* border: 0.2rem solid var(--black); */
    color: var(--black);
    cursor: pointer;
    background: none;
}
.btn:hover{
    background: var(--orange);
    color: #fff;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.6s;
    padding: 20px 100px;
    background: #f5efd7;
    
}
header.sticky {
    /* padding: 5px 100px; */
    background: #f5efd7;
}

.header .logo {
    font-size: 2.5rem;
    font-weight: bolder;
    color: var(--black);
}

.logo img {
  width: 150px; /* Adjust the size as needed */
  height: auto; /* Maintain aspect ratio */
  border-radius: 29px;
}

.header .navbar a {
    font-size: 1.7rem;
    margin: 0 1rem;
    color: var(--black);
}

.header .navbar a:hover {
    color: var(--orange);
}

.header .icon div{
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    border-radius: 0.5rem;
    /* background: #eee; */
    color: var(--black);
    font-size: 2rem;
    margin-left: 0.3rem;
    cursor: pointer;
    text-align: center;
}

.header .icon div:hover{
    background: var(--orange);
    color: #fff;
}

#menu-btn{
display: none;
}

.header .search-form{
position: absolute;
top: 110%; right: -110%;
width: 35rem;
height: 5rem;
background: #fff;
border-radius: 0.5rem;
overflow: hidden;
display: flex;
align-items: center;
box-shadow: var(--box-shadow);
}

.form-control{
    background-color: #cdcdcd;
}
.header .search-form.active{

    right: 2rem;
    transition: 0.4s linear;
}

.header .search-form input{
    height: 100%;
    width: 100%;
    background: none;
    text-transform: none;
    font-size: 1.6rem;
    color: var(--black);
    padding: 0 1.5rem;
}

.header .search-form label{
    font-size: 2.2rem;
    padding-right: 1.5rem;
    color: var(--black);
    cursor: pointer;
}

.header .search-form label:hover{
    color: var(--orange);
}


.header .shopping-cart{

    position: absolute;
    top: 110%; right: -110%;
    padding: 1rem;
    border-radius:0.5rem;
    box-shadow: var(--box-shadow);
    width: 35rem;
    background: #fff;

}
.header .shopping-cart.active{
    right: 2rem;
    transition: 0.4s linear;
}

.header .shopping-cart .box{
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    margin: 1rem 0;
}

.header .shopping-cart .box img{
    height: 10rem;
}

.header .shopping-cart .box .fa-trash{
    font-size: 2rem;
    position: absolute;
    top: 50%; right: 0rem;
    cursor: pointer;
    color: var(--light-color);
    transform: translateY(-50%);
}

.header .shopping-cart .box .fa-trash:hover{
    color: var(--orange);
}

.header .shopping-cart .box .content h3{

    color: var(--black);
    font-size: 1.5rem;
    padding-bottom: 1rem; ;
}

.header .shopping-cart .box .content span{
    color: var(--light-color);
    font-size: 1.4rem;
}

.header .shopping-cart .box .content .quantity{
    padding-left: 1rem;
}

.header .shopping-cart .total{
    font-size: 2.5rem;
    padding: 1rem 0;
    text-align: center;
    color: var(--black);
}

.header .shopping-cart .btn{
    display: block;
    text-align: center;
    margin: 1rem;
}

.header .login-form{
    position: absolute;
    top: 110%; right: -110%;
    width: 30rem;
    box-shadow: var(--box-shadow);
    padding: 2rem;
    border-radius: 0.5rem;
    background: #fff;
    text-align: center;
}
.header .login-form.active{

    right: 2rem;
    transition: 0.4s linear;
}


.header .login-form h3{
    font-size: 2.5rem;
    text-transform: uppercase;
    color: var(--black);
}

.header .login-form .box{
    margin: .7rem;
    background: #eee;
    border-radius: .5rem;
    padding: 1rem;
    font-size: 1.7rem;
    color: var(--black);
    text-transform: none;
}

.header .login-form p{
    font-size: 1.4rem;
    padding: .5rem;
    color: var(--light-color);
}

.header .login-form p a{
    
    color: var(--orange);
    text-decoration: underline;
}
 

  input{
    font-size: 14px;
  }
  
  .table td{
    font-size: 14px !important;
  }
  a{
    font-size: 14px;
  }
  .form-control{
    font-size: 1.5rem !important;
  }
  label{
    font-size: 14px;
  }
  p{
    font-size: 14px;
  }
  .h6{
    font-size: 14px;
  }
/* media */

@media(max-width:991px) {
    html{
        font-size: 55%;
    }

    .header{
        padding: 2rem;
        height: 130px;
    }

    section{
        padding: 2rem ;
    }
    .heading span{
        /* background: var(--orange); */
        /* color: #fff; */
        display: inline-block;
        margin-right: 3%;
        /* padding: .1rem 3rem; */
        /* font-weight: 300; */
        /* clip-path: polygon(100% 0, 93% 50%, 100% 99%, 0% 100%, 7% 50%, 0% 0%); */
    }
    .custom-tabs .nav-link.active {
        background-color: #2c6c97;
        color: #cdcdcd;
        border-radius: 5px;
    }
    .table td{
        font-size: 11px !important;
      }
      a{
        font-size: 11px;
      }
      .form-control{
        font-size: 1rem !important;
      }
      label{
        font-size: 11px;
      }
      p{
        font-size: 11px;
      }
      input{
        font-size: 11px;
      }
    
}



@media(max-width:768px){

    .logo img {
        width: 130px; /* Adjust the size as needed */
        height: auto; /* Maintain aspect ratio */
        border-radius: 29px;
      }
    #menu-btn{
        display: inline-block;
    }
    .header .search-form{
        width: 90%;
    }
    .header .navbar{
        position: absolute;
        top: 110%; right: -110%;
        width: 30rem;
        box-shadow: var(--box-shadow);
        background: #fff;
    }
    .header .navbar a{
        font-size: 2rem;
        margin: 2rem 2.5rem;
        display: block;
    }

    .header .navbar.active{
        right: 2rem;
        transition: 0.4s linear;
        background: #f5efd7;
    }

  
}

@media(max-width:450px){
    html{
        font-size: 50%;
    }
    .heading{
        font-size: 2.5rem;
        font-family: 'Raleway', 'Noto Sans KR', 'Nanum Gothic', sans-serif;
    }
   
}

/* Make the carousel section full screen */
.home {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding: 0;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    background-position: center;
    background-size: cover;
}

/* Ensure the parent container has a relative position */
.parent-container {
    position: relative; 
    width: 100%;         /* Adjust as needed */
    height: 570px;       /* Example height */
}

.content {
    position: absolute;  /* Makes it movable within the parent */
    top: 20px;           /* Adjust the top distance */
    /* left: 20px;          Adjust the left distance */
    color: white;        /* Make the text visible */
    padding: 10px; 
    width: 100%; 
    background-color: #00000000;      /* Add padding */
}

.content h3 {
    font-size: 3rem;     /* Adjust the text size */
    margin: 0;           /* Remove unwanted margins */
}



.content h3 span {
    color: #4ba7c2;
}

.content p {
    font-size: 2rem;
    padding: 1rem 0;
    align-items: center;
    line-height: 1.8;
    text-align: center;
}

.category-image {
    width: 100%;
    height: auto;
    max-height: 60vh; /* Adjust to control image height */
    object-fit: cover;
    margin: 20px 0;
}


.section__container{
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
    
}
.about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    overflow: hidden;
    display: grid;
    gap: 2rem;
    margin-top: 20vh;
  }
  
  .about__text p {
    font-size: 5rem;
    font-weight: 250;
    margin: auto;
    border-radius: 5px;
  }
  .about_content h6 {
    font-size: 2rem;
    font-weight: 250;
    margin: auto;
    border-radius: 5px;
  }
  @media (max-width: 768px) {
    .about__container {
      grid-template-columns: repeat(2, 1fr);
      align-items: center;
      margin-top: 6vh;
    }
    .about__text p {
        font-size: 3.5rem;
        margin: auto;
        border-radius: 5px;
      }

      .about_content h6 {
        font-size: 1.5rem;
        font-weight: 250;
        margin: auto;
        border-radius: 5px;
      }
      .home{
    
    height: auto;
}

.parent-container {
    position: relative; 
    width: 100%;         /* Adjust as needed */
    height: 570px;       /* Example height */
}

.content {
    position: absolute;  /* Makes it movable within the parent */
    top: 16%;           /* Adjust the top distance */
    /* left: 20px;          Adjust the left distance */
    color: white;        /* Make the text visible */
    padding: 10px; 
    width: 100%; 
    background-color: #0000002a;      /* Add padding */
}

.content h3 {
    font-size: 3rem;     /* Adjust the text size */
    margin: 0;           /* Remove unwanted margins */
}


  }

  .card-image {
    position: relative;
    height: auto; /* Adjusts the height based on the image */
    width: 100%;  /* Makes the image container full width */
    background: none; /* Removes any background color */
    padding: 0; /* Removes padding */
    border-radius: 0; /* Ensures the image stays rectangular */
}

.card-image .card-img {
    height: auto; /* Keeps the aspect ratio of the image */
    width: 100%; /* Stretches the image to fit the container width */
    object-fit: contain; /* Ensures the entire image is visible without cropping */
    border: none; /* Removes any border around the image */
    border-radius: 0; /* Ensures no rounded corners */
}

  .card{
    /* width: 320px; */
    border-radius: 25px;
    background: #fff;
  }

  .slide-container{
    max-width: 1120px;
    width: 100%;
    /* background-color: #fff; */
    padding: 20px 0;
  }

  .slide-content{
    margin: 0 40px;
  }
  .card{
    border-radius: 25px;
    background-color: #f5efd7;
  }

  .image-content, .card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
  }

  .name{
    font-size: 18px;
    font-weight: 500;
    color: #333;
  }
  .description{
    font-size: 14px;
    text-align: center;
    color: #707070;
  }

  .image-content{
    row-gap: 5px;
    position: relative;
  }


  .swiper-navBtn{
    color: #cdcdcd;
    transition: color 0.3s ease;
  }

  .swiper-navBtn:hover{
    color: #cdcdcd;
  }

  .swiper-navBtn::before,
  .swiper-navBtn::after{
    font-size: 40px;
  }


  .swiper-button-next{
    right: 0;
  }

  .swiper-button-prev{
    left: 0;
  }

  .swiper-pagination-bullet{
    background-color: #6e93f7;
    opacity: 1;
  }

  .swiper-pagination-bullet-active{
    background-color: #4070f4;
  }

  @media screen and (max-width: 780px) {
    .slide-content{
        margin: 0 10px;;
    }
    
  }

  
  .about_video_content p{
    font-size: 3rem;
    font-weight: 250;
    margin: auto;
    border-radius: 5px;
  }

  .about_video_content h6{
    font-size: 2rem;
    font-weight: 250;
    margin: auto;
    border-radius: 5px;
  }
  .about__video img {
    width: 700px;
    height: 300px;
    margin: auto;
    border-radius: 5px;
  }

  .about__container_video{
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    overflow: hidden;
    display: grid;
    gap: 5rem;
    margin-top: 20vh;
    background: rgba(255, 255, 255, 0.5);
    margin: 0px 100px 50px 100px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);    
  }
  .video_bg{
    background: white url('../images/images/video_bg.jpg') no-repeat center center; /* Combine properties */
    background-size: cover; /* Make sure the image covers the section */
  }
  @media (max-width: 768px) {
    .about__container_video{
        grid-template-columns: none;
        align-items: center;
        overflow: hidden;
        display: grid;
        gap: 5rem;
        margin-top: 20vh;
        background: white;
        margin: 0;
        box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);    
      }
    .about__container_video {
      align-items: center;
      margin-top: 6vh;
    }
    
    .about_video_content p {
        font-size: 1.1rem;
        margin: auto;
        font-weight: bold;
        border-radius: 5px;
        text-align: center;
      }
      .about__video img {
        width: 250px;
        height: 150px;
        margin: auto;
        
        border-radius: 5px;
      }
      .about__video {
        align-items: center;
        margin: auto;
        
        border-radius: 5px;
      }
      .about_video_content h6 {
        font-size: 1.5rem;
        font-weight: 250;
        margin: auto;
        border-radius: 5px;
      }
      .home{
    
    height: auto;
}
.about__container_video .btn{
    margin-top: 1rem;
    display: grid;
    padding: 0.8rem 3rem;
    font-size: 1.7rem;
    border-radius: 0.5rem;
    border: 0.2rem solid var(--black);
    color: var(--black);
    cursor: pointer;
    background: none;
}
.about__container_video a{
    align-items: center;
    text-align: center;
}
  }

  /* .overlay{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #4070f4;
  } */



  /* Reviews Section */
.reviews-section {
    display: flex;
    justify-content: space-between;
    background-color: white;
    padding: 30vh; /* Adjusted padding */
     /* Set height to 30vh */
}

.reviews-text {
    width: 30%;
}

.reviews-text h1 {
    font-size: 2rem; /* Adjusted font size for better mobile display */
    margin-bottom: 10px;
}

.reviews-text .btn {
    background-color: black;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 30px;
}

/* Product Carousel */
.product-carousel-wrapper {
    width: 70%;
    overflow-x: auto; /* Enable horizontal scrolling */
    white-space: nowrap; /* Prevent line breaks */
}

.product-carousel {
    display: inline-block;
    padding-bottom: 10px;
}

/* Mobile Styles */
.product-card {
    display: inline-block; /* Display each product card horizontally */
    width: 100%; /* 1 product on mobile */
    text-align: center;
    margin-right: 0; /* Reset margin on mobile */
}

/* Tablet Styles */
@media (max-width: 600px) {
    .product-card {
        width: calc(50% - 10px); /* 2 products on tablet */
        margin-right: 10px; /* Add margin between products */
    }

    .reviews-section {
        display: flex;
        flex-direction: column; /* Stack text and product carousel vertically */
        background-color: white;
        padding: 5vh; /* Adjusted padding */
        height: auto; /* Allow height to adjust based on content */
    }

    .reviews-text {
        width: 100%; /* Full width for text section */
        text-align: center; /* Align text to left */
    }

    .reviews-text h1 {
        font-size: 2rem; /* Adjusted font size for better mobile display */
        margin-bottom: 10px;
    }

    /* Product Carousel */
    .product-carousel-wrapper {
        width: 100%; /* Full width for product carousel */
        display: flex;
        flex-direction: column; /* Arrange items vertically */
        align-items: center; /* Center align items */
    }

    .btn {
        background-color: black;
        color: white;
        padding: 10px 20px;
        text-decoration: none;
        /* display: block; Change display to block to make it full width */
        margin: 10px 0; /* Add margin around the button */
        text-align: center; /* Center text in the button */
    }

    .product-carousel {
        display: flex;
        flex-direction: column; /* Stack products vertically */
        padding-bottom: 10px;
        width: 100%; /* Full width for product carousel */
        max-height: 300px; /* Set a fixed height for the carousel */
        overflow-y: auto; /* Enable vertical scrolling */
        border: 1px solid #ddd; /* Optional: Add border for better visibility */
    }

    .product-card {
        display: flex; /* Center content inside the card */
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center align items */
        width: 97%; /* 1 product on mobile */
        margin-bottom: 20px; /* Space between products */
        margin-top: -2.5vh;
    }

    .product-card img {
        width: 100%;
        height: auto;
        max-height: 250px; /* Increased max height for larger images */
        object-fit: cover; /* Maintain aspect ratio */
    }

    .product-name {
        font-size: 14px; /* Adjusted font size for better visibility */
        margin-top: 10px;
        text-align: center; /* Center text */
    }

    .brand-name {
        font-size: 12px;
        color: grey;
        margin-top: 5px;
        text-align: center; /* Center text */
    }

    /* Scrollbar customization (optional) */
    .product-carousel-wrapper::-webkit-scrollbar {
        width: 10px; /* Scrollbar width */
    }

    .product-carousel-wrapper::-webkit-scrollbar-thumb {
        background-color: #888; /* Scrollbar color */
        border-radius: 10px;
    }

    .product-carousel-wrapper::-webkit-scrollbar-thumb:hover {
        background-color: #f5efd7; /* Hover effect */
    }


}

/* Desktop Styles */
@media (min-width: 900px) {
    .product-card {
        width: calc(24% - 10px); /* 4 products on larger screens */
        margin-right: 10px; /* Add margin between products */
    }
}

.product-card img {
    width: 100%;
    height: auto;
}

.product-name {
    font-size: 12px; /* Adjusted font size for better visibility */
    margin-top: 10px;
}

.brand-name {
    font-size: 12px;
    color: grey;
    margin-top: 5px;
}

/* Scrollbar customization (optional) */
.product-carousel-wrapper::-webkit-scrollbar {
    height: 10px;
}

.product-carousel-wrapper::-webkit-scrollbar-thumb {
    background-color: #888; /* Scrollbar color */
    border-radius: 10px;
}

.product-carousel-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: #f5efd7;
}

/* General Footer Styles */
footer {
  background-color: #f5efd7;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  color: #333;
  text-align: left;
  position: relative;
}

/* Social Media Section */
.social-media {
  
  margin-bottom: 20px;
}

.social-media p {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 5px 0;
}

.social-media a {
  font-size: 18px;
  color: #333;
  text-decoration: none;
}

/* Line Divider */
.divider {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
  margin: 20px 0;
}

/* Footer Links */
.footer-links {
  padding: 0% 10%;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  padding: 0 5px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.top-button {
  float: right;
  font-size: 12px;
  padding: 5px 15px;
  border: 1px solid #666;
  background-color: #f9f9f9;
  color: #333;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.top-button:hover {
  background-color: #333;
  color: #fff;
}

/* Company Information */
.company-info p {
  padding: 0% 10%;
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  margin: 3px 0;
}

/* Logo Styling */
.footer-logo {
  padding-right:10%;
  position: absolute;
  right: 20px;
  bottom: 20px;
  height: 40px; /* Adjust the size as needed */
}

.product-grid {
display: flex;
flex-wrap: wrap; /* Allow wrapping to the next line */
justify-content: center; /* Center the grid */
gap: 20px; /* Space between the cards */
margin-bottom: 20px;
}

.product-card {
width: calc(25% - 20px); /* Four cards per row, adjust for gaps */
text-align: center;
position: relative;
box-sizing: border-box; /* Ensure padding and borders are included in the width */
}

.product-card img {
width: 85%;
border-radius: 10px;
}

.product-card .product-info {
margin-top: 10px;
}

.product-card .product-info h3 {
font-size: 14px;
font-weight: normal;
color: #333;
}

.product-card .product-info p {
font-size: 12px;
color: #666;
margin: 5px 0;
}

.product-card .product-info .price {
font-size: 14px;
color: #2d6d98;
font-weight: bold;
}

/* Action icons */
.product-card .icons {
position: absolute;
bottom: 15px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 10px;
opacity: 0; /* Start hidden */
transition: opacity 0.3s ease; /* Smooth transition */
}

.product-card:hover .icons {
opacity: 1; /* Show on hover */
}

.product-card .icons i {
font-size: 14px;
color: #fff;
background-color: #333;
border-radius: 50%;
padding: 10px;
cursor: pointer;
transition: background-color 0.3s, color 0.3s; /* Smooth color change */
}

/* Change icon color to grey on hover */
.product-card .icons i:hover {
background-color: #666; /* Grey background */
color: #fff; /* Keep icon color white */
}

/* Pagination styles */
.pagination {
display: flex;
justify-content: center;
align-items: center;
margin: 20px 0;
}

.pagination a {
text-decoration: none;
color: #333;
margin: 0 5px;
padding: 10px 15px;
border-radius: 5px;
transition: background-color 0.3s;
background: #48a5c3;
}

.pagination a:hover {
background-color:#296c98;
color: #fff;
}

li .page-item .disabled{
    background:#48a5c3 ;
}
.pagination .active {
background-color:#cdcdcd;
color: #fff;
}

 .filter-section {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 10px;
     border: 1px solid #aaaaaa5a;
     font-size: 12px; /* Make font smaller */
     margin-top: 20px;
     background-color: #f5efd7;
 }

 .filter-links {
     display: flex;
     gap: 15px;
 }
section{
    background-color: #f5efd7;
}
 .filter-links a {
     color: #333;
     text-decoration: none;
     transition: color 0.3s ease;
     position: relative;
 }

 .filter-links a:hover {
     color: #cdcdcd;
 }

 .filter-links a + a::before {
     content: "|";
     margin-right: 10px;
     color: #999;
 }

 /* Filters Text */
 .filters {
     font-weight: bold;
     color: #333;
 }
 /* card_filter Styling */
 .card_filter {
     display: inline-block;
     border: 1px solid #dfdfdf;
     margin: 0 10px 20px;
     width: 20%;
     /* max-width: 126px; */
     padding: 13px 30px;
     font-size: 13px;
     line-height: 14px;
     vertical-align: top;
     text-align: center;
     background-color: #f5efd7;
     transition: all 0.3s ease;
 }

 .card_filter:hover {
     border-color: #333;
 }

 .menuCategory {
     padding: 0;
     text-align: center;
 }

 .menuCategory li {
     list-style: none;
 }

 .menuCategory a {
     text-decoration: none;
     color: #333;
 }
 
 .title {
     text-align: center;
     font-size: 24px;
     margin-bottom: 20px;
     font-weight: bold;
 }
 @media(max-width:600px){
     .product-grid {
 display: flex;
 flex-wrap: wrap; /* Allow wrapping to the next line */
 justify-content: center; /* Center the grid */
 gap: 20px; /* Space between the cards */
 margin-bottom: 20px;
}

.product-card {
    margin-top: 5%;
 width: calc(100% - 20px); /* 100% width for mobile */
 text-align: center;
 position: relative;
 box-sizing: border-box; /* Ensure padding and borders are included in the width */
 margin-bottom: 20px; /* Add some margin for spacing */
}

.product-card img {
 width: 100%;
 border-radius: 10px;
}

.product-card .product-info {
 margin-top: 10px;
}

.product-card .product-info h3 {
 font-size: 14px;
 font-weight: normal;
 color: #333;
}

.product-card .product-info p {
 font-size: 12px;
 color: #666;
 margin: 5px 0;
}

.product-card .product-info .price {
 font-size: 14px;
 color: #2d6d98;
 font-weight: bold;
}

/* Action icons */
.product-card .icons {
 position: absolute;
 bottom: 15px;
 left: 50%;
 transform: translateX(-50%);
 display: flex;
 gap: 10px;
 opacity: 0; /* Start hidden */
 transition: opacity 0.3s ease; /* Smooth transition */
}

.product-card:hover .icons {
 opacity: 1; /* Show on hover */
}

.product-card .icons i {
 font-size: 14px;
 color: #fff;
 background-color: #333;
 border-radius: 50%;
 padding: 10px;
 cursor: pointer;
 transition: background-color 0.3s, color 0.3s; /* Smooth color change */
}

/* Change icon color to grey on hover */
.product-card .icons i:hover {
 background-color: #666; /* Grey background */
 color: #fff; /* Keep icon color white */
}

/* Pagination styles */
.pagination {
 display: flex;
 justify-content: center;
 align-items: center;
 margin: 20px 0;
}

.pagination a {
 text-decoration: none;
 color: #333;
 margin: 0 5px;
 padding: 10px 15px;
 border-radius: 5px;
 transition: background-color 0.3s;
}

.pagination a:hover {
 background-color: #cdcdcd;
 color: #fff;
}

.pagination .active {
 background-color: #cdcdcd;
 color: #fff;
}

.filter-section {
    margin-bottom: 5%;
    flex-direction: column; /* Stack filter section vertically on mobile */
    /* align-items: flex-start; Align items to the left */
}
.offers-filter {
    display: block; /* Stack filters vertically on smaller screens */
    margin-right: 0; /* Remove the margin between filters */
    margin-bottom: 10px; /* Add space between stacked filters */
}

.form-select {
    width: 100%; /* Make select elements take full width on smaller screens */
}
.filter-links {
    flex-direction: column; /* Stack links vertically on mobile */
    gap: 10px;
    width: 100%; /* Take full width */
}

.filter-links a {
    font-size: 14px; /* Adjust font size for better readability on mobile */
}

/* Adjust card_filter for mobile */
.card_filter {
    width: 100%; /* Make filter card take full width */
    margin: 10px 0; /* Adjust margins */
    padding: 10px; /* Adjust padding for mobile */
}

.filters {
    font-size: 16px; /* Make filter title bigger on mobile */
}

.card_filter:hover {
 border-color: #333;
}

.menuCategory {
 padding: 0;
 text-align: center;
}

.menuCategory li {
 list-style: none;
}

.menuCategory a {
 text-decoration: none;
 color: #333;
}

.title {
 text-align: center;
 font-size: 24px;
 margin-bottom: 20px;
 font-weight: bold;
}
.card_filter {
     width: 100%; /* Full width for category cards */
 }
 .menuCategory li {
 list-style: none;
 width: 60%;
 display: inline-block;
 /* align-items: center; */
}
 }



/* Popup Styling */
.popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    z-index: 1000;
    transition: bottom 0.3s ease-in-out;
    padding: 15px;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.popup-content {
    font-size: 14px;
    color: #333;
}

.close-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 14px;
    cursor: pointer;
}

/* Show Popup */
.popup.show {
    bottom: 0;
}
