[v-cloak]{
  display: none;
}
.d-flex{display:flex;}
.d-inline-flex{display:inline-flex;}
.justify-content-between{justify-content:space-between;}
.justify-content-center{justify-content:center;}
.justify-content-start{justify-content:flex-start;}
.justify-content-end{justify-content:flex-end;}
.justify-content-around{justify-content:space-around;}
.justify-content-evenly{justify-content:space-evenly;}
.justify-content-between{justify-content:space-between;}
.align-items-center{align-items:center;}
.align-items-start{align-items:flex-start;}
.align-items-end{align-items:flex-end;}
.align-items-baseline{align-items:baseline;}
.align-items-stretch{align-items:stretch;}
.align-items-center{align-items:center;}
.flex-wrap{flex-wrap:wrap;}
.w-100{width:100%;}
.text-center{text-align:center;}
.mb-1{margin-bottom:4px;}
.mb-2{margin-bottom:8px;}
.mb-3{margin-bottom:12px;}
.mb-4{margin-bottom:16px;}
.mt-1{margin-top:4px;}
.mt-2{margin-top:8px;}
.mt-3{margin-top:12px;}
.mt-4{margin-top:16px;}
.mr-2{margin-right:8px;}
.mr-3{margin-right:12px;}
.mr-4{margin-right:16px;}
.px-2{padding-left:8px;padding-right:8px;}
.px-3{padding-left:12px;padding-right:12px;}
.px-4{padding-left:16px;padding-right:16px;}
.py-2{padding-top:8px;padding-bottom:8px;}
.py-3{padding-top:12px;padding-bottom:12px;}
.py-4{padding-top:16px;padding-bottom:16px;}
.pr-2{padding-right:8px;}
.pr-3{padding-right:12px;}
.pr-4{padding-right:16px;}
.pl-2{padding-left:8px;}
.pl-3{padding-left:12px;}
.pl-4{padding-left:16px;}

#wishes-list-page .submit-inquiry-btn {
    background: #000;
    color: #fff;
    border-radius: 9999px;
    padding: 14px 32px;
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

#wishes-list-page .submit-inquiry-btn:hover {
    background: #111;
    color: #fff;
}

#wishes-list-page .browse-products-btn {
    background: #2563eb;
    color: #fff;
    border-radius: 6px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

#wishes-list-page .browse-products-btn:hover {
    background: #1d4ed8;
    color: #fff;
}

#wishes-list-page #wl-empty {
    margin-bottom: 80px;
    margin-top:40px;
}

.hidden {
    display: none;
}

#wishes-inquiry-form {
    padding-top: 80px;
    padding-bottom: 80px;
}

#wishes-inquiry-form h1 {
    font-size: clamp(26px, 3vw, 32px);
}

.wishes-success-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
    text-align: center;
}

.wishes-success-card {
    max-width: 560px;
    width: 100%;
    padding: 40px 32px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wishes-success-card h1 {
    font-size: clamp(24px, 4vw, 32px);
    color: #111827;
}

.wishes-success-card p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.wishes-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #10b981;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto;
}

.wishes-success-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 12px auto 0;
    padding: 14px 36px;
    border-radius: 9999px;
    background: #111827;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.wishes-success-btn:hover {
    background: #000;
    transform: translateY(-1px);
}

#wishes-inquiry-form .wishes-form-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 56px;
}

#wishes-form-count {
    font-size: 16px;
    color: #6b7280;
}

#wishes-form-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.wishes-thumb {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.wishes-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wishes-thumb-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 9999px;
    border: none;
    background: orangered;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.wishes-thumb:hover .wishes-thumb-remove {
    opacity: 1;
    transform: scale(1.05);
}

