/* Base Styles */
*,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  font-family: "Poppins", sans-serif;
  color: #f1f5f4;
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal scroll */
  max-width: 100vw; /* Ensure body doesn't exceed viewport width */
}

a {
  color: inherit;
  text-decoration: inherit;
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #2098e2, #0d6efd);
  color: white;
  padding: 0.5rem 0;
  position: relative;
  z-index: 5;
  width: 100%;
}

.announcement-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  position: relative;
  width: 100%;
}

.announcement-icon {
  margin-right: 0.75rem;
}

.announcement-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.announcement-content p {
  font-size: 0.95rem;
  margin: 0;
}

.announcement-content a {
  text-decoration: underline;
  font-weight: bold;
}

.announcement-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}


/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  width: 100%;
  margin-bottom: 8vw;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  line-height: normal;
}

.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.highlight {
  color: #2098e2;
}

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  background: rgb(32 152 226 / 51%);
  border: 1px solid rgb(32 152 226);
  border-radius: 50px;
  padding: 0.5rem 1rem;
}

.badge-icon {
  color: #2098e2;
  font-weight: bold;
  margin-right: 0.5rem;
}

.badge-text {
  font-size: 1rem;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.primary-cta,
.secondary-cta {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: white;
}

.primary-cta {
  background: linear-gradient(135deg, #2098e2 0%, #0d6efd 100%);
  color: white;
}

.secondary-cta {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.primary-cta:hover,
.secondary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bounce 2s infinite;
  
}

.mouse {
  width: 25px;
  height: 40px;
  border: 2px solid white;
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheel 1.5s infinite;
}

.arrow-scroll {
  margin-top: 10px;
}

.arrow-scroll span {
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  margin: -5px;
  animation: arrow 1.5s infinite;
}

.arrow-scroll span:nth-child(2) {
  animation-delay: 0.2s;
}

.arrow-scroll span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes wheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

@keyframes arrow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Product Intro */
.product-intro {
  padding: 5rem 0;
  background: #f1f5f4;
  color: #373737;
  position: relative;
  width: 100%;
}

.intro-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.intro-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #373737;
  line-height: normal;
}

.intro-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.intro-stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 3rem;
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2098e2;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #666;
}

#signature {
  position: absolute;
  right: 10%;
  bottom: -5vw;
  rotate: -40deg;
  height: 13vw;
}

/* Multizone Technology Section */
.multizone-technology {
  padding: 5rem 0;
  background: linear-gradient(135deg, #111 0%, #222 100%);
  width: 100%;
}

.tech-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 0 2rem;
  width: 100%;
}

.tech-image {
  flex: 1;
}

.tech-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tech-content {
  flex: 1;
}

.tech-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #2098e2;
  line-height: normal;
  line-height: 1.7;
  gap: 22px;
}

.tech-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.tech-benefits {
  list-style: none;
  margin-bottom: 2rem;
}

.tech-benefits li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.benefit-icon {
  color: #2098e2;
  margin-right: 0;
  font-weight: bold;
}

.tech-cta {
  margin-top: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #2098e2 0%, #0d6efd 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(32, 152, 226, 0.3);
}

.tech-comparison {
  max-width: 1200px;
  margin: 4rem auto 0;
  padding: 0 2rem;
  width: 100%;
}

.tech-comparison h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #2098e2;
}

/* Modify the comparison table section for better mobile responsiveness */
.comparison-table {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

.comparison-header {
  display: flex;
  background: rgba(32, 152, 226, 0.2);
  width: 100%;
}

.comparison-cell {
  flex: 1;
  padding: 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.header-cell {
  font-weight: bold;
  font-size: 1.1rem;
}

.borea-cell {
  color: #2098e2;
}

.comparison-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row .comparison-cell:first-child {
  font-weight: 600;
  text-align: left;
}

/* Add this new section for mobile comparison table */
@media screen and (max-width: 768px) {
  .comparison-header {
    display: none; /* Hide the header on mobile */
  }

  .comparison-row {
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
  }

  .comparison-row:last-child {
    border-bottom: none;
  }

  .comparison-cell {
    flex: 1;
    padding: 0.5rem 0;
    text-align: left;
    border-right: none;
    position: relative;
  }

  .comparison-row .comparison-cell:first-child {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2098e2;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .comparison-cell:not(:first-child) {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
  }

  .comparison-cell:not(:first-child)::before {
    content: attr(data-label);
    font-weight: 600;
    min-width: 120px;
    margin-right: 1rem;
  }

  .borea-cell {
    color: #2098e2;
    font-weight: 600;
  }

  /* Add subtle dividers between comparison items */
  .comparison-cell:not(:first-child):not(:last-child) {
    border-bottom: 3px dashed rgba(255, 255, 255, 0.05);
    padding-bottom: 0.75rem;
  }
}

/* Feature Section */
.feature-section {
  padding: 5rem 0;
  width: 100%;
}

.feature-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
  width: 100%;
  
}

.feature-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2098e2;
  line-height: normal;
}

.feature-header p {
  font-size: 1.2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
  width: 100%;
}

.feature-item.right {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
  padding: 0 2rem;
}

.feature-image {
  flex: 1;
  text-align: center;
}

.feature-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-content h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #2098e2;
  line-height: normal;
}

