body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #222;
}

/* Section */
.product-section {
  padding: 60px 20px;
  max-width: 1300px;
  margin: auto;
}

/* Heading */
.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
  background: linear-gradient(to right, #111, #555);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.product-card {
  padding: 32px 20px;
  background: linear-gradient(to bottom, #ffffff, #eaeaea);
  border: 1px solid #8f8f8f79;
  border-radius: 14px;
  text-align: center;
  transition: all 0.5s ease;
}

.product-card:hover {
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.15);
}

/* Image */
.product-img {
  width: 220px;
  height: 220px;
  margin: auto;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Name */
.product-card h2 {
  font-size: 22px;
  margin: 20px 0;
  font-weight: 600;
}

/* Button */
.product-card a {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(to right, #000000, #4ea0ff);
  transition: all 0.4s ease;
}

.product-card a:hover {
  filter: brightness(1.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }
}

.product-desc {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.toggle-text {
  color: #0077ff;
  font-weight: 600;
  cursor: pointer;
}

.toggle-text:hover {
  text-decoration: underline;
}
