/* Wholesale / B2B Page */
.wholesale-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 248, 0.9) 100%);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.wholesale-content h2 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #ff8c69;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(255, 140, 105, 0.2);
}

.wholesale-intro {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #4a7b78;
}

.wholesale-section {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 2px solid rgba(255, 154, 118, 0.15);
}

.wholesale-section:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
}

.wholesale-section h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #5ebdb8;
}

.wholesale-categories {
  display: grid;
  gap: 12px;
}

.category-card {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: linear-gradient(135deg, #fff5eb 0%, #f0f9f8 100%);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.category-icon {
  font-size: 32px;
  min-width: 40px;
  text-align: center;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.category-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #5ebdb8;
}

.category-info p {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 8px;
  color: #5a9997;
}

.pricing-info {
  font-size: 12px;
  color: #ff8c69;
  font-weight: 600;
}

.pricing-tiers {
  display: grid;
  gap: 12px;
}

.tier-card {
  background: linear-gradient(135deg, #fff5eb 0%, #f0f9f8 100%);
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.tier-card.featured {
  border-color: #ff8c69;
  box-shadow: 0 4px 12px rgba(255, 154, 118, 0.2);
}

.tier-header {
  background: linear-gradient(135deg, #ff9a76 0%, #ffd89b 100%);
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tier-name {
  font-size: 16px;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.tier-discount {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.tier-details {
  padding: 15px;
}

.tier-requirement {
  font-size: 14px;
  font-weight: 700;
  color: #5ebdb8;
  margin-bottom: 10px;
}

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tier-features div {
  font-size: 13px;
  color: #5a9997;
  line-height: 1.5;
}

.order-info-grid {
  display: grid;
  gap: 12px;
}

.info-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: linear-gradient(135deg, #fff5eb 0%, #f0f9f8 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.info-icon {
  font-size: 24px;
  min-width: 30px;
  text-align: center;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.info-content strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #5ebdb8;
  margin-bottom: 3px;
}

.info-content p {
  font-size: 13px;
  color: #5a9997;
  line-height: 1.4;
  margin: 0;
}

.testimonials {
  display: grid;
  gap: 12px;
}

.testimonial-card {
  background: linear-gradient(135deg, #fff5eb 0%, #f0f9f8 100%);
  padding: 15px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial-quote {
  font-size: 14px;
  line-height: 1.6;
  color: #4a7b78;
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author strong {
  font-size: 14px;
  font-weight: 700;
  color: #5ebdb8;
}

.testimonial-author span {
  font-size: 12px;
  color: #5a9997;
}

/* Responsive */
@media (min-width: 768px) {
  .pricing-tiers {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .order-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .wholesale-content {
    padding: 40px;
  }
}