.feature-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.feature-benefits {
  margin-top: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.benefit-icon-small {
  color: #2098e2;
  margin-right: 0.75rem;
  font-weight: bold;
}

.noise-comparison,
.protection-comparison {
  margin-top: 2rem;
  position: relative;
}

.noise-scale {
  position: relative;
  height: 40px;
  margin-bottom: 10px;
}

.noise-marker {
  position: absolute;
  transform: translateX(-50%);
}

.marker-label {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.8rem;
  color: #ccc;
}

.marker-value {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  color: #2098e2;
}

.noise-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.noise-level {
  height: 100%;
  background: linear-gradient(90deg, #2098e2, #0d6efd);
  border-radius: 5px;
}

.protection-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.protection-title {
  width: 120px;
  font-size: 0.9rem;
}

.protection-bar {
  flex: 1;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  margin: 0 1rem;
  overflow: hidden;
}

.protection-level {
  height: 100%;
  background: linear-gradient(90deg, #2098e2, #0d6efd);
  border-radius: 5px;
}

.protection-level.gold {
  background: linear-gradient(90deg, #ffd700, #ff8c00);
}

.protection-value {
  width: 100px;
  text-align: right;
  font-size: 0.9rem;
  color: #ccc;
}

.zone-example {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.zone-room {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.zone-icon {
  margin-bottom: 0.5rem;
}

.zone-icon svg {
  width: 24px;
  height: 24px;
  stroke: #2098e2;
}

.zone-name {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.zone-temp {
  font-size: 1.2rem;
  font-weight: bold;
  color: #2098e2;
}

.app-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.app-feature {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.app-icon {
  margin-bottom: 0.5rem;
}

.app-icon svg {
  width: 24px;
  height: 24px;
  stroke: #2098e2;
}

.app-text {
  font-size: 0.9rem;
  line-height: normal;
}

.app-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.app-download img {
  height: 40px;
}

/* Rebates Section */
.rebates-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #111 0%, #222 100%);
  width: 100%;
}

.rebates-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.rebates-header {
  text-align: center;
  margin-bottom: 3rem;
}

.rebates-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2098e2;
  line-height: normal;
}

.rebates-header p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.rebates-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  width: 100%;
}

.rebate-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.rebate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.rebate-card.special {
  background: rgba(32, 152, 226, 0.1);
  border: 1px solid rgba(32, 152, 226, 0.3);
}

.rebate-icon {
  margin-bottom: 1.5rem;
}

.rebate-icon svg {
  width: 48px;
  height: 48px;
  stroke: #2098e2;
}

.rebate-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.rebate-amount {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2098e2;
  margin-bottom: 1rem;
}

.rebate-description {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.6;
}

.rebates-cta {
  text-align: center;
}

.rebate-calculator-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #2098e2 0%, #0d6efd 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.rebate-calculator-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(32, 152, 226, 0.3);
}

.rebate-disclaimer {
  font-size: 0.8rem;
  color: #999;
  line-height: normal;
}

/* Product Selector */
.product-selector {
  padding: 5rem 0;
  background-color: #f1f5f4;
  color: #373737;
  width: 100%;
}

.product-selector h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #373737;
  line-height: normal;
}

.selector-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.selector-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.outdoor-units,
.indoor-units {
  margin-bottom: 3rem;
  width: 100%;
}

.outdoor-units h3,
.indoor-units h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #2098e2;
  line-height: normal;
}

.indoor-help {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #666;
}

.unit-options,
.indoor-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  width: 100%;
}

.unit-option,
.indoor-option {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.unit-option{
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}



.unit-option:hover,
.indoor-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


.unit-option.active,
.connection-option.active {
  border-color: #2098e2;
  background: #f0f9ff;
  box-shadow: 0 4px 12px rgba(32, 152, 226, 0.2);
}

.select-unit-btn.active, .select-connection-btn.active{
  background: #1a7ab8;
  box-shadow: 0 2px 4px rgba(32, 152, 226, 0.3);
}

.best-seller-badge,
.premium-badge,
.new-badge,
.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: bold;
  color: white;
  transform: rotate(45deg) translateX(30%) translateY(-50%);
  width: 150px;
  text-align: center;
}

.best-seller-badge {
  background: #ff9800;
}

.premium-badge {
  background: #9c27b0;
}

.new-badge {
  background: #4caf50;
}

.popular-badge {
  background: #f44336;
}

.unit-option img,
.indoor-option img {
  width: 80%;
  margin-bottom: 1rem;
}

/* Add styles for pipe length and connection type images */
.pipe-option img,
.connection-option img {
  width: 60%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.unit-option h4,
.indoor-option h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.unit-option p,
.indoor-option p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.unit-price {
  font-weight: bold;
  color: #2098e2;
  font-size: 1.3rem !important;
  margin-bottom: 1rem;
}

.select-unit-btn {
  background: #2098e2;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.select-unit-btn:hover {
  background: #1a7cbd;
}

.quantity-control {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.qty-btn {
  background: #eee;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background: #ddd;
}

.qty-input {
  width: 40px;
  text-align: center;
  border: 1px solid #eee;
  margin: 0 5px;
  padding: 5px 0;
  border-radius: 5px;
}

.configuration-summary {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin-top: 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.configuration-summary h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #2098e2;
}

.select-prompt {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
}

.summary-details {
  margin-top: 1.5rem;
  width: 100%;
}

.outdoor-summary,
.indoor-summary {
  margin-bottom: 1.5rem;
}

.outdoor-summary h4,
.indoor-summary h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #373737;
}

#indoor-list {
  list-style: none;
  margin-left: 1rem;
}

#indoor-list li {
  margin-bottom: 0.5rem;
}

.summary-totals {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  width: 100%;
  flex-wrap: wrap;
}

.capacity-info p {
  margin-bottom: 0.5rem;
}

.total-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2098e2;
  margin-bottom: 0.5rem;
}

.financing-option {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.financing-option span {
  font-weight: bold;
}

.add-cart-btn {
  background: #2098e2;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.add-cart-btn:hover {
  background: #1a7cbd;
}

.add-cart-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #111 0%, #222 100%);
  width: 100%;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2098e2;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
  width: 100%;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-rating {
  color: #ffc107;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.author-name {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.author-location {
  font-size: 0.9rem;
  color: #ccc;
}

/* Specs Section */
.specs-section {
  padding: 3rem 0;
  background: #1a1a1a;
  width: 100%;
}

.specs-section h2 {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 3rem;
  color: #ffffff;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: normal;
}

.specs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.specs-column {
  margin-bottom: 3rem;
}

.specs-column h3 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  margin-bottom: 2rem;
  color: #2098e2;
  text-align: center;
  position: relative;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: normal;
}

.specs-column h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: #2098e2;
  border-radius: 2px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  width: 100%;
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  transition: all 0.3s ease;
  text-align: center;
  min-height: 150px;
  position: relative;
  overflow: hidden;
  justify-content: center;
}


.spec-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(32, 152, 226, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.spec-item:hover::before {
  opacity: 1;
}

.spec-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(32, 152, 226, 0.2);
  transform: translateY(-2px);
}


.spec-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: rgba(32, 152, 226, 0.05);
  border-radius: 50%;
  padding: 7px;
  transition: all 0.3s ease;
  margin: 0;
}

.spec-icon svg {
  width: 100%;
  height: 100%;
  stroke: #2098e2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.3s ease;
  transform-origin: center;
}

.spec-item:hover .spec-icon {
  background: rgba(32, 152, 226, 0.1);
  box-shadow: 0 0 15px rgba(32, 152, 226, 0.2);
}

.spec-item:hover .spec-icon svg {
  stroke: #40a9ff;
  filter: drop-shadow(0 0 8px rgba(32, 152, 226, 0.4));
  transform: scale(1.05);
}

.spec-text {
  position: relative;
  z-index: 1;
}

.spec-text p {
  margin: 0;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  line-height: normal;
  color: #ffffff;
  font-weight: 300;
}

.spec-text p:last-child {
  color: #cccccc;
  font-size: clamp(0.7rem, 1.8vw, 0.85rem);
  margin-top: 0.25rem;
}

.spec-text p:first-child {
  color: #cccccc;
  font-size: clamp(0.7rem, 1.8vw, 0.85rem);
  margin-top: 0.25rem;
}

.specs-download {
  text-align: center;
  margin-top: 3rem;
}

.download-specs-btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: transparent;
  color: #2098e2;
  border: 1px solid #2098e2;
  border-radius: 50px;
  font-weight: 400;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 2vw, 1rem);
  letter-spacing: 0.5px;
}

