/* hero section */
/* RESET */


/* HERO */
.hero-section {
  position: relative;
  height: 87vh;
  background: url("../assets/ProductpageBanner.webp") center/cover no-repeat;
  overflow: hidden;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* HERO TEXT */
.hero-content {
  position: absolute;
  right: 80px;
  bottom: 80px;
  z-index: 2;
  text-align: right;
}

.hero-content h1 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content {
    right: 24px;
    bottom: 40px;
  }

  .hero-content h1 {
    font-size: 26px;
  }
}

/* end hero section */
/* product section */
/* SECTION */
.product-section {
  background: #ffffff;
}

/* TITLE */
.product-title {
   font-family: 'Manrope', sans-serif;
  font-weight: 600;      /* Regular */
  font-size: 40px;
  line-height: 80px;
  letter-spacing: 0;
  color: #2E2E2E;
  /* margin-top: 80px; */
}

.product-card {
  background: #F8F8F8;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;

  aspect-ratio: 1 / 1;     /* ✅ makes card square */
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Image area */
.product-card img {
  width: 100%;
  height: auto;
  max-height: 70%;         /* ✅ keeps space for title */
  object-fit: contain;     /* ✅ no crop, no stretch */
}

/* TEXT */
.product-card p {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;      /* Regular */
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 0;
  color: #2E2E2E;
  margin: 0;
}

/* HOVER */
.product-card:hover {
  border: 1px solid transparent;
  border-radius: 12px;

  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #AF3C0E 0%, #FED866 100%) border-box;
    box-shadow: 0 12px 24px rgba(175, 60, 14, 0.15);
}

/* RESPONSIVE */
/* @media (max-width: 768px) {
  .product-card img {
    height: 120px;
  }
} */
/* end product section */


/*single product section */
   .variant-btn {
             border: none;
    padding: 8px 38px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 500;
    background: #F3E8D8;

;
    color: #2E2E2E;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Manrope', sans-serif;
    text-transform: capitalize;
  
  
        }

        .variant-btn.active {
            background-color: #ea7b4c;
            color: #fff;
             background-color: #ea7b4c;
    color: #fff;

    /* Shadow exactly like image */
 box-shadow: 0px 4px 4px 0px #00000040;
        }

        .product-image-wrapper {
            background: #f8f8f8;
            border-radius: 20px;
            padding: 30px;
        }

        .thumbnail {
            background: #f8f8f8;
            border-radius: 15px;
            padding: 10px;
            cursor: pointer;
        }

        .spec-title {
            font-family: 'Manrope', sans-serif;
             font-weight: 500;
            color: #AF3C0E;
            font-size: 18px;
            line-height: 56px;
        }

        .spec-value {
            font-family: 'Manrope', sans-serif;
             font-weight: 500;
            color: #2E2E2E;
            font-size: 18px;
            line-height: 32px;
        }

        .btn-quote {
            font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 400;
  background: #b34716;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 15px;
  margin-top: 25px;
  outline: 1px solid #AF3C0E;
    outline-offset: 2px;
}
        

        .btn-quote:hover {
            background-color: #9f3f1b;
            color: #fff;
        }



        .additional-toggle {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    border: none;
    background: none;
}

.additional-toggle .arrow {
    transition: transform 0.25s ease;
    font-size: 18px;
}

/* Rotate arrow when collapsed */
.additional-toggle.collapsed .arrow {
    transform: rotate(180deg);
}

/* Titles in orange */
.info-title {
    color: #AF3C0E;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 6px;
}

/* Values */
.info-value {
    font-size: 18px;
    color: #333;
}
.thick-chevron {
    font-size: 22px;        /* size */
    transform: scale(1.2); /* makes it look thicker */
}
.variant-group {
  display: flex;
  flex-wrap: wrap;      /* 👈 allows next line */
  gap: 12px;
}

.variant-btn {
  white-space: nowrap; /* keeps text in one line */
}



/* ================= HERO + PRODUCT – SMALL DEVICES ================= */
@media (max-width: 768px) {

  /* HERO */
  .hero-section {
    height: 60vh;
  }

  .hero-content {
    right: 16px;
    bottom: 32px;
    text-align: left;
  }

  .hero-content h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  /* PRODUCT SECTION */
  .product-title {
    font-size: 24px;
    line-height: 34px;
    margin-top: 40px;
    text-align: center;
  }

  .product-card {
    padding: 18px 14px;
  }

  /* .product-card img {
    height: 110px;
  } */

  .product-card p {
    font-size: 14px;
    line-height: 22px;
  }

  /* VARIANTS */
  .variant-group {
    justify-content: center;
    gap: 10px;
  }

  .variant-btn {
    padding: 8px 20px;
    font-size: 14px;
  }

  /* SINGLE PRODUCT IMAGE */
  .product-image-wrapper {
    padding: 16px;
    border-radius: 16px;
  }

  .thumbnail {
    padding: 8px;
    border-radius: 12px;
  }

  /* SPEC TEXT */
  .spec-title {
    font-size: 13px;
  }

  .spec-value {
    font-size: 14px;
  }

  /* INFO BLOCK */
  .info-title {
    font-size: 13px;
  }

  .info-value {
    font-size: 14px;
  }

  /* TOGGLE */
  .additional-toggle {
    font-size: 15px;
  }

  .additional-toggle .arrow {
    font-size: 16px;
  }

  .thick-chevron {
    font-size: 18px;
  }

  /* BUTTON */
  .btn-quote {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    text-align: center;
  }

}


#thumbnailWrapper {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

#thumbnailWrapper .thumbnail {
  flex: 0 0 auto;   /* prevents stretching */
  width: 90px;      /* thumbnail width */
  height: 90px;     /* thumbnail height */
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

#thumbnailWrapper .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
