/* ========== SẢN PHẨM PAGE STYLES ========== */

/* ========== PRODUCT INTRO ========== */
.product-intro {
  background: #e8f0e5;
}

.product-intro__box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1.5rem;
}

.product-intro__title {
  color: #2f6f44;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.product-intro__text {
  color: #999;
  font-family: 'Crimson Text', 'Times New Roman', serif;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 400;
  font-style: normal;
}

.text-line {
  margin-bottom: 0.2rem;
}

.text-line-1,
.text-line-2,
.text-line-3,
.text-line-4,
.text-line-5 {
  text-indent: 0;
}

.product-intro__btn {
  display: inline-block;
  padding: 0.75rem 3rem;
  background: #2f6f44;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.product-intro__btn:hover {
  background: #1f4f2f;
  color: #fff;
}

@media (max-width: 767.98px) {
  .product-intro__title {
    font-size: 1.4rem;
  }
  .product-intro__text {
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.7;
  }
}

/* ========== PRODUCT SECTION ========== */
.product-section {
  background: #fff;
}

.product-section:nth-child(even) {
  background: #f9f9f9;
}

.product-section__title {
  text-align: center;
  color: #2f6f44;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

/* ========== PRODUCT ITEM ========== */
.product-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-item__img-wrap {
  width: 100%;
  height: 280px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.product-item:hover .product-item__img {
  transform: scale(1.05);
}

.product-item__info {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-item__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
  flex: 1;
}

.product-item__name {
  color: #2f6f44;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.product-item__name a {
  color: #2f6f44;
  text-decoration: none;
}

.product-item__name a:hover {
  color: #2f6f44;
  text-decoration: none;
}

.product-item__meta {
  color: #888;
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.4;
}

.product-item__price {
  color: #7a4b12;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.product-item__btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: #7a4b12;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.product-item__btn:hover {
  background: #5a3509;
  color: #fff;
}

@media (max-width: 767.98px) {
  .product-item__img-wrap {
    height: 220px;
  }
  .product-item__name {
    font-size: 1rem;
  }
  .product-item__price {
    font-size: 0.9rem;
  }
}

/* ========== SHOP BUTTON ========== */
.shop-btn {
  display: inline-block;
  padding: 0.75rem 4rem;
  background: #7a4b12;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  transition: background 0.3s ease, transform 0.3s ease;
}

.shop-btn:hover {
  background: #5a3509;
  color: #fff;
  transform: scale(1.05);
}

@media (max-width: 767.98px) {
  .shop-btn {
    padding: 0.65rem 3rem;
    font-size: 1rem;
  }
}
