/*
Theme Name:   Hello Elementor Child Theme
Template:     hello-elementor
*/
:root {
  --cardw:22%;
}
  .hero-section {
      background-color: #FCF8F4;
      padding: 20px 0;
    }
    .hero_heading {
      font-size: 55px;
    }
  .breadcrumb-nav {
      font-size: 14px;
      margin: 20px 0;
    }
  .breadcrumb-items {
    display: flex;
    flex-flow: row wrap;

  }

  .breadcrumb-items .breadcrumb-item {
    display: inline-flex;
    list-style: none;
    text-decoration: none;
    color: #444444;
  }

  .breadcrumb-items .breadcrumb-item:not(:last-of-type)::after {
    content: '»';
    margin: 0 6px;
    color: #000;
    font-weight: 600;
  }

  .breadcrumb-items .breadcrumb-item.active {
    color: #000;
    font-weight: 600;
    pointer-events: none;
  }
  .breadcrumb-item+.breadcrumb-item::before{
    content: none;
  }
   body {
      font-family: 'Segoe UI', sans-serif;
    }

    

    .breadcrumb-nav {
      font-size: 14px;
      margin: 20px 0;
    }

    .tabswrap .nav-link{
      background-color: #BAD0C9;
      color: #000;
      font-size: 14px;
      transition: background 0.3s;
      font-weight: 500;
    }

     .tabswrap .nav-link.active, .tabswrap .nav-link:hover {
      background-color: #71877b;
      color: #fff;
     }
     .filter-button {
      border: 1px solid #b8c9c0;
      border-radius: 5px;
      padding: 8px 16px;
      background-color: transparent;
      color: #000;
     font-weight: 500;
      font-size: 14px;
      display: flex;
      align-items: center;
      transition: all 0.2s ease-in-out;
    }

    .filter-button:hover, .filter-button:focus {
      background-color: #f0f4f2 !important;
      border-color: #a0b7aa !important;
      color: #000 !important; 
    }

    .filter-icon {
      width: 16px;
      height: 16px;
      margin-left: 12px;
    }
    .product-card {
      border: 1px solid #EAD9CA;
      padding: 14px;
      position: relative;
      background: #fff;
      transition: box-shadow 0.2s ease;
      height: 100%;
    }
    .right_content {
      display: none;
      padding: 30px;
    }

    .product-card.active {
      display: flex;
      border: 4px solid #F4A28C;
    }
    .product-card.active .product_cardinner {
      padding-right: 15px; 
      border-right: 1px solid #EAD9CA;
    }
    .product-card.active .right_content {
      display: block;
    }
    .right_content h4 {
      font-size: 20px;
      font-weight: 600;
      line-height: 1.4em;
    }
  .product-card.active .product_cardinner {
      width: 50%;
    }
   .product-card.active .right_content {
      width: calc(100% - 50%);
    }
    .product-card:hover {
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .product-image {
      background-color: #fef7f3;
      padding: 20px;
      text-align: center;
      height: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .product-image img {
      object-fit: contain;
    }

    .rating-badge {
      position: absolute;
      top: 10px;
      right: 20px;
      padding: 4px;
      text-align: center;
      line-height: 1.2;
      
    }
    .rating-badgeinner{
      background: #000;
      border: 1px solid #000;
      border-radius: 4px;
      font-weight: 500;
    }
    .product-title {
      font-size: 18px;
      font-weight: 600;
      margin: 12px 0 2px;
      border-bottom: 1px solid #EAD9CA;
      padding-bottom: 10px;
      line-height: 1.3em;
    } 

    .product-price {
      font-size: 15px;
      font-weight: 500;
      /*margin-bottom: 4px;*/
    }

    .star-ratingsa  {
      color: #F4BEB0 !important;
      font-size: 16px;
    }
    .badge_heading {
      font-size: 12px;
      font-weight: 700;
    }
    .first_numberbadge {
      font-size: 12px;
      border-radius: 3px 3px 0 0;
      font-weight: 700;
    }
    .second_numbadege {
      font-size: 12px;
    }
    .productprice {
      font-size: 20px;
      font-weight: 500;
    }
    .image_wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .toggle-group {
      display: inline-flex;
      border: 1px solid #ccc;
      border-radius: 6px;
      overflow: hidden;
    }

    .toggle-btn {
      padding: 6px 16px;
      font-weight: 500;
      border: none;
      background-color: #fff;
      color: #000;
      cursor: pointer;
      transition: all 0.2s ease;
      font-size: 16px;
    }

    .toggle-btn.active, .toggle-btn:hover, .toggle-btn:focus {
      background-color: #f29b87; /* light orange */
      color: #000;
    }
   
    .hero_text{
      color: #464646;
    }
    .single_page_first, .single_page_second, .single_page_third{
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 4 items in a row */
  gap: 60px; /* space between items */
}
.gridProduct {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 items in a row */
  gap: 40px; /* space between items */
}

.gridProductItem {
  
}
.tabs_grids {
  display: flex;
  gap: 40px;
align-items: start;
}
.tabs_grids .tabs_grids_innerfirst {
  flex:1 0 calc(77.4% - 80px - var(--cardw));
}
.tabs_grids .tabs_grids_inner {
  flex:1 0 var(--cardw);
}
/* Tablet: 2 per row */
@media (min-width: 993px) and (max-width: 1199px) {
  .gridProduct {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1399px) {
    .product-card.active {
      flex-direction: column;
    }
    .product-card.active .product_cardinner {
      width: 100%;
      padding-right: 0;
      border-right: 0;
      border-bottom: 1px solid #EAD9CA;
    padding-bottom: 10px;
    }
   .product-card.active .right_content {
      width: 100%;
    }
    .right_content {
      padding: 0;
    }
}
@media (max-width: 992px) {
  .gridProduct {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .tabs_grids {
    flex-wrap: wrap;
  }
  .tabs_grids .tabs_grids_innerfirst {
  flex:1 0 100%;
}
  .tabs_grids .tabs_grids_inner {
  flex:1 0 45%;
}
 
}

/* Mobile: 1 per row */
@media (max-width: 576px) {
  .gridProduct {
    grid-template-columns: 1fr;

  }
  .tabs_grids .tabs_grids_inner {
  flex:1 0 95%;
}
}
@media (max-width: 769px){
  .single_page_first, .single_page_second, .single_page_third{ 
    grid-template-columns: 1fr;
    gap: 20px;
  }
 
    
}
