/**
 * Gift Product Display Styles
 * Cart row styling for Buy X Get Y free product gifts
 */

/* Gift Item Container */
.yaydp-gift-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* FREE GIFT Badge */
.yaydp-gift-badge {
	display: inline-block;
	background: #22c55e;
	color: white;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	width: fit-content;
}

/* Rule Name Title */
.yaydp-gift-title {
	font-weight: 500;
}

/* Selected Items Summary */
.yaydp-gift-selections {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.yaydp-gift-selection-item {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 8px;
	background: #f3f4f6;
	border-radius: 4px;
	font-size: 13px;
}

.yaydp-gift-selection-qty {
	font-weight: 600;
	color: #22c55e;
	min-width: 32px;
}

.yaydp-gift-selection-name {
	flex: 1;
}

.yaydp-gift-none-text {
	color: #6b7280;
	font-style: italic;
	font-size: 13px;
}

/* Manage Button */
.yaydp-gift-manage-btn {
	align-self: flex-start;
	margin-top: 4px;
}

a:has(.yaydp-gift-icon) {
	text-decoration: none !important;
}

/* Gift Icon (replaces thumbnail) */
.yaydp-gift-icon {
	font-size: 48px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Price Display */
.yaydp-gift-price {
	color: #22c55e;
}

/* Subtotal Display */
.yaydp-gift-subtotal {
	color: #22c55e;
}

/* Quantity Display (readonly) */
.yaydp-gift-qty {
	font-weight: 500;
	text-align: center;
	display: block;
}

/* Modal Overlay */
.yaydp-modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999999;
	justify-content: center;
	align-items: center;
}

.yaydp-modal-overlay.active {
	display: flex;
}

/* Modal Container */
.yaydp-modal {
	background: white;
	border-radius: 8px;
	max-width: 600px;
	width: 90%;
	max-height: 80vh;
	display: flex;
	flex-direction: column;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.yaydp-modal-header {
	display: flex;
	align-items: center;
	padding: 16px 20px;
	border-bottom: 1px solid #e5e7eb;
	gap: 12px;
}

.yaydp-modal-header h3 {
	margin: 0;
	flex: 1;
}

.yaydp-modal-counter {
	background: #f3f4f6;
	padding: 4px 12px;
	border-radius: 4px;
	font-size: 14px;
}

.yaydp-modal-close {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #6b7280;
	padding: 0;
	line-height: 1;
}

.yaydp-modal-close:hover {
	color: #374151;
}

.yaydp-modal-body {
	padding: 20px;
	overflow-y: auto;
	flex: 1;
}

.yaydp-modal-footer {
	padding: 16px 20px;
	border-top: 1px solid #e5e7eb;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.yaydp-modal-footer-actions {
	display: flex;
	gap: 12px;
	margin-left: auto;
}

/* Search */
.yaydp-gift-search {
	position: sticky;
	top: -20px;
	background: white;
	padding: 20px 0 12px;
	margin: -20px 0 16px;
	z-index: 2;
}

.yaydp-gift-search-input {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	font-size: 14px;
	box-sizing: border-box;
}

.yaydp-gift-search-empty {
	margin: 12px 0 0;
	text-align: center;
	color: #6b7280;
	font-size: 14px;
}

/* Product Grid */
.yaydp-gift-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 16px;
}

.yaydp-gift-card {
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 12px;
	text-align: center;
}

.yaydp-gift-card.out-of-stock {
	opacity: 0.5;
	pointer-events: none;
}

.yaydp-gift-card-image img {
	width: 100%;
	height: auto;
	border-radius: 4px;
}

.yaydp-gift-card h4 {
	margin: 8px 0 4px;
	font-size: 14px;
}

.yaydp-gift-card h4 a {
	color: inherit;
	text-decoration: none;
}

.yaydp-gift-card h4 a:hover {
	color: #22c55e;
	text-decoration: underline;
}

.yaydp-gift-card-price del {
	color: #9ca3af;
	font-size: 13px;
}

.yaydp-free-label {
	color: #22c55e;
	font-weight: 600;
	margin-left: 4px;
}

.yaydp-gift-card-qty {
	margin-top: 8px;
}

.yaydp-gift-qty-input {
	width: 60px;
	text-align: center;
}

.yaydp-variation-select {
	width: 100%;
	margin-top: 8px;
}

.yaydp-out-of-stock-label {
	color: #ef4444;
	font-size: 12px;
	margin-top: 8px;
	display: block;
}

/* Pagination */
.yaydp-gift-pagination {
	display: flex;
	align-items: center;
	gap: 8px;
}

.yaydp-gift-pagination .yaydp-page-info {
	font-size: 14px;
	color: #374151;
	min-width: 60px;
	text-align: center;
}

/* Checkout Gift Badge (smaller) */
.yaydp-gift-badge-small {
	background: #22c55e;
	color: white;
	padding: 1px 6px;
	border-radius: 3px;
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	margin-right: 4px;
}

/* Checkout Readonly Quantity */
.yaydp-gift-qty-readonly {
	font-weight: 500;
}

/* Classic checkout: expanded per-selection rows */
.yaydp-gift-row .product-name .yaydp-gift-badge-small {
	vertical-align: middle;
}

.yaydp-gift-row-variation {
	color: #6b7280;
	display: inline-block;
	margin-top: 2px;
}

/* Responsive */
@media (max-width: 768px) {
	.yaydp-gift-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.yaydp-modal {
		width: 95%;
		max-height: 90vh;
	}

	.yaydp-gift-selections {
		flex-direction: column;
	}
}
