.elementor-876 .elementor-element.elementor-element-7d1df7b5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-524511cb */.ageno-product-page {
  font-family: 'Inter', 'Poppins', sans-serif;
  color: #111;
  background: #fff;
}

/* HERO SECTION */
.product-hero {
  width: 100%;
  background: #f2f2f2; 
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.hero-container {
  max-width: 1200px;
  width: 90%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* GALLERY */
.hero-main-image {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
}

.hero-main-image img {
  width: 100%;
  height: auto;
  display: block;
  /* Added opacity here to make JS fade work */
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.3s ease;
}

.hero-main-image:hover img {
  transform: scale(1.05);
}

.hero-thumbs {
  display: flex;
  gap: 15px;
  margin-top: 24px;
  justify-content: center;
}

.thumb {
  border: 2px solid transparent;
  background: #fff;
  padding: 0;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 70px;
  height: 70px;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.thumb:hover img,
.thumb.active img {
  opacity: 1;
}

.thumb.active {
  border-color: #0a74c9;
}

/* INFO SECTION */
.hero-info {
  text-align: left;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  background: #eef7ff;
  color: #0a74c9;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.product-title {
  font-size: 48px; /* High-end size */
  font-weight: 800;
  color: #111;
  line-height: 1.1;
  margin-bottom: 20px;
}

.product-tagline {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.product-meta {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 3px solid #0a74c9;
  padding-left: 20px;
}

.product-meta span {
  font-size: 14px;
  color: #444;
}
/* HIGHLIGHTS & SPECS */
.product-info-stack {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
  backgrund:#fff;
}

.info-block {
  margin-bottom: 60px;
}

.info-block h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
}

.highlight-icon {
  color: #0a74c9;
  font-weight: bold;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table td {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

/* MOBILE RESPONSIVENESS (Consolidated) */
@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-info {
    text-align: center;
  }
  .product-meta {
    border-left: none;
    padding-left: 0;
  }
  .product-title {
    font-size: 32px;
  }
  .hero-thumbs {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-main-image {
    border-radius: 16px;
  }
  .thumb {
    width: 60px;
    height: 60px;
  }
}/* End custom CSS */