
.pl-section {
  padding: 80px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
}

.pl-container {
  max-width: 1200px;
  margin: auto;
}

.pl-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.pl-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
  font-size: 15px;
}

/* ===== LABEL TYPES ===== */
.pl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 80px;
}

.pl-card {
  border: 1px solid #eee;
  padding: 25px;
  transition: all 0.3s ease;
  background: #fafafa;
}

.pl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.pl-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
}

.pl-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.pl-card p {
  font-size: 14px;
  color: #666;
}

/* ===== PACKAGING ===== */
.pl-packaging {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.pl-pack-card {
  position: relative;
  overflow: hidden;
}

.pl-pack-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.pl-pack-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
}

.pl-pack-overlay h3 {
  margin-bottom: 5px;
}

/* ===== PROCESS ===== */
.pl-process {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.pl-step {
  width: 18%;
  text-align: center;
}

.pl-step-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.pl-step h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.pl-step p {
  font-size: 13px;
  color: #666;
}

/* ===== CTA ===== */
.pl-cta {
  text-align: center;
}

.pl-cta a {
  display: inline-block;
  padding: 14px 36px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.pl-cta a:hover {
  background: #444;
}

/* ===== MOBILE ===== */
@media(max-width:768px){
  .pl-grid {grid-template-columns:1fr;}
  .pl-packaging {grid-template-columns:1fr;}
  .pl-step {width:100%; margin-bottom:20px;}
}
