@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
}

body {
  line-height: 1.5;
  background-color: #f5f5f5;
  padding: 20px;
}

.card-wrapper {
  max-width: 1100px;
  margin: auto;
  padding: 1rem;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-imgs {
  width: 100%;
}

.img-display {
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.img-showcase {
  display: flex;
  transition: all 0.5s ease;
}

.img-showcase img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
}

.img-select {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
}

.img-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
}

.img-item:hover {
  opacity: 0.8;
}

.product-content {
      padding: 1rem 2rem;
    }

    .product-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: #12263a;
    }

    .product-link-banner {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 1rem;
    }

    .product-link {
      font-size: 0.9rem;
      background-color: #256eff;
      color: #fff;
      padding: 0.4rem 1rem;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 4px;
      display: inline-block;
    }

    .coming-soon-tag {
      background-color: #ff4444;
      color: #fff;
      font-size: 0.7rem;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
    }

.product-rating {
  color: #ffc107;
  margin-bottom: 1rem;
}

.product-rating span {
  color: #252525;
  font-weight: 600;
}

.product-detail h2 {
  font-size: 1.4rem;
  color: #12263a;
  margin-bottom: 0.5rem;
}

.product-detail p {
  margin-bottom: 0.5rem;
  color: #444;
  font-size: 0.95rem;
}

.product-detail ul {
  list-style: none;
  padding-left: 1rem;
}

.product-detail ul li {
  margin: 0.4rem 0;
  font-weight: 600;
  position: relative;
  padding-left: 1.5rem;
}

.product-detail ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: green;
  font-size: 0.9rem;
}

.product-detail ul li span {
  font-weight: 400;
}

.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #12263a;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: #256eff;
}

/* --- RESPONSIVE FIXES --- */
@media (min-width: 768px) {
  .card {
    flex-direction: row;
  }

  .product-imgs,
  .product-content {
    width: 50%;
  }

  .product-content {
    padding: 2rem;
  }

  .img-showcase img {
    max-height: 500px;
  }
}
