

/* ===== INTRO SECTION ===== */
.products-intro {
  padding: 60px 0;
  background: var(--gray-50);
  text-align: center;
}
.products-intro .section-header {
  max-width: 800px;
  margin: 0 auto;
}
.products-intro h2 {
  font-family: var(--heading);
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
}
.products-intro p {
  color: var(--gray-600);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ===== PRODUCTS GRID ===== */
.products-section {
  padding: 80px 0;
  background: #fff;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* PRODUCT CARD (Simplified & Full) */
.product-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s; scroll-margin-top: 100px; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-bottom-color: var(--gold); }
.product-img { width: 100%; height: 280px; object-fit: cover; border-bottom: 1px solid var(--gray-200); }
.product-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.product-content h3 { font-family: var(--heading); font-size: 1.6rem; color: var(--primary-dark); margin-bottom: 12px; }
.product-content p { color: var(--gray-700); margin-bottom: 20px; line-height: 1.6; }
.product-specs { background: var(--cream); padding: 16px; border-radius: 8px; margin-bottom: 24px; font-size: 0.9rem; color: var(--gray-700); }
.product-specs ul { list-style: none; padding: 0; margin: 0; }
.product-specs li { padding: 4px 0; border-bottom: 1px dashed rgba(0,0,0,0.1); display: flex; justify-content: space-between; }
.product-specs li:last-child { border-bottom: none; }
.product-specs strong { color: var(--dark); }
.product-btn { margin-top: auto; }

.product-card-sm {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card-sm:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-color: var(--primary-light);
}
.pcs-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--gray-100);
}
.pcs-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card-sm:hover .pcs-img-wrap img {
  transform: scale(1.05);
}
.pcs-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.pcs-title {
  font-family: var(--heading);
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 700;
}
.pcs-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}
.btn-outline-primary {
  display: inline-block;
  padding: 10px 0;
  width: 100%;
  border: 1px solid var(--primary-dark);
  color: var(--primary-dark);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: var(--transition);
}
.btn-outline-primary:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* ===== DROPDOWN NAV STYLES (Added globally later, but safe to keep here for now) ===== */
.nav-item-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  color: var(--gray-600) !important;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}
.dropdown-menu a:hover {
  background: var(--gray-50);
  color: var(--primary-dark) !important;
  padding-left: 24px;
}

/* ===== CUSTOM PACKAGING ===== */
.packaging-cta {
  background: #fdfaf3;
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid rgba(200, 180, 140, 0.2);
}
.packaging-cta h2 {
  font-family: var(--heading);
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 16px;
}
.packaging-cta p {
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* ===== INQUIRY CTA ===== */
.final-cta {
  background: var(--primary-dark);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}
.final-cta h2 {
  font-family: var(--heading);
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.final-cta p {
  color: rgba(255,255,255,0.8);
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.7;
  font-size: 1.05rem;
}

@media (max-width: 640px) {
  .products-intro h2, .packaging-cta h2, .final-cta h2 { font-size: 1.8rem; }
  .packaging-cta, .final-cta { padding: 60px 0; }
  .products-section { padding: 60px 0; }
}
