/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.4.1753252052
Updated: 2025-07-23 11:57:32

*/
/*Category shortcode design*/
.category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap:30px;
    align-items:center;
      align-items: stretch; /* This makes all grid items the same height */

    
}
@media only screen and (max-width: 1200px) {
 .category-grid{
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
}
    @media only screen and (max-width: 1000px) {
 .category-grid{
    grid-template-columns: 1fr 1fr 1fr;
}
}
@media only screen and (max-width: 768px) {
.category-grid {
    grid-template-columns: 1fr;
}
}
.category-grid .category-card {
    display:flex;
    flex-direction: column;
    justify-content:center !important;
    align-items:center !important;
    background-color: #1B75BB;
    border-style: solid;
    border-width: 3px 3px 3px 3px;
    border-color: var(--e-global-color-secondary);
    border-radius: 15px 15px 15px 15px !important;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
    padding-top: 2em;
    padding-bottom: 2em;
    padding-left: 2em;
    padding-right: 2em;
}

.category-grid .category-image {
    text-align: center;
}

.category-grid h3.category-title {
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    /* margin-bottom:0; */
}

a.category-button {
    background-color: #03ADB1;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px 10px 20px;
    border-radius: 50px;
    margin-top: 0;
}

a.category-button:hover {
    color: #fff;
}

/*style for product detail page categories*/
.custom-button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.custom-button {
  background-color: #1B75BB; /* blue color */
  color: white;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 12px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-button:hover {
  background-color: #03ADB1;
  color:#fff !important;
  
}

/*category page product card css*/
.custom-card-product {
  display: flex;
  flex-direction: row;
  background-color: #1B75BB;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 10px 0px;
  border: 5px solid #fff; /* Fallback if variable isn't set */
  border-radius: 12px;
  overflow: hidden;
  max-width: 700px;
  color: white;
}

.custom-card-product .card-image img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  display: block;
}

.custom-card-product .card-image{
  max-width: 200px !important;
}
.custom-card-product .card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.custom-card-product .card-content h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 10px;
  line-height: 1.4;
  color: #fff;
}

.custom-card-product .card-button {
  font-size: 14px;
  color: white;
  text-decoration: none;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.custom-card-product .card-button:hover {
  opacity: 0.8;
}