.download-specs-btn:hover {
  background: #2098e2;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(32, 152, 226, 0.3);
}
/* subtle animation for spec items on page load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.spec-item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.spec-item:nth-child(1) {
  animation-delay: 0.1s;
}
.spec-item:nth-child(2) {
  animation-delay: 0.15s;
}
.spec-item:nth-child(3) {
  animation-delay: 0.2s;
}
.spec-item:nth-child(4) {
  animation-delay: 0.25s;
}
.spec-item:nth-child(5) {
  animation-delay: 0.3s;
}
.spec-item:nth-child(6) {
  animation-delay: 0.35s;
}
.spec-item:nth-child(7) {
  animation-delay: 0.4s;
}
.spec-item:nth-child(8) {
  animation-delay: 0.45s;
}
.spec-item:nth-child(9) {
  animation-delay: 0.5s;
}
.spec-item:nth-child(10) {
  animation-delay: 0.55s;
}

/* Trust Banner - Perfected with refined icons and hover effects */
.trust-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(24px, 3.5vw, 48px);
  margin: 3vw auto;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  width: calc(100% - 2rem);
  z-index: 1;
  justify-self: center;

}

/* Subtle background gradient effect */
.trust-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(32, 152, 226, 0.05) 0%, transparent 50%, rgba(32, 152, 226, 0.05) 100%);
  z-index: -1;
  opacity: 0.5;
  border-radius: inherit;
}

.trust-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: clamp(120px, 16%, 200px);
  gap: clamp(12px, 1.5vw, 20px);
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  position: relative;
  outline: none;
}

.trust-feature:hover,
.trust-feature:focus-visible {
  transform: translateY(-6px);
}

/* Focus state for accessibility */
.trust-feature:focus-visible {
  outline: 2px solid rgba(32, 152, 226, 0.6);
  outline-offset: 8px;
  border-radius: 8px;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(60px, 6vw, 76px);
  height: clamp(60px, 6vw, 76px);
  margin-bottom: 12px;
  background: rgba(32, 152, 226, 0.12);
  border-radius: 50%;
  padding: 16px;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: visible;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Subtle glow effect on hover */
.feature-icon::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, rgba(32, 152, 226, 0.4), rgba(13, 110, 253, 0.4));
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
  filter: blur(4px);
}

.trust-feature:hover .feature-icon::before,
.trust-feature:focus-visible .feature-icon::before {
  opacity: 0.8;
}

.trust-feature:hover .feature-icon,
.trust-feature:focus-visible .feature-icon {
  background: rgba(32, 152, 226, 0.18);
  box-shadow: 0 8px 24px rgba(32, 152, 226, 0.3);
  transform: scale(1.08);
}

/* SVG Icon Styling - Perfected */
.icon-svg {
  width: 100%;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  overflow: visible;
}

.icon-outline {
  stroke: #ffffff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.icon-fill {
  stroke: none;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
}

.icon-inner {
  stroke: #ffffff;
  fill: none;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.icon-text {
  fill: #ffffff;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  user-select: none;
}

/* Hover Effects for SVG Icons - Perfected */
.trust-feature:hover .icon-outline,
.trust-feature:focus-visible .icon-outline {
  stroke-width: 1.75;
  filter: brightness(1.2);
}

.trust-feature:hover .icon-inner,
.trust-feature:focus-visible .icon-inner {
  stroke-width: 1.75;
  filter: brightness(1.2);
}

.trust-feature:hover .icon-text,
.trust-feature:focus-visible .icon-text {
  filter: brightness(1.2);
}

.trust-feature:hover .icon-svg,
.trust-feature:focus-visible .icon-svg {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Individual icon hover colors - Perfected */
.trust-feature:nth-child(1):hover .icon-fill,
.trust-feature:nth-child(1):focus-visible .icon-fill {
  fill: rgba(32, 152, 226, 0.4);
  opacity: 1;
}

.trust-feature:nth-child(2):hover .icon-fill,
.trust-feature:nth-child(2):focus-visible .icon-fill {
  fill: rgba(76, 175, 80, 0.4);
  opacity: 1;
}

.trust-feature:nth-child(3):hover .icon-fill,
.trust-feature:nth-child(3):focus-visible .icon-fill {
  fill: rgba(233, 30, 99, 0.4);
  opacity: 1;
}

.trust-feature:nth-child(4):hover .icon-fill,
.trust-feature:nth-child(4):focus-visible .icon-fill {
  fill: rgba(156, 39, 176, 0.4);
  opacity: 1;
}

.trust-feature:nth-child(5):hover .icon-fill,
.trust-feature:nth-child(5):focus-visible .icon-fill {
  fill: rgba(255, 152, 0, 0.4);
  opacity: 1;
}

/* Special hover effect for inner circles */
.trust-feature:nth-child(2):hover circle.icon-inner,
.trust-feature:nth-child(2):focus-visible circle.icon-inner {
  fill: rgba(76, 175, 80, 0.2);
}

.trust-feature:nth-child(4):hover circle.icon-inner,
.trust-feature:nth-child(4):focus-visible circle.icon-inner {
  fill: rgba(156, 39, 176, 0.2);
}

/* Animation for icons - Perfected */
@keyframes icon-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes icon-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.trust-feature:hover .feature-icon,
.trust-feature:focus-visible .feature-icon {
  animation: icon-float 3s ease-in-out infinite;
}

/* Feature title and text styling - Perfected */
.feature-title {
  font-size: clamp(0.95rem, 1.2vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
  transition: color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  letter-spacing: 0.5px;
}

.trust-feature:hover .feature-title,
.trust-feature:focus-visible .feature-title {
  color: #40a9ff;
}

.feature-text {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: rgba(224, 224, 224, 0.9);
  text-align: center;
  transition: color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  line-height: 1.5;
}

.trust-feature:hover .feature-text,
.trust-feature:focus-visible .feature-text {
  color: #ffffff;
}

/* Entrance animation for icons - Perfected */
@keyframes icon-entrance {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(24px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.trust-feature {
  animation: icon-entrance 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  opacity: 0;
}

.trust-feature:nth-child(1) {
  animation-delay: 0.1s;
}

.trust-feature:nth-child(2) {
  animation-delay: 0.2s;
}

.trust-feature:nth-child(3) {
  animation-delay: 0.3s;
}

.trust-feature:nth-child(4) {
  animation-delay: 0.4s;
}

.trust-feature:nth-child(5) {
  animation-delay: 0.5s;
}
/* Installation Process */
.installation-process {
  padding: 5rem 0.9rem;
  background-color: #f1f5f4;
  color: #373737;
  width: 100%;
}

.installation-process h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #373737;
}

.installation-process h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #373737;
}

.installation-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.process-steps {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
  width: 100%;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 25px;
  width: 2px;
  height: calc(100% + 2rem);
  background: #2098e2;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #2098e2;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 2rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #2098e2;
}

.step-content p {
  font-size: 1.1rem;
}

.installation-cta {
  text-align: center;
  margin-top: 3rem;
}

.schedule-consultation-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #2098e2 0%, #0d6efd 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.schedule-consultation-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Finance Widget */
.finance-widget {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 2vw;
  perspective: 1000px;
}

.widget-inner {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 2.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
  transform-style: preserve-3d;
  transition: transform 0.5s;
}

.widget-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 0.19vw;
  background-size: 400% 400%;
  
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderShift 6s ease infinite;
}

.widget-inner h2 {
  margin: 0 0 1.5rem;
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: normal;
}

.widget-inner p {
  margin: 0 0 1.5rem;
  color: #ddd;
  font-size: 1rem;
  line-height: 1.6;
}

.widget-section {
  margin-bottom: 2rem;
}

.widget-section h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: #fff;
}

.widget-section p,
.widget-section ol,
.widget-section ul {
  margin: 0;
  padding: 0 0 0 1rem;
  color: #eee;
  line-height: 1.5;
}

.widget-section ol {
  list-style: decimal;
}

.widget-section ul {
  list-style: disc;
}

.btn-animated {
  position: relative;
  display: inline-block;
  padding: 1rem 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background: #ff0080;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.5s, transform 0.5s;
}

.btn-animated::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #ff8c00, #40e0d0, #8a2be2);
  transition: transform 0.5s;
}

