/* Parent Container Wrapper */
.Product_info_tabs {
  margin: 5% 0%;
}

/* Tabs Navigation Bar */
.Product_info_tabs .tabs_nav_container {
  border-bottom: 1px solid #2d2d2d;
  margin-bottom: 30px;
}

.Product_info_tabs .tabs_navigation {
  display: flex;
  gap: 10px;
  flex-flow: nowrap;
  text-wrap-mode: nowrap;
  overflow: hidden;
  overflow-x: auto;
  scrollbar-width: none;
}

.Product_info_tabs .tab_button {
  background: none;
  border: 1px solid #ddd;
  padding: 1% 4%;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: #000000;
  border-radius: 8px 8px 0 0;
  transition: all 0.2s ease;
}

/* Active Tab Style (matching the dark button look) */
.Product_info_tabs .tab_button.active {
  background-color: #2d2d2d;
  color: #ffffff;
  border-bottom: 1px solid #000000;
}

/* Content Text Styling */
.Product_info_tabs .content_heading {
  font-size: 18px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 20px;
}

.Product_info_tabs .content_body p {
  font-size: 14px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 18px;
  max-width: 100%;
}

/* Features & Benefits Footer Grid */
.Product_info_tabs .features_section {
  margin-top: 40px;
}

.Product_info_tabs .features_heading {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.Product_info_tabs .features_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.Product_info_tabs .feature_item {
  border-left: 1px solid #707070;
  padding-left: 15px;
}

/* Removes the left border from the very first item for design balance */
.Product_info_tabs .features_grid .feature_item:first-child {
  border-left: none;
  padding-left: 0;
}

.Product_info_tabs .feature_item h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 6px 0;
  color: #111111;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1; /* number of lines to show */
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.Product_info_tabs .feature_item p {
  font-size: 13px;
  color: #000;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  .Product_info_tabs .features_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .Product_info_tabs .feature_item {
    border-left: 2px solid #b3b3b3;
    padding-left: 12px;
  }
  .Product_info_tabs .features_grid .feature_item:first-child {
    border-left: 2px solid #b3b3b3;
    padding-left: 12px;
  }
}

@media (max-width: 500px) {
  .Product_info_tabs .features_grid {
    grid-template-columns: 1fr;
  }
  .Product_info_tabs .tab_button {
    font-size: 14px;
  }
  .Product_info_tabs .content_heading {
    font-size: 15px;

    margin-bottom: 7px;
  }
  .Product_info_tabs .content_body p {
    font-size: 13px;
  }
}
