/**
 * Event Merchandise Display Styles
 */

.mlet-event-merchandise-section {
	max-width: 1200px;
	margin: 60px auto;
	padding: 0 20px;
}

/* Header */
.mlet-merch-header {
	text-align: center;
	margin-bottom: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.mlet-merch-icon {
	font-size: 64px;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-15px); }
}

.mlet-merch-title h2 {
	margin: 0 0 10px 0;
	font-size: 36px;
	font-weight: 800;
	color: #1a1a1a;
	background: linear-gradient(135deg, #FF6B6B 0%, #FFE66D 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.mlet-merch-title p {
	margin: 0;
	font-size: 18px;
	color: #666;
}

/* Grid */
.mlet-merch-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
}

/* Card */
.mlet-merch-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	display: flex;
	flex-direction: column;
}

.mlet-merch-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 15px 50px rgba(255, 107, 107, 0.3);
}

/* Image */
.mlet-merch-image {
	position: relative;
	width: 100%;
	height: 300px;
	background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.mlet-merch-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.mlet-merch-card:hover .mlet-merch-image img {
	transform: scale(1.1);
}

.mlet-merch-placeholder {
	font-size: 80px;
	opacity: 0.3;
}

/* Badges */
.mlet-merch-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	padding: 8px 16px;
	border-radius: 25px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
	gap: 5px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

.mlet-merch-badge.sale {
	background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
	color: white;
}

.mlet-merch-badge.out-of-stock {
	background: #333;
	color: white;
}

.mlet-merch-badge.low-stock {
	background: #FFB347;
	color: #333;
}

.mlet-badge-icon {
	font-size: 14px;
}

.mlet-merch-featured {
	position: absolute;
	top: 15px;
	left: 15px;
	font-size: 32px;
	animation: rotate 4s linear infinite;
}

@keyframes rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* Content */
.mlet-merch-content {
	padding: 25px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.mlet-merch-name {
	margin: 0 0 12px 0;
	font-size: 20px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.4;
}

.mlet-merch-description {
	margin: 0 0 20px 0;
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	flex: 1;
}

/* Price */
.mlet-merch-price {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.mlet-price-sale {
	font-size: 28px;
	font-weight: 800;
	color: #FF6B6B;
}

.mlet-price-regular {
	font-size: 24px;
	font-weight: 700;
	color: #1a1a1a;
}

.mlet-price-regular.crossed {
	font-size: 18px;
	color: #999;
	text-decoration: line-through;
}

.mlet-discount-badge {
	background: #4CAF50;
	color: white;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 700;
}

/* Actions */
.mlet-merch-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.mlet-merch-actions form {
	width: 100%;
}

.mlet-add-to-cart-btn {
	width: 100%;
	padding: 14px 20px;
	background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.mlet-add-to-cart-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(255, 107, 107, 0.6);
}

.mlet-add-to-cart-btn.loading {
	opacity: 0.7;
	cursor: not-allowed;
}

.mlet-cart-icon,
.mlet-gallery-icon {
	font-size: 20px;
}

.mlet-view-gallery-btn {
	width: 100%;
	padding: 12px 20px;
	background: white;
	color: #333;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.3s;
}

.mlet-view-gallery-btn:hover {
	background: #f5f5f5;
	border-color: #FF6B6B;
	color: #FF6B6B;
}

.mlet-out-of-stock-btn {
	width: 100%;
	padding: 14px 20px;
	background: #e0e0e0;
	color: #999;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
	.mlet-event-merchandise-section {
		margin: 40px auto;
	}
	
	.mlet-merch-title h2 {
		font-size: 28px;
	}
	
	.mlet-merch-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 20px;
	}
	
	.mlet-merch-image {
		height: 250px;
	}
}

@media (max-width: 480px) {
	.mlet-merch-grid {
		grid-template-columns: 1fr;
	}
}