.btn-animated:hover {
  background: #8a2be2;
  transform: scale(1.05) translateY(-2px);
}

.btn-animated:hover::before {
  transform: translateX(200%);
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #111 0%, #222 100%);
  width: 100%;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2098e2;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* Fix FAQ section spacing and toggle alignment */
.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.5rem; /* Add consistent padding */
  width: 100%;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  width: 100%;
}

.faq-question h3 {
  font-size: 1.2rem;
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #2098e2;
  transition: all 0.3s ease;
  width: 24px; /* Fixed width for toggle */
  height: 24px; /* Fixed height for toggle */
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1; /* Ensure consistent line height */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
}

.faq-answer p {
  padding: 0 0 1.5rem;
  line-height: 1.8;
}

.faq-item.active .faq-toggle {
 
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Brochure Banner */
.brochure-banner {
  display: flex;
  border-radius: 1.5rem;
  overflow: hidden;
  margin: 3vw 2vw;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  position: relative;
  height: fit-content;
  background: #1a1a1a;
  color: #e0e0e0;
  width: calc(100% - 4vw);
}


.text-gradient {
  background: linear-gradient(135deg, #9d00ff, #00fff0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 1rem;
  
  padding: 0;
}

/* Footer */
.menu-ft {
  position: relative;
  text-align: left;
  background-color: black;
  width: 100%;
}

.img-footer-menu {
  position: relative;
  left: 2.5vw;
  padding-top: 4vw;
  padding-bottom: 3.5vw;
  width: 10vw;
}

.div-footer-menu {
  margin-bottom: 4vw;
  width: 100%;
}



.li-footer-menu {
  padding: 1vw;
  font-size: 1vw;
  margin-right: 2vw;
}

.li-footer-menu > ul > h3 {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-weight: bold;
  width: fit-content;
}

.li-footer-menu > ul > h3 > a {
  color: #c0c0c0;
}

.li-footer-menu > ul > li {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-weight: normal;
  position: relative;
  top: 0;
  left: 0;
  transition: all 0.2s;
  color: #a3a3a3;
}

.li-footer-menu > ul > li > a {
  color: #a3a3a3;
}

.li-footer-menu > ul > li:hover {
  top: -0.2vw;
  color: #c0c0c0;
}

.barre-footer-menu {
  height: 0.2vw;
  width: 80%;
  background-color: #c0c0c0;
  margin-bottom: 1.5vw;
}



.sub-footer {
  position: relative;
  display: flex;
  top: 0vw;
  left: 0vw;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: black;
}



.itm-right-sub-footer {
  position: absolute;
  top: 0;
  right: 0;
  width: max-content;
  display: flex;
  color: #a3a3a3;
}

.itm-sub-footer {
  position: relative;
  padding-left: 1vw;
  padding-right: 1vw;
  top: 0vw;
  left: 0vw;
  width: fit;
  font-size: 0.85vw;
  color: #a3a3a3;
}

.itm-sub-footer > a {
  color: #a3a3a3;
}

.copyright-title {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  position: relative;
  font-size: 0.85vw;
  top: 0vw;
  left: 0vw;
  color: #a3a3a3;
}

.support-type {
  margin-top: 3rem;
}

.support-type h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2098e2;
  margin-bottom: 1.5rem;
  line-height: normal;

}

.support-help {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.support-option {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.support-option:hover {
  border-color: #2098e2;
  box-shadow: 0 4px 12px rgba(32, 152, 226, 0.15);
  transform: translateY(-2px);
}

.support-option.active {
  border-color: #2098e2;
  background: #f0f9ff;
  box-shadow: 0 4px 12px rgba(32, 152, 226, 0.2);
}

.support-option img {
  width: 100%;
  max-width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.support-option h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.support-option p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.support-option .unit-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2098e2;
  margin-bottom: 1rem;
}

.select-support-btn {
  background: #2098e2;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.select-support-btn:hover {
  background: #1a7ab8;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(32, 152, 226, 0.3);
}

.select-support-btn.active {
  background: #1a7ab8;
  box-shadow: 0 2px 4px rgba(32, 152, 226, 0.3);
}

.select-support-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Support Summary */
.support-summary {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.support-summary h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 0.5rem;
}

.support-summary p {
  color: #1a1a1a;
  font-size: 0.95rem;
}

/* Styles for locked steps */
.locked-step {
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  position: relative; /* Needed for the overlay message if used */
}

.locked-step::after {
  content: "Complete previous steps to unlock";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5); /* Light overlay */
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  padding: 1rem;
  border-radius: 8px; /* Match parent border-radius if any */
  z-index: 10; /* Ensure it's above the step content */
  pointer-events: all; /* Allow the message itself to be interacted with if needed, though step is locked */
}

/* Ensure step sections have a clear visual boundary for the overlay */
.outdoor-units,
.indoor-units,
.pipe-length-units,
.connection-type,
.support-type {
  position: relative; /* For the ::after pseudo-element positioning */
  padding-top: 1rem; /* Add some padding if not already present */
  padding-bottom: 1rem;
}

/* Hide overlay when step is not locked */
.outdoor-units:not(.locked-step)::after,
.indoor-units:not(.locked-step)::after,
.pipe-length-units:not(.locked-step)::after,
.connection-type:not(.locked-step)::after,
.support-type:not(.locked-step)::after {
  display: none;
}

/* Responsive Styles */
@media screen and (max-width: 849px) {
  /* Navigation */
  .navbar {
    padding: 0.5em 1em;
    height: auto;
    min-height: 70px;
  }



  .menu-container {
    top: 70px;
  }

  /* Fix hero section text size on mobile */
  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  /* Fix signature positioning */
  #signature {
    position: relative;
    right: auto;
    bottom: auto;
    rotate: -20deg;
    height: 80px;
    margin: 20px auto;
    display: block;
  }

  /* Fix trust banner layout */
  .trust-feature {
    max-width: 100%;
    margin: 15px 0;
  }

  .feature-icon svg {
    width: 40px;
    height: 40px;
  }

  .feature-title {
    font-size: 1.2rem;
    line-height: normal;
  }

  .feature-text {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  /* Fix brochure banner */
  .product-btn {
    font-size: 1rem;
  }

  .product-btn svg {
    height: 24px;
    width: 24px;
  }

  /* Fix footer layout */
  .img-footer-menu {
    position: relative;
    left: 0;
    margin: 30px auto;
    height: auto;
    width: 150px;
    display: block;
  }

  .li-footer-menu {
    font-size: 16px;
    margin: 20px 0;
    padding-left: 20px;
  }

  .li-footer-menu > ul > h3 {
    font-size: 18px;
  }

  .li-footer-menu > ul > li {
    font-size: 16px;
  }


  /* Fix feature items on mobile */
  .feature-item {
    flex-direction: column;
  }

  .feature-item.right {
    flex-direction: column;
  }

  .feature-content,
  .feature-image {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }

  /* Improve mobile layout for all sections */
  .tech-container,
  .specs-container,
  .summary-totals {
    flex-direction: column;
  }

  /* Fix brochure banner on mobile */
  .brochure-banner {
    flex-direction: column;
  }

  .right-section {
    clip-path: none;
    min-height: 200px;
  }

  /* Ensure all content is centered and uses full width */
  .hero-text,
  .intro-content,
  .tech-container,
  .feature-header,
  .feature-item,
  .rebates-container,
  .selector-container,
  .testimonials-container,
  .specs-container,
  .process-steps,
  .faq-container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    margin-bottom: 20vw;
  }
}

/* Fix feature section alignment */
.feature-item {
  gap: 30px;
}

.feature-item.left .feature-content,
.feature-item.right .feature-content {
  padding: 0 15px;
}

/* Modify this section to ensure consistent mobile layout */
@media screen and (max-width: 849px) {
  /* Fix feature items on mobile */
  .feature-item,
  .feature-item.right,
  .feature-item.left {
    flex-direction: column;
  }

  .feature-content {
    width: 100%;
    padding: 0;
    margin-bottom: 1.5rem;
    order: 1; /* Ensure content always comes first */
  }

  .feature-image {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
    order: 2; /* Ensure image always comes second */
  }

  .trust-banner{
    margin: 2rem auto;
  }

  .finance-widget{
    padding: 0rem 1rem;
  }

  .badge-text {
    font-size: 0.9rem;
  }

}

/* Fix noise comparison markers */
.noise-marker {
  white-space: nowrap;
}

.marker-label,
.marker-value {
  white-space: nowrap;
  font-size: 0.75rem;
}

/* Fix product selector spacing */
.unit-option,
.indoor-option {
  padding: 1rem;
}

/* Fix testimonial cards */
.testimonial-card {
  height: auto;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.testimonial-author {
  margin-top: auto;
}

/* Fix announcement bar on mobile */
@media screen and (max-width: 600px) {
  .announcement-content p {
    font-size: 0.8rem;
  }

  .announcement-close {
    right: 5px;
  }

  /* Ensure all content is properly centered */
  body,
  html {
    width: 100%;
    overflow-x: hidden;
  }

  /* Fix hero badges on small screens */
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }

  .hero-badge {
    width: 90%;
  
    justify-content: center;
  }

  /* Fix CTA buttons on small screens */
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}

/* Fix specs section on mobile */
@media screen and (max-width: 768px) {
  .specs-grid {
    grid-template-columns: 1fr;
  }

  .spec-item {
    padding: 0.75rem;
  }

  /* Fix trust banner on mobile */
  .trust-banner {
    flex-direction: column;
    align-items: center;
  }

  .trust-feature {
    width: 100%;
    max-width: 300px;
  }
}

/* Fix finance widget on mobile */
@media screen and (max-width: 768px) {
  .widget-inner {
    padding: 1.5rem;
  }

  .widget-inner h2 {
    font-size: 1.5rem;
  }

  .widget-section h3 {
    font-size: 1.2rem;
  }
}

/* Fix FAQ section on mobile */
@media screen and (max-width: 768px) {
  .faq-question h3 {
    font-size: 1rem;
    padding-right: 30px;
  }
}

/* Ensure all content is centered on all screen sizes */
@media screen and (max-width: 480px) {
  .container,
  .section,
  .banner,
  .content {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }

  /* Fix grid layouts on very small screens */
  .unit-options,
  .indoor-options,
  .rebates-content,
  .testimonials-container {
    grid-template-columns: 1fr;
  }
}

/* Animation for trust banner border */
@keyframes borderShift {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

/* Add these styles for the toast notification system */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: rgba(32, 152, 226, 0.9);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 300px;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.toast-message {
  flex: 1;
}

/* Add highlight animation for summary updates */
@keyframes highlight-pulse {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: rgba(32, 152, 226, 0.15);
  }
  100% {
    background-color: transparent;
  }
}

.highlight-pulse {
  animation: highlight-pulse 1.5s ease;
}

/* Add checkmark animation styles */
.checkmark-container {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.checkmark-container.show {
  opacity: 1;
  animation: fade-out 1.5s forwards;
}

.checkmark {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(32, 152, 226, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2098e2;
  font-weight: bold;
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Add styles for quantity button feedback */
.qty-btn {
  position: relative;
}

/* Make sure the summary section has a relative position for the highlight effect */
.summary-details,
.outdoor-summary,
.indoor-summary,
.summary-totals {
  position: relative;
}

/* Add a subtle transition to the summary elements for smoother updates */
#outdoor-model,
#outdoor-price,
#indoor-list,
#total-zones,
#total-capacity,
#total-price,
#monthly-payment {
  transition: color 0.3s ease;
}

/* Add a subtle pulse animation for the select-unit-btn */
@keyframes button-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.button-pulse {
  animation: button-pulse 0.5s ease;
}

/* Add styles for error toast */
.toast.error-toast {
  background: rgba(220, 53, 69, 0.9);
  color: white;
}

/* Add styles for compatibility info section */
.compatibility-info {
  background: rgba(32, 152, 226, 0.1);
  border: 1px solid rgba(32, 152, 226, 0.3);
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
  font-size: 0.9rem;
  display: none;
}

.compatibility-info h4 {
  color: #2098e2;
  margin-bottom: 10px;
  font-size: 1rem;
}

.compatibility-info ul {
  margin: 0;
  padding-left: 20px;
}

.compatibility-info ul ul {
  margin-top: 5px;
  margin-bottom: 5px;
}

.compatibility-info li {
  margin-bottom: 5px;
}

/* Add validation indicator styles */
.validation-indicator {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  font-size: 0.9rem;
}

.validation-indicator.valid {
  color: #28a745;
}

.validation-indicator.invalid {
  color: #dc3545;
}

.validation-icon {
  margin-right: 5px;
}

/* Pipe Length Section */
.pipe-length-units,
.connection-type {
  margin-bottom: 3rem;
  width: 100%;
}

.pipe-length-units h3,
.connection-type h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #2098e2;
  line-height: normal;
}

.pipe-help,
.connection-help {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
}

.pipe-options,
.connection-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  width: 100%;
}

.pipe-option,
.connection-option {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pipe-option:hover,
.connection-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pipe-option img,
.connection-option img {
  width: 60%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.connection-option h4{
  font-size: 1.2rem;
}

.pipe-option h4{
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.pipe-option p{
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.connection-option p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.unit-option h4,
.indoor-option h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.unit-option p,
.indoor-option p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.unit-price {
  font-weight: bold;
  color: #2098e2;
  font-size: 1.3rem !important;
  margin-bottom: 1rem;
}

.select-unit-btn {
  background: #2098e2;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.select-unit-btn:hover {
  background: #1a7cbd;
}

.quantity-control {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.qty-btn {
  background: #eee;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background: #ddd;
}

.qty-input {
  width: 40px;
  text-align: center;
  border: 1px solid #eee;
  margin: 0 5px;
  padding: 5px 0;
  border-radius: 5px;
}

.configuration-summary {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin-top: 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.configuration-summary h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #2098e2;
}

.select-prompt {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
}

.summary-details {
  margin-top: 1.5rem;
  width: 100%;
}

.outdoor-summary,
.indoor-summary {
  margin-bottom: 1.5rem;
}

.outdoor-summary h4,
.indoor-summary h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #373737;
}

#indoor-list {
  list-style: none;
  margin-left: 1rem;
}

#indoor-list li {
  margin-bottom: 0.5rem;
}

.summary-totals {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  width: 100%;
  flex-wrap: wrap;
}

.capacity-info p {
  margin-bottom: 0.5rem;
}

.total-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2098e2;
  margin-bottom: 0.5rem;
}

.financing-option {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.financing-option span {
  font-weight: bold;
}

.add-cart-btn {
  background: #2098e2;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.add-cart-btn:hover {
  background: #1a7cbd;
}

.add-cart-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #111 0%, #222 100%);
  width: 100%;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2098e2;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
  width: 100%;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-rating {
  color: #ffc107;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.author-name {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.author-location {
  font-size: 0.9rem;
  color: #ccc;
}


/* Ensure trust banner is responsive */
@media screen and (max-width: 768px) {
  .trust-banner {
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
  }

  .trust-feature {
    max-width: 80%;
    margin-bottom: 25px;
  }

  .feature-icon {
    width: 80px;
    height: 80px;
  }
}

/* Installation Process */
.installation-process {
  padding: 5rem 0.9rem;
  background-color: #f1f5f4;
  color: #373737;
  width: 100%;
}

.installation-process h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #373737;
  line-height: normal;
}

.installation-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.process-steps {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
  width: 100%;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 25px;
  width: 2px;
  height: calc(100% + 2rem);
  background: #2098e2;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #2098e2;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 2rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #2098e2;
}

.step-content p {
  font-size: 1.1rem;
}

.installation-cta {
  text-align: center;
  margin-top: 3rem;
}

.schedule-consultation-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #2098e2 0%, #0d6efd 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.schedule-consultation-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Finance Widget */
.finance-widget {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 2vw;
  perspective: 1000px;
}

.widget-inner {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 2.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
  transform-style: preserve-3d;
  transition: transform 0.5s;
}

.widget-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 0.19vw;
  background-size: 400% 400%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderShift 6s ease infinite;
}

.widget-inner h2 {
  margin: 0 0 1.5rem;
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: normal;
}

.widget-inner p {
  margin: 0 0 1.5rem;
  color: #ddd;
  font-size: 1rem;
  line-height: 1.6;
}

.widget-section {
  margin-bottom: 2rem;
}

.widget-section h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: #fff;
}

