/**
 * Made Neat - Product Wishlist Styles
 * Version: 1.0.0
 */

/* Screen Reader Text - Hide visually but keep accessible to assistive technologies */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* ARIA Live Region */
#madeneat-wishlist-aria-live {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Button Styles */
.madeneat-wishlist-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
/* 	padding: 10px 16px; */
	padding: 0px !important;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	color: #333;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	line-height: 1.5;
}

.madeneat-wishlist-button:hover {
	background: #f5f5f5;
	border-color: #999;
	color: #000;
}

.madeneat-wishlist-button--active {
	background: #e74c3c;
	border-color: #e74c3c;
	color: #fff;
}

.madeneat-wishlist-button--active:hover {
	background: #c0392b;
	border-color: #c0392b;
}

.madeneat-wishlist-icon {
	flex-shrink: 0;
/* 	width: 20px; */
	width: 16px;
	height: 20px;
	object-fit: contain;
	overflow: visible;
}

.madeneat-wishlist-icon--custom {
	object-fit: contain;
}

.madeneat-wishlist-button-text {
	flex: 1;
}

/* Icon Only Button */
.madeneat-wishlist-button--icon-only {
	padding: 8px;
	min-width: 36px;
	justify-content: center;
}

.madeneat-wishlist-button--icon-only .madeneat-wishlist-button-text {
	display: none;
}

/* Transparent Button */
.madeneat-wishlist-button--transparent {
	background: transparent !important;
	border: none !important;
	padding: 8px;
}

.madeneat-wishlist-button--transparent:hover {
	background: transparent !important;
	border: none !important;
	opacity: 0.8;
}

/* Shop Loop Button */
.woocommerce ul.products li.product .madeneat-wishlist-button,
.woocommerce-page ul.products li.product .madeneat-wishlist-button {
	margin-top: 10px;
	width: 100%;
	justify-content: center;
}

/* Single Product Button */
.woocommerce div.product .madeneat-wishlist-button {
	margin-top: 15px;
}

/* Guest Notice */
.madeneat-wishlist-guest-notice {
	margin-top: 10px;
	padding: 12px;
	background: #fff3cd;
	border: 1px solid #ffc107;
	border-radius: 4px;
	color: #856404;
	font-size: 14px;
}

.madeneat-wishlist-guest-notice a {
	color: #856404;
	text-decoration: underline;
	font-weight: 600;
}

/* Wishlist Page */
.madeneat-wishlist-page {
	max-width: 100%;
	margin: 0 auto;
	padding: 0px;
}

.madeneat-wishlist-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #f2f1f6;
}

.madeneat-wishlist-title {
	margin: 0;
}

.madeneat-wishlist-actions {
	display: flex;
	gap: 10px;
}

/* Sidebar */
.madeneat-wishlist-sidebar {
	float: left;
	width: 250px;
	margin-right: 30px;
}

.madeneat-wishlist-list {
	list-style: none;
	margin: 0;
	padding: 0;
	background: #fff;	
	border-radius: 4px;
	overflow: hidden;
}

.madeneat-wishlist-item {
	border-bottom: 1px solid #eee;
	position: relative;
}

.madeneat-wishlist-item:last-child {
	border-bottom: none;
}

.madeneat-wishlist-item:hover .madeneat-wishlist-item-actions {
	opacity: 1;
}

.madeneat-wishlist-item.active {
	background: #f0f8ff;
}

.madeneat-wishlist-item.active .madeneat-wishlist-link {
	color: #0073aa;
	font-weight: 600;
}

.madeneat-wishlist-link {
	display: block;
	padding: 15px 40px 15px 15px;
	color: #333;
	text-decoration: none;
	transition: all 0.2s ease;
}

.madeneat-wishlist-link:hover {
	background: #f5f5f5;
}

.madeneat-wishlist-name {
	display: block;
	font-size: 14px;
}

.madeneat-wishlist-badge {
	display: inline-block;
	margin-top: 5px;
	padding: 2px 8px;
	background: #DACBFB;
	color: #fff;
	font-size: 13px;
	border-radius: 5px;
	text-transform: uppercase;
}

.madeneat-wishlist-item-actions {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	gap: 5px;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.madeneat-wishlist-edit,
.madeneat-wishlist-delete {
	width: 28px;
	height: 28px;
	padding: 0;
	background: transparent;
	border: none;
	color: #666;
	cursor: pointer;
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.madeneat-wishlist-edit:hover {
	background: #e3f2fd;
	color: #1976d2;
}

.madeneat-wishlist-delete:hover {
	background: #ffebee;
	color: #d32f2f;
}

/* Content */
.madeneat-wishlist-content {
	margin-left: auto;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 20px;
}

/* Single Wishlist Mode */
.madeneat-wishlist-single-mode .madeneat-wishlist-sidebar {
	display: none;
}

.madeneat-wishlist-content-full {
	margin-left: 0 !important;
}

.madeneat-wishlist-content-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
}

.madeneat-wishlist-content-title {
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	color: #333;
}

/* Empty State */
.madeneat-wishlist-empty {
	text-align: center;
	padding: 60px 20px;
	color: #999;
}

.madeneat-wishlist-empty svg {
	margin: 0 auto 20px;
	opacity: 0.5;
}

.madeneat-wishlist-empty p {
	font-size: 16px;
	margin: 0;
}

/* Table */
.madeneat-wishlist-table-wrapper {
	overflow-x: auto;
}

.madeneat-wishlist-table {
	width: 100%;
	border-collapse: collapse;
}

.madeneat-wishlist-table thead {
	background: #f5f5f5;
}

.madeneat-wishlist-table th {
	padding: 12px;
	text-align: left;
	font-weight: 600;
	font-size: 14px;
	color: #333;
	border-bottom: 2px solid #ddd;
}

.madeneat-wishlist-table td {
	padding: 15px 12px;
	border-bottom: 1px solid #eee;
	vertical-align: middle;
}

.madeneat-wishlist-table tbody tr:hover {
	background: #f9f9f9;
}

.madeneat-wishlist-col-image {
	width: 80px;
}

.madeneat-wishlist-col-image img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 4px;
}

