body {
  background: #f8f7f3;
}

/* Product Container */
.product-container {
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 20px 80px;
}

/* Product Card */
.product-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Left: Image */
.product-card-image {
  position: relative;
  width: 100%;
  height: 850px;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card-image:hover .product-image {
  transform: scale(1.05);
}

.image-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #1d3928;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  z-index: 2;
}

/* Right: Content */
.product-card-content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-name {
  font-size: 48px;
  font-weight: 700;
  color: #1d3928;
  margin: 0 0 10px;
}

.product-hscode {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.product-hscode span {
  font-weight: 600;
  color: #1d3928;
}

/* Table */
.product-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 30px;
}

.product-table th,
.product-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #e8e5dc;
}

.product-table th {
  background: #f8f7f3;
  font-weight: 600;
  color: #1d3928;
  width: 35%;
  font-size: 15px;
}

.product-table td {
  color: #333;
  font-size: 15px;
}

.product-table tr:last-child th,
.product-table tr:last-child td {
  border-bottom: none;
}

/* CTA Button */
.cta-container {
  margin-top: 20px;
}

.cta-btn {
  display: inline-block;
  background: #1d3928;
  color: #fff;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(29, 57, 40, 0.3);
}

.cta-btn:hover {
  background: #2a523a;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(29, 57, 40, 0.4);
}

.cta-btn i {
  margin-left: 10px;
}

/* Mobile */
@media (max-width: 968px) {
  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card-image {
    height: 400px;
  }

  .product-image {
    height: 400px;
  }

  .product-card-content {
    padding: 30px;
  }

  .product-name {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .product-container {
    margin: 40px auto;
    padding: 0 15px 60px;
  }

  .product-card-image {
    height: 300px;
  }

  .product-image {
    height: 300px;
  }

  .product-name {
    font-size: 28px;
  }

  .product-card-content {
    padding: 20px;
  }

  .product-table th,
  .product-table td {
    padding: 12px 15px;
    font-size: 14px;
  }

  .cta-btn {
    padding: 15px 30px;
    font-size: 16px;
    width: 100%;
    text-align: center;
  }
}

/* ==================================
     For IMAGE SWIPPER AND Zooming  START
===================================== */

.product-gallery {
  max-width: 560px;
  margin: 20px auto;
}

.main-frame {
  position: relative;
  width: 100%;
  height: 500px;
  background: #f4f4f4;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-frame img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  cursor: zoom-in;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-size: 22px;
  color: #333;
  z-index: 2;
}

.prev-btn {
  left: 15px;
}

.next-btn {
  right: 15px;
}

.thumbs {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.thumb {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  padding: 3px;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.thumb.active {
  border-color: #d9b45a;
}

/* .lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
} */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 0;
}

/* .lightbox.show {
  display: flex;
} */

.lightbox.show {
  display: flex;
}

/* .lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
} */

.lightbox img {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

/* .close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
  line-height: 1;
} */

.close-btn {
  position: fixed;
  top: 20px;
  right: 25px;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
  line-height: 1;
  z-index: 100000;
}

@media (max-width: 768px) {
  .main-frame {
    height: 360px;
  }

  .thumb {
    width: 64px;
    height: 64px;
  }
}

/* ==================================
     For IMAGE SWIPPER AND Zooming  END 
===================================== */

/* Fpor Baner  */
.page-banner {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.banner-image {
  position: relative;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: relative;
  z-index: 2;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
}
