.wishlist-text, .wishlist-login-notice {
  display: none !important;
}
.custom-wishlist-wrapper {
    margin: 0px 0;
	display: flex;
}
.custom-wishlist-btn {
    background: transparent;
    border: 2px solid #E6017F;
    color: #333333;
    padding: 5px;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
	height: 100%;
    aspect-ratio: 1 / 1;
    justify-content: center;
	height: 50px;
}
.cw-loop-wishlist .custom-wishlist-btn {
	height: auto;
}
.custom-wishlist-btn:hover:not(:disabled) {
    background: #E6017F;
    border-color: #E6017F;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 1, 127, 0.3);
}
.custom-wishlist-btn:active:not(:disabled) {
    transform: translateY(0);
}
.custom-wishlist-btn.is-active {
    background: #E6017F;
    border-color: #E6017F;
    color: white;
}
.custom-wishlist-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.wishlist-icon {
	display: flex;
    font-size: 25px;
}
.custom-wishlist-btn.is-loading {
    opacity: 0.7;
    cursor: wait;
    pointer-events: none;
}
.wishlist-message {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #27ae60;
}
.wishlist-message--error {
    color: #e74c3c;
}
.wishlist-login-notice {
    margin-top: 10px;
    font-size: 13px;
    color: #777;
}
.wishlist-counter {
    position: relative;
    display: block;
    align-items: center;
    justify-content: center;
    color: #333333 !important;
    text-decoration: none;
}
.wishlist-counter[data-empty-hide="true"][data-count="0"] {
    display: none;
}
.wishlist-counter__icon {
    display: flex;
    font-size: 27px;
}
.wishlist-counter .wishlist-counter__icon svg {
  	width: 100%;
  	height: 100%;
}
.wishlist-counter__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e60081;
    background: transparent;
    position: absolute;
    top: -12px;
    right: -12px;
    font-size: 12px;
    font-weight: 600;
    width: 18px;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    padding: 3px;
}
.cw-wishlist-account {
    margin: 0px 0;
}
.cw-wishlist-grid {
    display: flex;
	flex-direction: column;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.cw-empty {
    color: #777;
    font-style: italic;
}
.cw-loop-container {
    display: flex;
    flex-direction: row;
    gap: 12px;
    height: 100%;
    flex-wrap: nowrap;
    align-content: flex-end;
    justify-content: flex-start;
    align-items: flex-end;
}
.cw-loop-image img {
    width: 200px;
    height: auto;
    display: block;
}
.cw-loop-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.cw-loop-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cw-loop-title {
    margin: 0;
    font-size: 16px;
}
.cw-loop-title a {
    text-decoration: none;
    color: inherit;
}
.cw-loop-price {
    font-weight: 600;
}
.cw-loop-tools {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
}
.cw-loop-eye {
    color: #333;
    display: inline-flex;
    font-size: 18px;
    text-decoration: none;
}
.cw-loop-eye:hover {
	color: #E60081;
}
.cw-loop-add-to-cart {
    flex: 0;
}
.cw-loop-add-to-cart a {
	padding: 0px !important;
	background: transparent !important;
	color: #333333 !important;
}
.cw-loop-wishlist {
    flex-shrink: 0;
}
