/*
Theme Name: TWO Elementor
Description: Child of hello-elementor
Theme Author: The Web Orchard
Author URI: https://www.theweborchard.com
Template: hello-elementor
Text Domain: two
Version: 1.0.0
*/

h1.elementor-heading-title.elementor-size-default {
    font-size: var(--e-global-typography-8349788-font-size);
	font-weight: var(--e-global-typography-8349788-font-weight);
}
h2.elementor-heading-title.elementor-size-default {
    font-size: var(--e-global-typography-1293481-font-size);
	font-weight: var(--e-global-typography-1293481-font-weight);
}
h3.elementor-heading-title.elementor-size-default {
    font-size: var(--e-global-typography-9d6046f-font-size);
	font-weight: var(--e-global-typography-9d6046f-font-weight);
}
html {
    overflow-x: hidden;
}


#product-search-page {
  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: 20px;
  max-width: 1440px;
  margin: auto;
}

:where(#product-search-page) .product-details-table {
  padding: 1rem 0.5rem;
}

:where(#product-search-page) .product-details-table table {
  width: 100%;
  border-collapse: collapse;
}

:where(#product-search-page) .product-details-table td {
  background-color: white;
  border: none;
}

:where(#product-search-page) .product-details-table tr {
  border-bottom: 1px solid #1E1E1E;
}

:where(#product-search-page) .product-details-table tr:nth-child(2n) {
  background-color: #F8F8F8;
}

:where(#product-search-page) .page-search-results .product-details-table tr td {
  padding: 0.25rem;
}

.product-details {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.product-details-image {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-details-image img {
  max-width: 100%;
  height: auto;
}

.search-section {
  background: #E9F2F3;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.search-section-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.search-section-number {
  width: 45px;
  height: 45px;
  background: #E14F0F;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  flex-shrink: 0;
}

.search-section-title {
  margin: 0;
  padding: 0;
  color: #333;
}

.search-section-title h2 {
  font-size: 20px;
  margin: 0 0 10px 0;
  color: #2B6777;
}

.search-section-title p {
  font-size: 14px;
  margin: 0;
  color: #666;
}

.rim-specs-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rim-spec-select {
  width: 100%;
  position: relative;
}

.rim-spec-select select {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background-color: white;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  appearance: none;
  position: relative;
}

.rim-spec-select::after {
  content: '\276F';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  pointer-events: none;
  color: #333;
}

.rim-spec-select select:hover {
  border-color: #999;
}

.rim-spec-select select:focus {
  outline: none;
  border-color: #E14F0F;
  box-shadow: 0 0 0 2px rgba(225, 79, 15, 0.1);
}

/* Tab Styles */
.tabs {
  overflow: hidden;
}

.tabs input {
  position: absolute;
  display: none;
}

.tab {
  width: 100%;
  overflow: hidden;
  border: 1px solid #707070;
  margin-bottom: 1rem;
}

.tab-label {
  display: flex;
  justify-content: start;
  padding: 1rem;
  font-weight: bold;
  cursor: pointer;
  text-transform: capitalize;
}

.tab-label:hover {
  background: #F8F8F8;
}

.tab-label::after {
  content: '\276F';
  text-align: center;
  transition: all .35s;
  transform: rotate(90deg);
  height: fit-content;
  margin-left: auto;
}

.tab-child {
  border: none;
  margin-bottom: 0;
}

.tab-child .tab-label {
  color: #2D8992;
  padding: 0.5rem;
  background-color: #F8F8F8;
  border-top: 1px solid #707070;
  justify-content: start;
}

.tab-child .tab-label::after {
  margin-left: 1rem;
}

.tab-content {
  max-height: 0;
  background: white;
  transition: all .35s;
}

.tab-content .product-features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 1rem;
  gap: 40px;
}

@media (max-width: 599px) {
  .tab-content .product-features {
    grid-template-columns: 1fr;
  }
}

.tab-content .product-features ul {
  list-style-type: none;
}

.tab-content .product-features ul li {
  margin-bottom: 1rem;
  font-weight: 300;
  text-decoration: none;
}

.tab-content .product-features ul li:before {
  content: '\2022';
  color: #2D8992;
  font-weight: bold;
  display: inline-block;
  width: 1rem;
  margin-left: -1rem;
}

.tab-content-benefits {
  overflow: scroll;
  font-size: 16px;
}

/* Tab checked state */
input:checked + .tab-label {
  background: #F8F8F8;
}

input:checked + .tab-label::after {
  transform: rotate(270deg);
}

input:checked ~ .tab-content {
  max-height: 500vh;
}

.tab:not(.tab-child) + .tab-label {
  border-bottom: 1px solid #707070;
}

/* feature-icon-tooltip Styles */
.feature-icon-tooltip {
  position: relative;
  display: inline-block;
}

.feature-icon-tooltip img {
  max-width: 60px !important;
  height: auto !important;
}

.feature-icon-tooltip-text {
  visibility: hidden;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 0.5rem;
  border-radius: 4px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.875rem;
}

.feature-icon-tooltip:hover .feature-icon-tooltip-text {
  visibility: visible;
}

/* Product Icon Container */
.product-icon-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 1rem;
}

.product-icon {
  max-width: 60px;
  height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  #product-search-page {
    grid-template-columns: 1fr;
  }

  .product-details {
    grid-template-columns: 1fr;
  }
}

.product-menu p.elementor-image-box-description {
    font-size: 13px;
}
.product-menu figure.elementor-image-box-img {
    width: 50%;
}
.product-menu .product-menu-link p {
    position: relative;
    top: -25px;
    text-decoration: underline;
    font-size: 14px;
    left: -10px;
}
.product-menu .elementor-image-box-wrapper .elementor-image-box-img {
    width: 50% !important;
}
.product-menu h3.elementor-image-box-title {
    font-size: 17px;
    text-transform: uppercase;
}
.gallery-icon.landscape img {
    width: 35px;
}
.home-carousel-slider .elementor-swiper-button.elementor-swiper-button-prev {
    top: -40px !important;
}
.home-carousel-slider .elementor-swiper-button.elementor-swiper-button-next {
    top: -40px !important;
}
.home-section {
    padding: 80px 0	;
}
.second-section-block {
    padding: 25px !important;
    border: 1px solid #2d8892;
}
.second-section-block-link {
    margin-top: -32px;
    margin-left: 75px;
}
.second-section-block h3.elementor-image-box-title {
    margin-top: 0;
    margin-bottom: 5px !important;
}
.section-news h3 {
    padding: 10px 30px 0px 30px !important;
}
.section-news p {
    padding: 0 30px;
}
.myblogscontent {
    height: 330px !important;
}

.table-wrapper {
  overflow-x: auto;
}
.feature-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 800px; /* ensures scroll if screen is narrow */
}
.feature-table td,
.feature-table th {
  border: 1px solid #ccc;
  padding: 8px 10px;
  text-align: center;
}
.feature-table td:first-child {
  text-align: left;
  font-weight: bold;
  background: #f9f9f9;
  position: sticky;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .feature-table {
    font-size: 0.75rem;
  }
}