.sedcard-data-display {
	margin-top: 3rem;
	background: #f9f9f9;
	border-radius: 8px;
	padding: 2rem;
}

.sedcard-section {
	background: #fff;
	border-radius: 6px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.sedcard-section:last-child {
	margin-bottom: 0;
}

.sedcard-section h3 {
	margin: 0 0 1rem 0;
	color: #333;
	font-size: 1.3em;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	border-bottom: 2px solid #f0f0f0;
	padding-bottom: 0.5rem;
}

.sedcard-section h3 .dashicons {
	color: #e91e63;
	font-size: 1.2em;
}

/* Details Grid */
.sedcard-details-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
}

.detail-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem;
	background: #f8f8f8;
	border-radius: 4px;
}

.detail-icon {
	font-size: 1.3em;
}

.detail-label {
	font-weight: 600;
	color: #666;
}

.detail-value {
	color: #333;
	margin-left: auto;
}

/* Service Badges */
.service-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.service-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	border-radius: 20px;
	font-weight: 500;
	font-size: 0.95em;
}

/* Language & Category Tags */
.language-tags,
.category-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.language-tag,
.category-tag {
	display: inline-block;
	padding: 0.4rem 0.9rem;
	background: #e3f2fd;
	color: #1976d2;
	border-radius: 15px;
	font-size: 0.9em;
	font-weight: 500;
}

.category-tag {
	background: #fff3e0;
	color: #f57c00;
}

/* Location Info */
.location-info p {
	margin: 0.5rem 0;
	color: #555;
}

.location-info strong {
	color: #333;
}

/* Contact Methods */
.contact-methods {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.contact-method {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1rem;
	background: #4caf50;
	color: #fff;
	border-radius: 20px;
	font-weight: 500;
	font-size: 0.95em;
}

/* WhatsApp-spezifisch: Grüner Hintergrund + SVG-Icon */
.contact-whatsapp .sedcard-whatsapp-link {
	color: #fff;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.sedcard-whatsapp-link .whatsapp-icon {
	display: inline-flex;
	align-items: center;
}

.sedcard-whatsapp-svg {
	display: inline-block;
	vertical-align: middle;
}

/* Price List */
.price-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
}

.price-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 1rem;
	background: #f1f8e9;
	border-left: 4px solid #8bc34a;
	border-radius: 4px;
}

.price-duration {
	font-weight: 500;
	color: #558b2f;
}

.price-amount {
	font-weight: 700;
	color: #33691e;
	font-size: 1.1em;
}

/* Price Notes */
.price-notes-content {
	color: #555;
	line-height: 1.6;
}

/* Service Notes */
.service-notes {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.note-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.6rem 1.2rem;
	border-radius: 20px;
	font-weight: 600;
	font-size: 0.95em;
}

.note-badge.safe {
	background: #e8f5e9;
	color: #2e7d32;
	border: 2px solid #4caf50;
}

.note-badge.on-request {
	background: #fff3e0;
	color: #e65100;
	border: 2px solid #ff9800;
}

/* Responsive */
@media (max-width: 768px) {
	.sedcard-data-display {
		padding: 1rem;
	}

	.sedcard-section {
		padding: 1rem;
	}

	.sedcard-details-grid {
		grid-template-columns: 1fr;
	}

	.price-list {
		grid-template-columns: 1fr;
	}
}