.heading h2{
    display: none;
}
page-heading{
 font-weight:700;   
}
.theme-product-box-content{
 background-color: #d0f9fd !important;   
}

.theme-cta-area{
     background-color: #d0f9fd !important; 
}

.slider{
 margin: 	50px 50px;   
}

    

.Heading button{
 background-color: white;   
}

/* Ensures all cards stay in a row and heights remain equal */
.categories-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  overflow-x: auto;  /* Allows mobile horizontal scroll if needed */
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.category-card {
  flex: 0 0 240px;           /* Width of each card */
  min-height: 320px;         /* Height same for all cards */
  background: #d0f9fd;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s;
}

@media (min-width: 980px){
    
 .container-box{
     width:200px;
     height: 250px;
     
    }
.container{
    width: 100%;
    overflow: hidden;		
    height: 100%;	
}
}

/* Responsive Fix: Adjust card width for tablet */
@media (max-width: 1024px) {
  .categories-row {
    gap: 16px;
  }
  .category-card {
    flex: 0 0 200px;
    min-height: 270px;
  }
}

/* Responsive Fix: Mobile, allow horizontal scroll */
@media (max-width: 700px) {
 .theme-mobile-header-slide-header{
    background-color: #ecfeff !important;
    }
    .theme-menu{
        background-color: white !important;
    }
    .theme-mobile-header-slide	{
          background-color: white !important;
    }
    .theme-mobile-header-slide-content{
       background-color: white !important;
    }
  .categories-row {
    flex-wrap: nowrap;
    gap: 12px;
    padding-bottom: 10px;
  }
  .category-card {
    flex: 0 0 80vw;
    min-width: 200px;
    min-height: 220px;
    max-width: 270px;
    margin-right: 0;
  }
    .theme-product-box-content {
        padding: 10px 10px !important;
}

/* Optional: Make sure text does NOT wrap vertically */
.category-card span, .category-card p, .category-card h3 {
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}
    
    
}


