/**
 * WC Lottery Golden Ticket - Public Styles
 */

/* Golden Ticket Widget Container */
.golden-ticket-widget {
	background: linear-gradient(135deg, rgba(51, 51, 51, 0.95) 0%, rgba(34, 34, 34, 0.98) 100%);
	border-radius: 12px;
	padding: 20px;
	margin: 15px 0;
	position: relative;
	overflow: hidden;
}

.golden-ticket-widget::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
}

/* Widget Header */
.golden-ticket-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

/* Golden Ball Icon */
.golden-ticket-icon {
	width: 32px;
	height: 32px;
	background: radial-gradient(circle at 30% 30%, #FFE55C, #FFD700 40%, #DAA520 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.golden-ticket-icon svg,
.golden-ticket-icon i {
	color: #333;
	font-size: 16px;
}

/* Label */
.golden-ticket-label {
	flex: 1;
	font-size: 18px;
	font-weight: 600;
	color: #FFD700;
	letter-spacing: 0.5px;
}

/* Info Icon */
.golden-ticket-info-icon {
	width: 20px;
	height: 20px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.5);
	font-size: 12px;
	cursor: help;
	margin-right: 10px;
}

/* Toggle Switch */
.golden-ticket-toggle {
	position: relative;
	display: inline-block;
	width: 56px;
	height: 30px;
}

.golden-ticket-toggle input {
	opacity: 0;
	width: 0;
	height: 0;
}

.golden-ticket-toggle .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.2);
	transition: 0.3s;
	border-radius: 30px;
}

.golden-ticket-toggle .slider:before {
	position: absolute;
	content: "";
	height: 22px;
	width: 22px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: 0.3s;
	border-radius: 50%;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.golden-ticket-toggle input:checked + .slider {
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.golden-ticket-toggle input:checked + .slider:before {
	transform: translateX(26px);
}

.golden-ticket-toggle input:focus + .slider {
	box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

/* Description */
.golden-ticket-description {
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
	line-height: 1.5;
	padding-top: 8px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.golden-ticket-description p {
	margin: 0 0 8px 0;
}

.golden-ticket-bonus-text {
	color: #FFD700;
	font-weight: 600;
}

.golden-ticket-price-info {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
}

/* Live Price Display - hidden by default, shown when active */
.golden-ticket-live-price {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: none;
}

.golden-ticket-widget.active .golden-ticket-live-price {
	display: block;
}

.golden-ticket-price-box {
	background: rgba(0, 0, 0, 0.3);
	border-radius: 8px;
	padding: 12px 15px;
	transition: all 0.3s ease;
}

.golden-ticket-widget.active .golden-ticket-price-box {
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
	border: 1px solid rgba(255, 215, 0, 0.3);
}

.golden-ticket-price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.golden-ticket-price-label {
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
}

.golden-ticket-current-price {
	display: inline-block;
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	transition: all 0.3s ease;
}

.golden-ticket-widget.active .golden-ticket-current-price {
	color: #FFD700;
	text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.golden-ticket-price-savings {
	margin-top: 8px;
	text-align: right;
}

.golden-ticket-savings-badge {
	display: inline-block;
	background: rgba(255, 215, 0, 0.2);
	color: #FFD700;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 500;
}

/* Price Change Animation */
.golden-ticket-current-price.price-changing {
	animation: priceFlash 0.3s ease;
}

@keyframes priceFlash {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.15);
	}
	100% {
		transform: scale(1);
	}
}

/* Collapse Arrow */
.golden-ticket-collapse {
	text-align: center;
	padding-top: 10px;
}

.golden-ticket-collapse-icon {
	color: rgba(255, 255, 255, 0.5);
	font-size: 18px;
	cursor: pointer;
	transition: transform 0.3s;
}

.golden-ticket-widget.collapsed .golden-ticket-collapse-icon {
	transform: rotate(180deg);
}

.golden-ticket-widget.collapsed .golden-ticket-description {
	display: none;
}

/* Cart Badge */
.golden-ticket-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	color: #333;
	padding: 4px 12px;
	border-radius: 15px;
	font-size: 12px;
	font-weight: 600;
}

/* Order Info */
.golden-ticket-order-info {
	margin-top: 10px;
	padding: 10px;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
	border-left: 3px solid #FFD700;
	border-radius: 0 4px 4px 0;
}

.golden-ticket-order-info .golden-ticket-badge {
	font-size: 11px;
	padding: 3px 8px;
}

.golden-ticket-order-info small {
	color: #666;
}

/* Winner Display */
.golden-ticket-winner {
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	padding: 15px;
	border-radius: 8px;
	text-align: center;
	margin: 15px 0;
}

.golden-ticket-winner h4 {
	color: #333;
	margin: 0 0 5px 0;
}

.golden-ticket-winner p {
	color: #333;
	margin: 0;
	font-size: 14px;
}

/* Active State Animation */
.golden-ticket-widget.active {
	animation: goldenPulse 2s ease-in-out infinite;
}

@keyframes goldenPulse {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
	}
	50% {
		box-shadow: 0 0 20px 5px rgba(255, 215, 0, 0.2);
	}
}

/* Responsive */
@media (max-width: 480px) {
	.golden-ticket-widget {
		padding: 15px;
	}

	.golden-ticket-header {
		flex-wrap: wrap;
	}

	.golden-ticket-label {
		font-size: 16px;
	}

	.golden-ticket-toggle {
		width: 50px;
		height: 26px;
	}

	.golden-ticket-toggle .slider:before {
		height: 18px;
		width: 18px;
	}

	.golden-ticket-toggle input:checked + .slider:before {
		transform: translateX(24px);
	}
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
	.golden-ticket-order-info {
		background: rgba(255, 215, 0, 0.15);
	}

	.golden-ticket-order-info small {
		color: #aaa;
	}
}
