body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Hero Banner */

.hero-banner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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



.product-detail {
  max-width: 1100px;
  margin: 40px auto;
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-header {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.product-image-wrapper {
  text-align: center; /* Centers everything inside */
  max-width: 500px; /* Optional: limit width */
  margin: auto; /* Centers the wrapper */
}

.product-image {
  max-width: 100%;
  height: auto;
}

.product-info {
  flex: 1 1 50%;
}

.product-info h1 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #222;
}

.rating {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
}

.rating .star {
  color: #f4b400;
  font-size: 18px;
  margin-right: 5px;
}

.rating a {
  color: #0077cc;
  text-decoration: none;
}

.features {
  list-style-type: disc;
  margin: 10px 0 20px 20px;
  padding: 0;
}

.price {
  font-size: 22px;
  font-weight: bold;
  color: #222;
  margin-bottom: 5px;
}

.price span {
  display: block;
  font-size: 14px;
  color: #666;
  font-weight: normal;
}

.finance {
  font-size: 15px;
  color: #444;
  margin: 10px 0 20px;
}

.finance a {
  color: #0077cc;
  text-decoration: none;
}

.enquiry-btn {
  display: inline-block;
  background-color: #d50032;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.enquiry-btn:hover {
  background-color: #b8002a;
}

.offer-note {
  margin-top: 15px;
  font-size: 15px;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .product-header {
    flex-direction: column;
  }

  .product-image-wrapper,
  .product-info {
    flex: 1 1 100%;
  }

  .product-info h1 {
    text-align: center;
  }

  .enquiry-btn {
    width: 100%;
    text-align: center;
    padding: 14px;
  }
}

.specs-features-section {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  max-width: 900px;
  margin: 40px auto;
  font-family: 'Arial', sans-serif;
}

.specs-features-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.tabs {
  display: flex;
  border-bottom: 2px solid #eee;
  margin-bottom: 16px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active {
  border-bottom: 3px solid #e53935;
  color: #000;
  font-weight: 700;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 80px; /* control row and column spacing */
  max-width: 700px;
  margin: 20px;
}

.spec-item {
  display: flex;
  align-items: center;
}

.spec-item i {
  margin-right: 10px; /* adjust icon-to-text spacing */
  font-size: 18px;
  color: #333;
  min-width: 20px; /* prevent misalignment */
}

.spec-item label {
  font-weight: 500;
  color: #555;
  flex: 1;
}

.spec-item span {
  font-weight: 700;
  color: #000;
}

.features-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 10px;
  column-gap: 20px;
}

.features-list li {
  position: relative;
  padding-left: 24px;
  color: #333;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #26a69a;
  font-weight: bold;
}

.view-more {
  display: inline-block;
  margin-top: 20px;
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}

/* Product color Palate */

.color-options {
  margin-top: 10px;
}

#color-name {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.color-options h3 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 12px;
}

.color-palette {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.color-circle {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s ease;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}


.color-circle:hover {
  border: 2px solid #555;
}

.color-circle.active {
  border: 2px solid #000; /* Active selection */
}


/* New product page */

.product-preview-box {
  padding: 40px;
  background: #f8f8f8;
  border-radius: 20px;
  margin: 40px 0;
}

.section-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 25px;
}

.product-tabs {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
  border-bottom: 2px solid #ddd;
}

.tab-btn {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 15px;
  position: relative;
  color: #333;
}

.tab-btn.active {
  color: #e60000;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  height: 3px;
  background: #e60000;
  bottom: -2px;
  left: 0;
  right: 0;
}

.product-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.product-card {
  width: calc(25% - 20px);
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.product-card img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.product-card h3 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
}

.view-more {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 18px;
  border: 2px solid #e60000;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.view-more:hover {
  background: #e60000;
  color: #fff;
}


.product-preview-box {
  padding: 40px;
  background: #ffffff;
  border-radius: 20px;
  margin: 40px 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-card .price {
  font-size: 16px;
  color: #555;
  margin: 6px 0 10px;
  font-weight: 500;
}


@media screen and (max-width: 991px) {
  .product-card {
    width: calc(50% - 20px);
  }
}

@media screen and (max-width: 600px) {
  .product-card {
    width: 100%;
  }

  .product-tabs {
    flex-wrap: wrap;
    gap: 15px;
  }

  .product-preview-box {
    margin: 0px;
  }
}

.color-circle.active { outline: 2px solid #333; outline-offset: 2px; }


