/* PRODUCT DETAIL PAGE */

/* NEW PRODUCT PAGE STYLE – Clean Modern Layout */
body {
  font-family: 'Saira', sans-serif;
}
/* .new-product-section {
  width: 100%;
  padding: 60px 20px;
  background: #fafafa;

} */

.new-product-section {
  background-color: #f6f6f6;
  background-image:
    repeating-radial-gradient(circle at 0 0,
       rgba(200,0,0,0.08),
      rgba(200,0,0,0.05) 1px,
      transparent 1px,
      transparent 40px);
      padding: 60px 20px;
}

/* .new-product-section {
  background-color: #f7f7f7;
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
} */






/* Top layout */
.new-product-container {
  max-width: 1250px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

/* Product image */
.new-product-main-image {
  flex: 1;
  background: #f1f1f1;
  padding: 20px;
  border-radius: 12px;
  margin-top: 40px;
  
}

.new-product-main-image img {
  width: 100%;
  border-radius: 12px;
  max-height: 500px;
  object-fit: contain;
}

/* Right side information */
.new-product-info {
  flex: 1;
  text-align: left;
}

.np-title {
  font-size: 42px;
  font-weight: 700;
  color: #b31313;
}

.np-subtitle {
  font-size: 20px;
  color: #444;
  margin-top: 8px;
}

/* Icon Features */
.np-feature-icons {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.np-icon-box {
  background: #fff;
  padding: 18px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
}

.np-icon-box i {
  font-size: 26px;
  color: #b31313;
}

.np-icon-box p {
  margin-top: 4px;
  font-size: 14px;
}

/* Usage Image */
.np-usage-image {
  max-width: 1200px;
  margin: 50px auto;
}

.np-usage-image img {
  width: 100%;
  border-radius: 14px; 
  max-height: 320px;
  object-fit: contain;
}

/* 2 Column grid */
.np-details-grid {
  max-width: 1200px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.np-description h3,
.np-applications h3 {
  margin-bottom: 15px;
}

.np-details-grid h3 {
  color: #b31313;
  font-size: 24px;
  margin-bottom: 10px;
}

/* PRODUCT FEATURES — IMAGE PERFECT */
.np-features {
  text-align: center;
}

.np-features h3 {
  color: #b31313;
  font-size: 28px;
  margin-bottom: 25px;
  margin-left: -130px;
}

.np-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 420px;
}

.np-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 17px;
  color: #222;
  text-align: left;
}

.np-feature-list li::before {
  content: "✓";
  color: #b31313;
  font-weight: bold;
  font-size: 18px;
  min-width: 22px;
}

/* 2 Column grid */


/* Applications */
.np-applications {
  max-width: 1200px;
  margin: 0;
}

.np-applications h3 {
  color: #b31313;
  font-size: 24px;
  margin-bottom: 20px;
}

.np-app-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.np-app-box {
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
}

.np-app-box i {
  font-size: 28px;
  color: #b31313;
}

/* CTA */
.np-center {
  text-align: center;
  margin-top: 40px;
}

.np-btn {
  background: #b31313;
  color: #fff;
  padding: 15px 40px;
  border-radius: 8px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.np-btn:hover {
  background: #8b0f0f;
}
/* FORCE Product Description LEFT ALIGN */
.new-product-info .np-description {
  text-align: left !important;
  margin-top: 25px;
}

.new-product-info .np-description h3 {
  text-align: left;
}

.new-product-info .np-description p {
  text-align: left;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .np-details-grid {
    grid-template-columns: 1fr;
  }
}

#product-description {
  text-align: left !important;
  margin-left: 0;
  margin-right: 0;
}