/* Product Infographic Styles */
:root {
  --ig-primary: #ff6f00;   /* DropX Theme Color */
  --ig-secondary: #fff4e6; /* Soft Theme Background */
  --ig-dark: #2d3748;
  --ig-light: #f8fafc;
  --ig-border: #e2e8f0;
  --ig-green: #10b981;
  --ig-green-light: #d1fae5;
  --ig-red: #ef4444;
  --ig-red-light: #fee2e2;
  --ig-blue: #3b82f6;
  --ig-blue-light: #dbeafe;
}

.product-infographic {
  font-family: 'Montserrat', sans-serif;
  color: var(--ig-dark);
}

/* Hero Section */
.ig-hero {
  background: linear-gradient(135deg, var(--ig-primary), #ff9100);
  color: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(255, 111, 0, 0.2);
}

.ig-hero h3 {
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 24px;
  color: white;
}

.ig-hero p {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
  margin: 0;
  max-width: 800px;
  margin: 0 auto;
}

.ig-hero.theme-green {
  background: linear-gradient(135deg, #059669, #34d399);
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.2);
}

/* Base Grids */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.ig-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .ig-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.ig-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--ig-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ig-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.ig-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 15px;
  background: var(--ig-secondary);
  color: var(--ig-primary);
}

.ig-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ig-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Category Sections (for ingredients) */
.ig-category-wrapper {
  margin-bottom: 30px;
}

.ig-category-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ig-secondary);
}

.ig-category-title i {
  color: var(--ig-primary);
}

/* Tag Cloud */
.ig-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ig-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--ig-border);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ig-dark);
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
  transition: all 0.2s ease;
}

.ig-tag:hover {
  background: var(--ig-secondary);
  border-color: var(--ig-primary);
  color: var(--ig-primary);
  transform: translateY(-2px);
}

.ig-tag.theme-green:hover {
  background: var(--ig-green-light);
  border-color: var(--ig-green);
  color: var(--ig-green);
}

/* Dual Action Process Steps (Magcumin) */
.ig-process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--ig-border);
  margin-bottom: 30px;
}

.ig-process-step {
  text-align: center;
  flex: 1;
}

.ig-process-step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.ig-process-step.step-1 .ig-process-step-icon {
  background: var(--ig-blue-light);
  color: var(--ig-blue);
}

.ig-process-step.step-2 .ig-process-step-icon {
  background: var(--ig-red-light);
  color: var(--ig-red);
}

.ig-process-arrow {
  font-size: 24px;
  color: #cbd5e1;
}

.ig-process-step h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.ig-process-step p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

@media (max-width: 768px) {
  .ig-process {
    flex-direction: column;
  }
  .ig-process-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
}

/* Benefit Badges */
.ig-benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.ig-benefit-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ig-light);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  width: calc(33.333% - 10px);
  border-left: 4px solid var(--ig-primary);
}

.ig-benefit-badge.theme-green {
  border-left-color: var(--ig-green);
}

.ig-benefit-badge i {
  color: var(--ig-primary);
  font-size: 18px;
}

.ig-benefit-badge.theme-green i {
  color: var(--ig-green);
}

@media (max-width: 991px) {
  .ig-benefit-badge {
    width: calc(50% - 7.5px);
  }
}

@media (max-width: 576px) {
  .ig-benefit-badge {
    width: 100%;
  }
}

/* Final Summary Box */
.ig-summary-box {
  background: var(--ig-secondary);
  border-left: 5px solid var(--ig-primary);
  padding: 25px;
  border-radius: 0 12px 12px 0;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 30px;
}

.ig-summary-box.theme-green {
  background: var(--ig-green-light);
  border-left-color: var(--ig-green);
}