.wishes-form-control {
    width: 100%;
    height: 48px;
    padding: 10px 18px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wishes-form-control:focus {
    outline: none;
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(17,24,39,0.15);
}

.wishes-form-label {
    display: block;
    color: #111827;
    font-weight: 600;
    margin-bottom: 8px;
}

.required-indicator {
    color: #ef4444;
    margin-left: 4px;
}

.wishes-form-field {
    margin-bottom: 24px;
}

.wishes-form-field:last-of-type {
    margin-bottom: 32px;
}

.wishes-form-textarea {
    height: auto;
    min-height: 160px;
    resize: vertical;
}

.wishes-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #111827;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 48px;
    border-radius: 9999px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.wishes-form-submit:hover {
    background: #000;
    transform: translateY(-1px);
}

@media (max-width: 1023px) {
    #wishes-inquiry-form {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    #wishes-inquiry-form .wishes-form-card {
        padding: 40px;
    }
    #wishes-form-gallery {
        gap: 12px;
    }
}

@media (max-width: 767px) {
    #wishes-inquiry-form {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    #wishes-inquiry-form .wishes-form-card {
        padding: 32px 28px;
    }
    .wishes-form-field {
        margin-bottom: 20px;
    }
    .wishes-form-control {
        height: 46px;
        font-size: 15px;
    }
    .wishes-form-submit {
        width: 100%;
    }
    .add-to-wishes-btn{
        width:100%;
        margin-top:20px;
    }
}

@media (max-width: 520px) {
    #wishes-inquiry-form {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    #wishes-inquiry-form .wishes-form-card {
        padding: 24px 20px;
        border-radius: 18px;
    }
    #wishes-form-count {
        font-size: 14px;
    }
    .wishes-form-submit {
        padding: 12px 24px;
        font-size: 15px;
    }
    .wishes-form-control {
        padding: 10px 14px;
    }
    #wishes-form-gallery {
        gap: 10px;
    }
    .wishes-thumb {
        width: 96px;
        height: 96px;
    }
}

.add-to-wishes-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 30px;
    background:#333;
    color: #fff !important;;
    border-radius:9999px;
    text-transform: uppercase;
}
.add-to-wishes-btn.is-added{
    height: 46px;
    padding: 0 30px;
    background:orangered;
    color:#FFF;
    border-radius:9999px;
}

#wl-toast-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 16px;
    display: flex;
    justify-content: center;
    pointer-events: none;
    z-index: 9999999;
}
.wl-toast {
    width: min(960px, 100%); 
    background: #16a34a;
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 10px 20px;
    min-height: 40px;
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: auto;
}
.wl-toast.show {
    opacity: 1;
    transform: translateY(0);
}
.wl-toast-body {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex: 1 1 auto;
    text-align: center;
}
.wl-toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.wl-toast-icon::before {
    content: '\2713';
}
.wl-toast-message {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
}
.wl-toast-close {
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.8);
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
}
@media (max-width: 639px) {
    #wl-toast-container {
        padding: 10px 12px;
    }
    .wl-toast {
        border-radius: 0;
        width: 100%;
        padding: 10px 14px;
        min-height: 40px;
    }
    .wl-toast-message {
        font-size: 14px;
        font-weight: 600;
    }
}

.wishes-list-header-icon {
    position: relative;
    display: inline-block;
}
.badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 9999px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: none; /* Hide by default */
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    box-sizing: border-box;
}
.badge.show {
    display: inline-flex;
}

/* Four columns layout */
.wishes-list-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

#wishes-list-page .wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 24px;
    margin-bottom: 40px;
}

@media (max-width: 1279px) {
    #wishes-list-page .wishlist-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1023px) {
    #wishes-list-page .wishlist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 639px) {
    #wishes-list-page .wishlist-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }
    #wishes-list-page .wl-page-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

#wishes-list-page #wl-list {
    padding-top: 16px;
    padding-bottom: 32px;
}

#wishes-list-page .wl-pagination {
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
}

#wishes-list-page .wl-pagination-buttons {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

#wishes-list-page .wl-page-btn {
    min-width: 44px;
    height: 44px;
    border-radius: 9999px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #1f2937;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

