/* ---- Wishlist button ---- */
.zwpo-wishlist-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 8px 14px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.zwpo-wishlist-btn:hover {
    border-color: #e63946;
    color: #e63946;
}

.zwpo-wishlist-btn.added {
    background: #fdecee;
    border-color: #e63946;
    color: #e63946;
}

.zwpo-heart-icon {
    font-size: 14px;
}

/* ---- My Wishlist page grid ---- */
.zwpo-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.zwpo-wishlist-item {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.zwpo-wishlist-item img {
    border-radius: 6px;
    margin-bottom: 10px;
}

.zwpo-wishlist-item .button {
    display: block;
    margin: 8px 0;
}

.zwpo-remove-wishlist {
    background: none;
    border: none;
    color: #999;
    text-decoration: underline;
    cursor: pointer;
    font-size: 13px;
}

/* ---- Pre-order form ---- */
.zwpo-preorder-form-wrap {
    margin-top: 15px;
    padding: 16px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px dashed #ccc;
}

.zwpo-preorder-note {
    font-size: 13px;
    color: #555;
    margin-bottom: 12px;
}

.zwpo-preorder-form input[type="text"],
.zwpo-preorder-form input[type="tel"],
.zwpo-preorder-form input[type="number"] {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.zwpo-advance-check {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
}

.zwpo-submit-preorder {
    width: 100%;
}

.zwpo-preorder-response {
    margin-top: 10px;
    font-size: 13px;
}

.zwpo-preorder-response.success {
    color: #2a9d3e;
}

.zwpo-preorder-response.error {
    color: #e63946;
}

.zwpo-preorder-available {
    color: #d4820a;
    font-weight: 600;
}
