*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
.product-banner .custom-container {
    position: relative;
    z-index: 1;
}
.topLogo {
    max-width: 322px;
    margin: 0 auto;
}
h1, h2, h3, h4, h5, h6, p {
	margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
	:root {
		scroll-behavior: smooth;
	}
}

body {
	margin: 0;
	font-family: "Montserrat", sans-serif;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.f60 {
	font-size: 60px;
	font-weight: 900;
	line-height: normal;
}

.f42 {
	font-size: 42px;
	font-weight: 700;
}

.f25 {
	font-size: 25px !important;
	font-weight: 700;
}

.f20 {
	font-size: 20px !important;
	font-weight: 700;
}

.f14 {
	font-size: 14px;
	font-weight: 900;
}

img {
	max-width: 100%;
	width: 100%;
}

.text-uppercase {
	text-transform: uppercase;
}

.bottom-content {
	text-align: center;
}
/* margin class */
.mt-20 {
	margin-top: 20px;
}

.mt-30 {
	margin-top: 30px;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mt-40 {
	margin-top: 40px;
}

.them-text {
	font-size: 14px;
	font-weight: 400;
}

.txt-red {
	color: #c22929 !important;
}

 

.text-capitalize {
	text-transform: capitalize;
}
 
.btn {
	border-radius: 3px;
	border: 2px solid #c22929;
	color: #fff;
	font-size: 13px;
	letter-spacing: .5px;
	text-transform: uppercase;
	padding: 15px 37px;
	-webkit-transition: .3s;
	transition: .3s;
	outline: none;
	display: inline-block;
	text-decoration: none;
	font-weight: 800;
}

.btn.btn-fill {
	border: 2px solid #c22929 !important;
	background: #c22929  !important;
	color: #fff !important;
}

.btn:hover {
	background-color: rgba(194, 41, 41, .2);
	color: #fff;
}

.btn.btn-fill:hover {
	background: white  !important;
	color: #c22929  !important;
}


img{
max-width: 100%;
width: 100%;
}
 
    /* Banner */
.product-banner {
  background: url('../images/banner-img.webp') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 150px 20px;
  position: relative;
  border-bottom: 1px solid #dee2e6;
  margin-top: 100px;
}
.product-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.product-banner h1, .product-banner p {
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Product Section */
.product-img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  /*box-shadow: 0 8px 20px rgba(0,0,0,0.2);/*/
  transition: transform 0.3s;
}
.product-img:hover {
  transform: scale(1.02);
}
.thumbnail-img {
  width: 70px;
  height: 70px;
  cursor: pointer;
  border-radius: 10px;
  margin-right: 10px;
  transition: transform 0.3s, border 0.3s;
  border: 2px solid transparent;
}
.thumbnail-img:hover, .thumbnail-img.active {
  transform: scale(1.1);
  border: 2px solid #c22929; /* Red accent */
}

 
 
 /* Related Products Cards */
.text-center{
    text-align: center;
}
.head-wrap {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.related-card {
    background-color: #dc354529;
    border: 2px solid #c22929;
    padding: 35px;
    border-radius: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s;
    margin-bottom: 25px;
}

.related-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.related-products .related-img {
  width: 100%;
  border-radius: 10px;
  object-fit: contain; /* keeps transparency intact */
  transition: transform 0.5s ease; /* smooth scale */
}

.related-card:hover .related-img {
  transform: scale(1.1); /* image scales up inside the box */
}

.related-products .related-name {
  margin-top: 10px;
  font-weight: 500; 
}


/* Make entire card clickable */
.related-link {
  display: block;
  text-decoration: none;
  color: inherit; /* keeps text color */
  transition: transform 0.3s;
}

 

.related-link:hover .f20 {
  color: #dc3545; /* optional hover color for text */
}



 
 
.specs li {
  margin-bottom: 0.7rem;
  /*font-size: 1rem;*/
}

/* Related Products */
.related-products img {
  border-radius: 12px;
  transition: transform 0.3s;
  width: 100%;
  object-fit: cover;
}
.related-products img:hover {
  transform: scale(1.05);
}

/* FAQ Section */
/* FAQ Section */
 

.faq-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}
.faq-section h3 {
    text-align: center;
}

.faq-item {
  border-radius: 0px;
  overflow: hidden;
  /*box-shadow: 0 5px 15px rgba(0,0,0,0.05);*/
  transition: all 0.3s ease;
  background-color: #fff;
}

/* Question */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.3s, color 0.3s;
    background-color: #171a1e;
    color: white;
    border-radius: 0;
}

.faq-question:hover {
  background-color: #171a1e;
}

/* Active FAQ */
.faq-question.active {
  background-color: #c22929;
  color: #fff;
}

/* Chevron icon */
.faq-question i {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px; 
  color: #555;
  background-color: #fff;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.show {
  padding: 15px 20px;
}
.faq-item.active .faq-answer {
    padding: 20px;
    min-height: 57px !important;
}

.faq-item.active {
  background-color: #fff0f0; /* optional: highlight whole item */
  border: 1px solid #c229295; /* red border for active */
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .thumbnail-img {
    width: 60px;
    height: 60px;
  }
  .f28 { font-size: 24px; } 
  .related-card { 
    border: 1px solid #c22929;
    padding: 20px;
    border-radius: 8px; 
    margin-bottom: 15px;
}
.productImg {
    height: 297px;
}
/*.flexRef{*/
/*    flex-direction: column-reverse;*/
/*}*/


.product-banner { 
    padding:76px 20px 100px;  
}
.topLogo {
    max-width: 213px; 
}
}

 
 