@media (max-width: 639px) {
    #wishes-list-page .wl-page-btn {
        min-width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

#wishes-list-page .wl-page-btn:hover {
    border-color: #111827;
    color: #111827;
}

#wishes-list-page .wl-page-btn.active {
    background: #111827;
    color: #fff;
    border-color: #111827;
}

#wishes-list-page .wl-page-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

#wishes-list-page .wl-count-text {
    font-size: 16px;
    color: #6b7280;
}

/* Wishlist Product Card Styles */
#wishes-list-page .product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

#wishes-list-page .product-card:hover {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

#wishes-list-page .product-image-container {
    position: relative;
    overflow: hidden;
}

#wishes-list-page .product-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.4s ease;
}

#wishes-list-page .product-card:hover .product-image {
    transform: scale(1.05);
}

/* Pink heart remove button */
#wishes-list-page .heart-remove-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#wishes-list-page .heart-remove-btn:hover {
    opacity: 1;
}

#wishes-list-page .heart-remove-btn .heart-icon {
    fill: #e83e8c; /* Pink color */
    width: 28px;
    height: 28px;
}

#wishes-list-page .product-info {
    padding: 16px 16px 0;
}

#wishes-list-page .product-name {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
    height: 40px; /* Fixed height for 2 lines */
    overflow: hidden;
}

#wishes-list-page .product-name a {
    display: inline-block;
    color: inherit;
    transition: color 0.3s ease, transform 0.3s ease;
}

#wishes-list-page .product-card:hover .product-name a {
    color: #111827;
    transform: translateY(-2px);
    text-decoration: underline;
}

/* Text Remove Button */
#wishes-list-page .text-remove-btn {
    background: #ef4444; 
    border: 1px solid #ef4444;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    height: 40px;
    padding: 0 30px;
    border-radius: 9999px;
    transition: background 0.2s ease, color 0.2s ease;
    min-width: 180px;
}

@media (max-width: 639px) {
    #wishes-list-page .text-remove-btn {
        width: 100%;
        min-width: auto;
        height: 40px;
        padding: 0 20px;
        font-size: 15px;
    }
}

#wishes-list-page .text-remove-btn:hover {
    background: #dc2626;
    border-color: #dc2626;
}

#wishes-list-page .card-actions {
    display: flex;
    justify-content: center;
    align-items: center; 
    padding: 16px 16px 20px;
}

.wl-floating-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    pointer-events: none;
}

.wl-floating-widget.is-open {
    pointer-events: auto;
}

.wl-floating-button {
    background: #111827;
    color: #fff;
    border: none;
    border-radius: 9999px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    pointer-events: auto;
}

.wl-floating-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.3);
}

.wl-floating-count {
    background: #f3f4f6;
    color: #111827;
    border-radius: 9999px;
    padding: 4px 10px;
    font-size: 14px;
    font-weight: 600;
}

.wl-floating-popover {
    width: 260px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(17, 24, 39, 0.25);
    padding: 20px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    transform-origin: bottom right;
    transform: scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.wl-floating-widget.is-open .wl-floating-popover {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.wl-floating-status {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.wl-floating-empty-message {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.wl-floating-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wl-floating-action {
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wl-floating-action--primary {
    background: #111827;
    color: #fff;
}

.wl-floating-action--primary:hover {
    background: #000;
    transform: translateY(-1px);
}

.wl-floating-action--secondary {
    border: 1px solid #111827;
    color: #111827;
    background: #fff;
}

.wl-floating-action--secondary:hover {
    background: #111827;
    color: #fff;
}
 
@media (max-width: 639px) {
    .wl-floating-widget {
        right: 16px;
        left: auto;
        bottom: 68px;
    }
    .wl-floating-popover {
        width: calc(100vw - 32px);
        max-width: 320px;
    }
    .wl-floating-button {
        padding: 10px 16px;
        font-size: 14px;
    }
    .wl-floating-count {
        font-size: 13px;
        padding: 3px 10px;
    }
}