@media (min-width: 1024px) {

  body {
    margin: 0;
    padding: 0;
  }
  .header {
    margin-bottom: 0 !important;
  }
  .product-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
  }
  
  .product-section {
    padding: 40px 60px;
    background: #f8f9fb;
    margin-top: 0;
    
  }
  .category-card h4 {
    color: #1E8D92;    
    font-weight: 600;
    font-size: 23px;
  }

  .category-card ul li {
    color: #555;  
    font-weight: 400;
    font-size: 16px;  
  }

  .category-left {
    padding-right: 20px;
    flex: 0 0 22%;  
    max-width: 22%;
  }
  .product-right {
    flex: 0 0 78%;
    max-width: 78%;
  }

  .category-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    overflow-y: auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: auto;
    border: 1px solid #e0e0e0;

  }

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

  .category-card ul li {
    padding: 6px 8px;  
    margin-bottom: 4px; 
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
  }

  .category-card ul li:hover {
 

    background: none;         
    color: #888;                
    text-decoration: underline;  
    transform: none;  
  }

  .category-dropdown {
    display: none;
  }

  .product-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    border: 1px solid #1E8D92;
  }
  .product-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #222;   
    margin-top: 12px;
    margin-bottom: 6px;
    text-align: start;
  }
  .product-card p {
    font-size: 14px;
    color: #777;   
    margin-bottom: 10px;
    line-height: 1.4;
    text-align: start;
    padding: 5px 0 5px 0;
  }

  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  .product-card img {
    width: 100%;
    height: 220px; 
    object-fit: cover;
    border-radius: 10px;
  }

  .product-card button {
    margin-top: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    background: #1E8D92;
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
  }
  .product-card button:hover {
    background: #4fb3b8; 
  }
  .product-right .row {
    display: flex;
    flex-wrap: wrap;
  }
  
  .product-right .row > div {
    display: flex;
  }
  
  .product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .product-card button {
    margin-top: auto;
  }
  .mobile-category-banner {
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    background-color:rgb(217, 236, 237);
    margin-bottom: 0;
  }
  .mobile-category-banner h1{
    font-size: 30px;
    font-weight: 600;
  }
}

@media only screen and (max-width: 768px) {
  
  .product-section {
    padding: 10px;
    background: #f8f9fb;
    margin-top: 0;
  }
  .mobile-category-banner {
    display: flex;
    height: 70px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    background-color:rgb(217, 236, 237);
    margin-bottom: 0;
  }
  .mobile-category-banner h1{
    font-size: 18px;
    font-weight: 600;
  }
  .category-card h4,
  .category-card ul {
    display: none;
  }
  .product-right .row {
    display: flex;
    flex-wrap: wrap;
  }
  
  .product-right .row > div {
    display: flex;
  }
  
  .product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .product-card button {
    margin-top: auto;
  }

  .category-dropdown {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 10px;     
    border: 1px solid #1E8D92;
    background: #fff;
    appearance: none;              
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    margin-top: 20px;
  }
  .category-dropdown:focus {
    border-color: #1E8D92;
    box-shadow: none;
    outline: none;
  }

  .product-card {
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: center;
    border: 1px solid #1E8D92;
  }
  .product-card h5 {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-top: 8px;
    margin-bottom: 4px;
    text-align: start;
  }
  .product-card p {
    font-size: 12px;
    color: #777;
    margin-bottom: 8px;
    text-align: start;
    padding: 5px 0 5px 0;
  }
  .product-card button {
    padding: 6px 14px;
    border-radius: 20px;
    background: #1E8D92;
    color: #fff;
    border: none;
    font-size: 12px;
  }
 
  .product-card button:active {
    background: #146b6f;
  }
  .product-card button:hover {
    background: #4fb3b8;
  }

  .product-card img {
    height: 130px;
  }

}