/* Order Pack Photo - Front office (customer) styles */

.opp-customer-card {
  border: 1px solid #e0e0e0;
  border-left: 4px solid #e60000;
  border-radius: 8px;
  overflow: hidden;
}

.opp-customer-card .card-header {
  background: #fafafa;
  border-bottom: 1px solid #e0e0e0;
  padding: 16px 20px;
}

.opp-customer-card .card-header h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #222;
}

.opp-customer-card .opp-intro {
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.opp-customer-card .opp-photo-wrapper {
  text-align: center;
}

.opp-customer-card .opp-photo {
  max-width: 100%;
  max-height: 320px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease;
}

.opp-customer-card .opp-photo:hover {
  transform: scale(1.02);
}

.opp-customer-card .opp-info {
  padding: 12px 8px;
}

.opp-customer-card .opp-weight,
.opp-customer-card .opp-date {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.opp-customer-card .opp-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 2px;
}

.opp-customer-card .opp-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e60000;
}

.opp-customer-card .opp-detail {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.opp-customer-card .opp-value-sm {
  font-size: 0.95rem;
  font-weight: 500;
  color: #222;
}

.opp-customer-card .opp-trust {
  font-size: 0.85rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  padding: 8px 12px;
  border-radius: 6px;
  margin-top: 12px;
}

@media (max-width: 575px) {
  .opp-customer-card .opp-photo {
    max-height: 260px;
  }
  .opp-customer-card .opp-info {
    margin-top: 16px;
  }
}