.widget-section p,
.widget-section ol,
.widget-section ul {
  margin: 0;
  padding: 0 0 0 1rem;
  color: #eee;
  line-height: 1.5;
}

.widget-section ol {
  list-style: decimal;
}

.widget-section ul {
  list-style: disc;
}

.btn-animated {
  position: relative;
  display: inline-block;
  padding: 1rem 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background: #ff0080;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.5s, transform 0.5s;
}

.btn-animated::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #ff8c00, #40e0d0, #8a2be2);
  transition: transform 0.5s;
}

.btn-animated:hover {
  background: #8a2be2;
  transform: scale(1.05) translateY(-2px);
}

.btn-animated:hover::before {
  transform: translateX(200%);
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #111 0%, #222 100%);
  width: 100%;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2098e2;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* Fix FAQ section spacing and toggle alignment */
.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.5rem; /* Add consistent padding */
  width: 100%;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  width: 100%;
}

.faq-question h3 {
  font-size: 1.2rem;
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #2098e2;
  transition: all 0.3s ease;
  width: 24px; /* Fixed width for toggle */
  height: 24px; /* Fixed height for toggle */
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1; /* Ensure consistent line height */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
}

.faq-answer p {
  padding: 0 0 1.5rem;
  line-height: 1.8;
}

.faq-item.active .faq-toggle {
  transform: rotate(0deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Brochure Banner */
.bannerb {
  display: flex;
  border-radius: 1.5rem;
  overflow: hidden;
  margin: 2vw;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  position: relative;
  height: fit-content;
  background: #1a1a1a;
  color: #E0E0E0;
}

.right-section {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 1.1rem;
  background: url('bannerphototestfileJPG.jpg') no-repeat center center;
  background-size: cover;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}

.left-section {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  z-index: 1;
  background-color: #1a1a1a;
}

.left-section h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  background: linear-gradient(to right, #888, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: normal;
}

.left-section h1::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40%;
  height: 3px;
  background: linear-gradient(to right, #888, #fff);
}


.left-section p {
  margin: 1rem 0;
  color: #a3a3a3;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 500px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  background-color: #3d3d3d;
  color: #fff;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, box-shadow 0.3s;
  margin-top: 1.5rem;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.download-btn:hover {
  background-color: #444;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.download-btn svg {
  margin-left: 10px;
  fill: #fff;
  width: 20px;
  height: 20px;
}

.product-btn {
  background: linear-gradient(135deg, #101014 0%, #1A1C20 25%, #292B30 60%, #2E1F40 90%, #3A1B50 100%);
  border: none;
  border-radius: 0.5rem;
  padding: 0.9rem 1.6rem;
  color: #f1f5f4;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: bolder;
  cursor: pointer;
  transition: background-position 2s ease, filter 1s ease;
  background-size: 200% 200%;
  background-position: right center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  font-size: 1.2vw;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  width: fit-content;
}

.product-btn svg {
  transition: transform 0.3s;
  height: 2vw;
  width: fit-content;
  margin: 0;
  padding: 0;
}

.product-btn:hover {
  background-position: left center;
  filter: brightness(1.15);
  background: linear-gradient(135deg, #101014 0%, #1A1C20 20%, #292B30 60%, #522c74 100%);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  
}

.product-btn:hover svg {
  transform: translateY(-4px);
}
.text-gradient {
  background: linear-gradient(135deg, #9d00ff, #00fff0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 1rem;

  padding: 0;
}

/* Footer */
.menu-ft {
  position: relative;
  text-align: left;
  background-color: black;
  width: 100%;
}

.img-footer-menu {
  position: relative;
  left: 2.5vw;
  padding-top: 4vw;
  padding-bottom: 3.5vw;
  width: 10vw;
}

.div-footer-menu {
  margin-bottom: 4vw;
  width: 100%;
}



.li-footer-menu {
  padding: 1vw;
  font-size: 1vw;
  margin-right: 2vw;
}

.li-footer-menu > ul > h3 {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-weight: bold;
  width: fit-content;
}

.li-footer-menu > ul > h3 > a {
  color: #c0c0c0;
}

.li-footer-menu > ul > li {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-weight: normal;
  position: relative;
  top: 0;
  left: 0;
  transition: all 0.2s;
  color: #a3a3a3;
}

.li-footer-menu > ul > li > a {
  color: #a3a3a3;
}

.li-footer-menu > ul > li:hover {
  top: -0.2vw;
  color: #c0c0c0;
}

.barre-footer-menu {
  height: 0.2vw;
  width: 80%;
  background-color: #c0c0c0;
  margin-bottom: 1.5vw;
}



.border-language {
  position: absolute;
  top: 2.6vw;
  height: 0.85vw;
  border-radius: 1vw 1vw 1vw 1vw;
  width: 70%;
  left: 0.47vw;
  border: 0px solid black;
  background-color: #c0c0c0;
  margin: 0px;
  z-index: 2;
}


.sub-footer {
  position: relative;
  display: flex;
  top: 0vw;
  left: 0vw;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: black;
}

.itm-right-sub-footer {
  position: absolute;
  top: 0;
  right: 0;
  width: max-content;
  display: flex;
  color: #a3a3a3;
}

.itm-sub-footer {
  position: relative;
  padding-left: 1vw;
  padding-right: 1vw;
  top: 0vw;
  left: 0vw;
  width: fit;
  font-size: 0.85vw;
  color: #a3a3a3;
}

.itm-sub-footer > a {
  color: #a3a3a3;
}

.copyright-title {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  position: relative;
  font-size: 0.85vw;
  top: 0vw;
  left: 0vw;
  color: #a3a3a3;
}

/* Responsive Styles */
@media screen and (max-width: 849px) {
  /* Navigation */
  .navbar {
    padding: 0.5em 1em;
    height: auto;
    min-height: 70px;
  }



  .menu-container {
    top: 70px;
  }

  /* Fix hero section text size on mobile */
  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  /* Fix signature positioning */
  #signature {
    position: relative;
    right: auto;
    bottom: auto;
    rotate: -20deg;
    height: 80px;
    margin: 20px auto;
    display: block;
  }

  /* Fix trust banner layout */
  .trust-feature {
    max-width: 100%;
    margin: 15px 0;
  }

  .feature-icon svg {
    width: 40px;
    height: 40px;
  }

  .feature-title {
    font-size: 1.2rem;
    line-height: normal;
  }

  .feature-text {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  /* Fix brochure banner */
  .product-btn {
    font-size: 0.9rem;
  }

  .product-btn svg {
    height: 24px;
    width: 24px;
  }

  /* Fix footer layout */
  .img-footer-menu {
    position: relative;
    left: 0;
    margin: 30px auto;
    height: auto;
    width: 150px;
    display: block;
  }

  .li-footer-menu {
    font-size: 16px;
    margin: 20px 0;
    padding-left: 20px;
  }

  .li-footer-menu > ul > h3 {
    font-size: 18px;
  }

  .li-footer-menu > ul > li {
    font-size: 16px;
  }

  .border-language {
    top: 40px;
    height: 2px;
    width: 70%;
    left: 15%;
  }

  /* Fix feature items on mobile */
  .feature-item {
    flex-direction: column;
  }

  .feature-item.right {
    flex-direction: column;
  }

  .feature-content,
  .feature-image {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }

  /* Improve mobile layout for all sections */
  .tech-container,
  .specs-container,
  .summary-totals {
    flex-direction: column;
  }

  /* Fix brochure banner on mobile */
  .brochure-banner {
    flex-direction: column;
  }

  .right-section {
    clip-path: none;
    min-height: 200px;
  }

  /* Ensure all content is centered and uses full width */
  .hero-text,
  .intro-content,
  .tech-container,
  .feature-header,
  .feature-item,
  .rebates-container,
  .selector-container,
  .testimonials-container,
  .specs-container,
  .process-steps,
  .faq-container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
}

/* Fix feature section alignment */
.feature-item {
  gap: 30px;
}

.feature-item.left .feature-content,
.feature-item.right .feature-content {
  padding: 0 15px;
}

/* Modify this section to ensure consistent mobile layout */
@media screen and (max-width: 849px) {
  /* Fix feature items on mobile */
  .feature-item,
  .feature-item.right,
  .feature-item.left {
    flex-direction: column;
  }

  .feature-content {
    width: 100%;
    padding: 0;
    margin-bottom: 1.5rem;
    order: 1; /* Ensure content always comes first */
  }

  .feature-image {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
    order: 2; /* Ensure image always comes second */
  }

  .hero-image{
    width: 100%;
    height: auto;
    max-height: 250vw;
    object-fit: cover;
    object-fit: cover;
    margin-bottom: 1.5rem;
    content: url("fr/img/banners/BoreaMobileHeader.avif");
  }

  .scroll-indicator{
    bottom: 0rem;
  }

  .brochure-banner {
    margin: 2rem 1rem;
    width: fit-content;
    border-radius: 1rem ;
  }
   

  .left-section{
    padding: 1.3rem;
  }
}

/* Fix noise comparison markers */
.noise-marker {
  white-space: nowrap;
}

.marker-label,
.marker-value {
  white-space: nowrap;
  font-size: 0.75rem;
}

/* Fix product selector spacing */
.unit-option,
.indoor-option {
  padding: 1rem;
}

/* Fix testimonial cards */
.testimonial-card {
  height: auto;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.testimonial-author {
  margin-top: auto;
}

/* Fix announcement bar on mobile */
@media screen and (max-width: 600px) {
  .announcement-content p {
    font-size: 0.8rem;
  }

  .announcement-close {
    right: 5px;
  }

  /* Ensure all content is properly centered */
  body,
  html {
    width: 100%;
    overflow-x: hidden;
  }

  /* Fix hero badges on small screens */
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }

  .hero-badge {
    width: 85%;
    max-width: inherit;
    justify-content: center;
  }

  /* Fix CTA buttons on small screens */
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  .scroll-indicator{
    margin-bottom: 2rem;
  }
}

/* Fix specs section on mobile */
@media screen and (max-width: 768px) {
  .specs-grid {
    grid-template-columns: 1fr;
  }

  .spec-item {
    padding: 0.75rem;
  }

  /* Fix trust banner on mobile */
  .trust-banner {
    flex-direction: column;
    align-items: center;
  }

  .trust-feature {
    width: 100%;
    max-width: 300px;
  }

  .tech-comparison{
    padding: 0 1rem;
  }
}

/* Fix finance widget on mobile */
@media screen and (max-width: 768px) {
  .widget-inner {
    padding: 1.5rem;
  }

  .widget-inner h2 {
    font-size: 1.5rem;
  }

  .widget-section h3 {
    font-size: 1.2rem;
  }
}

/* Fix FAQ section on mobile */
@media screen and (max-width: 768px) {
  .faq-question h3 {
    font-size: 1rem;
    padding-right: 30px;
  }
}

/* Ensure all content is centered on all screen sizes */
@media screen and (max-width: 480px) {
  .container,
  .section,
  .banner,
  .content {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }

  /* Fix grid layouts on very small screens */
  .unit-options,
  .indoor-options,
  .rebates-content,
  .testimonials-container {
    grid-template-columns: 1fr;
  }
}

/* Animation for trust banner border */
@keyframes borderShift {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

/* Add these styles for the toast notification system */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: rgba(32, 152, 226, 0.9);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 300px;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.toast-message {
  flex: 1;
}

/* Add highlight animation for summary updates */
@keyframes highlight-pulse {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: rgba(32, 152, 226, 0.15);
  }
  100% {
    background-color: transparent;
  }
}

.highlight-pulse {
  animation: highlight-pulse 1.5s ease;
}

/* Add checkmark animation styles */
.checkmark-container {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.checkmark-container.show {
  opacity: 1;
  animation: fade-out 1.5s forwards;
}

.checkmark {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(32, 152, 226, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2098e2;
  font-weight: bold;
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Add styles for quantity button feedback */
.qty-btn {
  position: relative;
}

/* Make sure the summary section has a relative position for the highlight effect */
.summary-details,
.outdoor-summary,
.indoor-summary,
.summary-totals {
  position: relative;
}

/* Add a subtle transition to the summary elements for smoother updates */
#outdoor-model,
#outdoor-price,
#indoor-list,
#total-zones,
#total-capacity,
#total-price,
#monthly-payment {
  transition: color 0.3s ease;
}

/* Add a subtle pulse animation for the select-unit-btn */
@keyframes button-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.button-pulse {
  animation: button-pulse 0.5s ease;
}

/* Add styles for error toast */
.toast.error-toast {
  background: rgba(220, 53, 69, 0.9);
  color: white;
}

/* Add styles for compatibility info section */
.compatibility-info {
  background: rgba(32, 152, 226, 0.1);
  border: 1px solid rgba(32, 152, 226, 0.3);
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
  font-size: 0.9rem;
  display: none;
}

.compatibility-info h4 {
  color: #2098e2;
  margin-bottom: 10px;
  font-size: 1rem;
}

.compatibility-info ul {
  margin: 0;
  padding-left: 20px;
}

.compatibility-info ul ul {
  margin-top: 5px;
  margin-bottom: 5px;
}

.compatibility-info li {
  margin-bottom: 5px;
}

/* Add validation indicator styles */
.validation-indicator {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  font-size: 0.9rem;
}

.validation-indicator.valid {
  color: #28a745;
}

.validation-indicator.invalid {
  color: #dc3545;
}

.validation-icon {
  margin-right: 5px;
}

/* Pipe Length Section */
.pipe-length-units,
.connection-type {
  margin-bottom: 3rem;
  width: 100%;
}

.pipe-length-units h3,
.connection-type h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #2098e2;
}

.pipe-help,
.connection-help {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.pipe-options,
.connection-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  width: 100%;
}

.pipe-option,
.connection-option {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.connection-option{
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pipe-option:hover,
.connection-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pipe-option img,
.connection-option img {
  width: 60%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.unit-option h4,
.indoor-option h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.unit-option p,
.indoor-option p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.unit-price {
  font-weight: bold;
  color: #2098e2;
  font-size: 1.3rem !important;
  margin-bottom: 1rem;
}

.select-unit-btn {
  background: #2098e2;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.select-unit-btn:hover {
  background: #1a7cbd;
}

.select-connection-btn {
  background: #2098e2;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.select-connection-btn:hover {
  background: #1a7cbd;
}

.quantity-control {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.qty-btn {
  background: #eee;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background: #ddd;
}

.qty-input {
  width: 40px;
  text-align: center;
  border: 1px solid #eee;
  margin: 0 5px;
  padding: 5px 0;
  border-radius: 5px;
}

.pipe-qty-input{
  width: 40px;
  text-align: center;
  border: 1px solid #eee;
  margin: 0 5px;
  padding: 5px 0;
  border-radius: 5px;
}

.pipe-qty-btn:hover {
  background: #ddd;
}

.configuration-summary {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin-top: 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.configuration-summary h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #2098e2;
  line-height: normal;
}

.select-prompt {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
}

.summary-details {
  margin-top: 1.5rem;
  width: 100%;
}

.outdoor-summary,
.indoor-summary {
  margin-bottom: 1.5rem;
}

.outdoor-summary h4,
.indoor-summary h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #373737;
}

#indoor-list {
  list-style: none;
  margin-left: 1rem;
}

#indoor-list li {
  margin-bottom: 0.5rem;
}

.summary-totals {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  width: 100%;
  flex-wrap: wrap;
}

.capacity-info p {
  margin-bottom: 0.5rem;
}

.total-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2098e2;
  margin-bottom: 0.5rem;
}

.financing-option {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.financing-option span {
  font-weight: bold;
}

.add-cart-btn {
  background: #2098e2;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.add-cart-btn:hover {
  background: #1a7cbd;
}

.add-cart-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #111 0%, #222 100%);
  width: 100%;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2098e2;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
  width: 100%;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-rating {
  color: #ffc107;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.author-name {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.author-location {
  font-size: 0.9rem;
  color: #ccc;
}

/* Specs Section */
.specs-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #111 0%, #222 100%);
  width: 100%;
}

.specs-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: bold;
}

.specs-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  padding: 0 2rem;
  width: 100%;
}

.specs-column {
  flex: 1;
}

.specs-column h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #2098e2;
  text-align: center;
  font-weight: 600;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.spec-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.spec-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.spec-icon {
  width: 40px;
  height: 40px;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  margin-bottom: 0.75rem;
}

.spec-icon img {
  width: 100%;
  height: auto;
}

.spec-text p {
  margin: 0;
  font-size: 0.9rem;
}

.spec-text p:first-child {
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.specs-download {
  text-align: center;
  margin-top: 3rem;
}




/* Snipcart Customizations */
.snipcart-cart__content {
  background-color: #fff;
}

.snipcart-modal__container {
  background-color: rgba(0, 0, 0, 0.5);
}

.snipcart-cart-button--highlight {
  background: linear-gradient(135deg, #2098e2 0%, #0d6efd 100%) !important;
  color: white !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.snipcart-cart-button--highlight:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(32, 152, 226, 0.3) !important;
}

/* Fix for Snipcart loading state */
.snipcart-loading-overlay {
  z-index: 100000;
}

.snipcart-loading-overlay__pending {
  animation: snipcart-loading-spin 1s linear infinite;
}

@keyframes snipcart-loading-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Ensure Snipcart modal appears above other elements */
.snipcart-modal {
  z-index: 99999 !important;
}

/* Fix for Snipcart cart item display */
.snipcart-item-line {
  padding: 15px !important;
}

.snipcart-item-line__title {
  font-weight: 600 !important;
  color: #333 !important;
}

.snipcart-item-line__price {
  color: #2098e2 !important;
  font-weight: bold !important;
}
