/**
 * Frontend Styles for Santanyi Flohmarkt Blocks
 */

/* Preis Block Styles */
.santanyi-price-block {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	margin: 15px 0;
}

.santanyi-price-block .santanyi-current-price {
	font-size: 24px;
	font-weight: bold;
	color: #333;
	margin-bottom: 8px;
}

.santanyi-price-block .santanyi-original-price {
	font-size: 16px;
	color: #666;
	text-decoration: line-through;
	margin-bottom: 5px;
}

.santanyi-price-block .santanyi-savings {
	font-size: 16px;
	color: #28a745;
	font-weight: bold;
}

/* Status Block Styles */
.santanyi-status-block {
	margin: 15px 0;
}

.santanyi-status-block .santanyi-status-badge {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
}

.santanyi-status-block .santanyi-status-badge.available {
	background: #28a745;
	color: white;
}

.santanyi-status-block .santanyi-status-badge.reserved {
	background: #ffc107;
	color: #212529;
}

.santanyi-status-block .santanyi-status-badge.sold {
	background: #dc3545;
	color: white;
}

.santanyi-status-block .santanyi-status-text {
	font-size: 16px;
	color: #333;
	font-weight: 500;
}

.santanyi-status-block .santanyi-status-date {
	font-size: 14px;
	color: #666;
	margin-top: 8px;
}

/* Marke Block Styles */
.santanyi-brand-block {
	font-size: 16px;
	color: #333;
	margin: 15px 0;
}

.santanyi-brand-block strong {
	font-weight: 600;
}

/* Alle Informationen Block Styles */
.santanyi-all-info-block {
	margin: 20px 0;
}

.santanyi-all-info-block .santanyi-info-table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #ddd;
	border-radius: 4px;
	overflow: hidden;
}

.santanyi-all-info-block .santanyi-info-table td {
	padding: 12px 15px;
	border-bottom: 1px solid #eee;
}

.santanyi-all-info-block .santanyi-info-table td:first-child {
	background: #f8f9fa;
	font-weight: 600;
	width: 30%;
	border-right: 1px solid #eee;
}

.santanyi-all-info-block .santanyi-info-table tr:last-child td {
	border-bottom: none;
}

.santanyi-all-info-block .santanyi-info-table tr:nth-child(even) td:last-child {
	background: #f8f9fa;
}

/* Error Styles */
.santanyi-error {
	border: 1px solid #dc3545;
	background: #f8d7da;
	color: #721c24;
	padding: 15px;
	margin: 15px 0;
	border-radius: 4px;
	font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.santanyi-price-block .santanyi-current-price {
		font-size: 20px;
	}
	
	.santanyi-all-info-block .santanyi-info-table {
		font-size: 14px;
	}
	
	.santanyi-all-info-block .santanyi-info-table td {
		padding: 10px 12px;
	}
}