.madeneat-wishlist-col-name {
	min-width: 200px;
}

.madeneat-wishlist-col-name a {
	color: #333;
	text-decoration: none;
	font-weight: 500;
}

.madeneat-wishlist-col-name a:hover {
	color: #0073aa;
	text-decoration: underline;
}

.madeneat-wishlist-variation {
	margin-top: 5px;
	font-size: 12px;
	color: #666;
}

.madeneat-wishlist-col-price {
	font-weight: 600;
	color: #333;
}

.madeneat-wishlist-stock {
	display: inline-block;
	padding: 4px 8px;
	border-radius: 3px;
	font-size: 12px;
	font-weight: 500;
}

.madeneat-wishlist-stock.in-stock {
	background: #d4edda;
	color: #155724;
}

.madeneat-wishlist-stock.out-of-stock {
	background: #f8d7da;
	color: #721c24;
}

.madeneat-wishlist-col-actions {
	width: 240px;
    padding: 15px 0 !important;
}

.madeneat-wishlist-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.madeneat-wishlist-add-to-cart {
	padding: 8px 16px;
	background: #0073aa;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 13px;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease;
}

.madeneat-wishlist-add-to-cart:hover {
	background: #005a87;
	color: #fff;
}


/* Notice */
.madeneat-wishlist-notice {
	padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    position: fixed;
    z-index: 999;
    top: 20px;
    right: 20px;
}

.madeneat-wishlist-notice--login {
	text-align: center;
}

.madeneat-wishlist-notice a {
	color: #856404;
	text-decoration: underline;
	font-weight: 600;
}

/* Modal */
.madeneat-wishlist-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.madeneat-wishlist-modal-content {
	background: #fff;
	border-radius: 8px;
	max-width: 500px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.madeneat-wishlist-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid #eee;
}

.madeneat-wishlist-modal-header h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	color: #333;
}

.madeneat-wishlist-modal-close {
	width: 32px;
	height: 32px;
	padding: 0;
	background: transparent;
	border: none;
	color: #666;
	cursor: pointer;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.madeneat-wishlist-modal-close:hover {
	background: #f5f5f5;
	color: #000;
}

.madeneat-wishlist-modal-body {
	padding: 20px;
}

.madeneat-wishlist-modal-body label {
	display: block;
	margin-bottom: 15px;
	font-weight: 500;
	color: #333;
}

.madeneat-wishlist-modal-body input[type="text"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	margin-top: 5px;
}

.madeneat-wishlist-modal-body input[type="checkbox"] {
	margin-right: 8px;
}

/* Share Modal */
.madeneat-wishlist-share-url {
	margin-bottom: 25px;
}

.madeneat-wishlist-share-url label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
}

.madeneat-wishlist-share-url input {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 13px;
	margin-bottom: 10px;
}

.madeneat-wishlist-share-social label {
	display: block;
	margin-bottom: 12px;
	font-weight: 500;
}

.madeneat-wishlist-social-buttons {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.madeneat-wishlist-social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	text-decoration: none;
	color: #333;
	font-size: 14px;
	transition: all 0.2s ease;
}

.madeneat-wishlist-social-btn:hover {
	background: #f5f5f5;
	border-color: #999;
}

.madeneat-wishlist-social-facebook {
	color: #1877f2;
	border-color: #1877f2;
}

.madeneat-wishlist-social-x {
	color: #000000;
	border-color: #000000;
}

.madeneat-wishlist-social-pinterest {
	color: #bd081c;
	border-color: #bd081c;
}

.madeneat-wishlist-social-email {
	color: #333;
}

/* Responsive */
@media (max-width: 768px) {
	.madeneat-wishlist-sidebar {
		float: none;
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
	
	.madeneat-wishlist-content {
		margin-left: 0;
	}
	
	.madeneat-wishlist-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
	
	.madeneat-wishlist-table {
		font-size: 13px;
	}
	
	.madeneat-wishlist-table th,
	.madeneat-wishlist-table td {
		padding: 10px 8px;
	}
	
	.madeneat-wishlist-col-image {
		width: 60px;
	}
	
	.madeneat-wishlist-col-image img {
		width: 50px;
		height: 50px;
	}
	
	.madeneat-wishlist-actions {
		flex-direction: column;
	}
	
	.madeneat-wishlist-social-buttons {
		grid-template-columns: 1fr 1fr;
	}
}

#madeneat-copy-url-btn,
.madeneat-wishlist-modal button.button.button-primary,
.madeneat-wishlist-share-btn,
.madeneat-wishlist-button-create,
.madeneat-wishlist-remove,
a.button.madeneat-wishlist-add-to-cart {
	background: #DACBFB;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #222;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;

}

a.button.madeneat-wishlist-add-to-cart {
	min-width: 120px;
}

button.madeneat-wishlist-button.madeneat-wishlist-button--active svg path {
	fill: #C3D4FF;
	stroke-width: 1;
}

button.madeneat-wishlist-button svg path {
	stroke-width: 1;
}